From 49f0704298476270012aaddf9abff50dec58b5ab Mon Sep 17 00:00:00 2001 From: AirRice Date: Sat, 3 May 2025 20:44:02 +0100 Subject: [PATCH 1/2] Allow red/tin alloy double ingot piles, add textures (#948) --- .../tfg/textures/block/metal/smooth/red_alloy.png | Bin 0 -> 347 bytes .../tfg/textures/block/metal/smooth/tin_alloy.png | Bin 0 -> 690 bytes kubejs/server_scripts/tfc/tags.js | 4 +++- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png create mode 100644 kubejs/assets/tfg/textures/block/metal/smooth/tin_alloy.png diff --git a/kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png b/kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png new file mode 100644 index 0000000000000000000000000000000000000000..37126e24b8a456f5ddd71cac1c2d5ef5dfaa1d57 GIT binary patch literal 347 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7I14-?iy0WWg+Z8+Vb&Z8 z1_lO&WRDu+!xPLL&mA~=F#o1Hr-<={BawUuJST-%3JV!@O=gRUeI{9P za;99zVhJ;2=?^N^>?uF_q)r}^s3@IfXyEW7_Ga}4HSI_K4i`M)K8y7|MvAj&-j$ zT-(%R6P5jI-}3j>x3)|1VybU4Vc70qgCNLaK^q-dMp*c}z`9h1nlbd>UPIDX<(Ck-V!N{{U)6HR$ z%4DBpp43RD58u9-HEy}~C;nO#15?BE^3!<&Jck|ToV&@x^jxM;Cb=hZ##4#-gqoI* zg1NUh8Opjw_Hi9a^bdZ2^7EVq+raV`letftAAkN_t=q7AX;OpWhPd@BS8*j|S?sRw z<4@Qa!JyD`pqigY`GDo|vuAmax$_*bDX4hA@mkVa*~dX$tEw0hmgzHg{BYW}Y@zMW zY8%f#HjJG$*{gCsrj;U5*;}rucs5;=Qe<)B=rI(|_`=k+=zyjB zwA96$idAawGjEV)xfap2DP`-Y$%Tj49ATDsFDThFn=ktehXsGXz0|re?H4@fEDsqR zu{>^bBj~y*gZ<+f``%xyv}5}A+wjoWDqGnL<^u2Dy{o9In#JeC;TU^;%2TGBdE1xl zulpPmYP0{gW^%*TtfQxwB_@}rL>_zmSb5bBH?5-&l(*g1HJT`NF=s}+N=u?eYTdc| wx`_fSqKg7IN9Y{;{etIo&9R3C5AHKedTY)edHw!<1_lNOPgg&ebxsLQ0N2GcJ^%m! literal 0 HcmV?d00001 diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index d106cd364..c11772b96 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -80,7 +80,9 @@ const registerTFCItemTags = (event) => { // Для складывания event.add('tfc:pileable_ingots', '#forge:ingots') event.add('tfc:pileable_sheets', '#forge:plates') - + event.add('tfc:pileable_double_ingots', 'gtceu:tin_alloy_double_ingot') + event.add('tfc:pileable_double_ingots', 'gtceu:red_alloy_double_ingot') + // Рыба event.add('minecraft:fishes', 'tfc:food/calamari') event.add('minecraft:fishes', 'tfc:food/bluegill') From 497795a2bcfd9d4d5d0d37cb54a2c2074f071d0f Mon Sep 17 00:00:00 2001 From: TomPlop Date: Sat, 3 May 2025 17:16:09 -0400 Subject: [PATCH 2/2] Mv quest rework (#920) * Changes for MV Quests * First fix for Progression tab * fixes lang title Signed-off-by: TomPlop * Changes for LV, fixes for quest categories, adding GT Tips, adding Gregtech energy, rework of Progression tab * fix macerator separator --------- Signed-off-by: TomPlop --- config/ftbquests/quests/chapter_groups.snbt | 1 + config/ftbquests/quests/chapters/ae2.snbt | 25 +- config/ftbquests/quests/chapters/cc.snbt | 7 +- .../quests/chapters/gregtech_energy.snbt | 574 ++++++++ .../quests/chapters/lv__low_voltage.snbt | 73 +- .../quests/chapters/mv__medium_voltage.snbt | 1226 ++++++----------- .../quests/chapters/ore_processing.snbt | 2 +- .../quests/chapters/progression.snbt | 670 +++++---- .../quests/chapters/queststfc_tips.snbt | 160 ++- 9 files changed, 1482 insertions(+), 1256 deletions(-) create mode 100644 config/ftbquests/quests/chapters/gregtech_energy.snbt diff --git a/config/ftbquests/quests/chapter_groups.snbt b/config/ftbquests/quests/chapter_groups.snbt index ed803c259..9575eb94b 100644 --- a/config/ftbquests/quests/chapter_groups.snbt +++ b/config/ftbquests/quests/chapter_groups.snbt @@ -5,5 +5,6 @@ { id: "44D0F3E5067B5AB8", title: "{quests.groups.voltaic_age}" } { id: "21D975CEBDE06BA9", title: "{quests.groups.space_age}" } { id: "563374AD29C006DB", title: "{quests.groups.interstellar}" } + { id: "33020D1D0ECDF301", title: "{quests.groups.technological_help}" } ] } diff --git a/config/ftbquests/quests/chapters/ae2.snbt b/config/ftbquests/quests/chapters/ae2.snbt index 0561b6d5a..8229c374f 100644 --- a/config/ftbquests/quests/chapters/ae2.snbt +++ b/config/ftbquests/quests/chapters/ae2.snbt @@ -2,10 +2,10 @@ default_hide_dependency_lines: false default_quest_shape: "circle" filename: "ae2" - group: "44D0F3E5067B5AB8" + group: "33020D1D0ECDF301" icon: "ae2:controller" id: "09BE9F51822EC180" - order_index: 4 + order_index: 0 quest_links: [ { id: "3293CB774C1A4DF0" @@ -2355,6 +2355,25 @@ x: 13.5d y: 6.0d } + { + dependencies: ["13DC2F6A2D2EA3FD"] + id: "69925787B6F7F4F5" + tasks: [{ + id: "55562E94676359E7" + item: { + Count: 1 + id: "betterp2p:advanced_memory_card" + tag: { + gui: 3b + selectedIndex: { } + } + } + type: "item" + }] + x: 2.0d + y: 3.0d + } ] - title: "&6HV&r - AE2" + subtitle: ["{quests.ae2.subtitle}"] + title: "{quests.ae2}" } diff --git a/config/ftbquests/quests/chapters/cc.snbt b/config/ftbquests/quests/chapters/cc.snbt index 5312e34b9..0ba6fcd5c 100644 --- a/config/ftbquests/quests/chapters/cc.snbt +++ b/config/ftbquests/quests/chapters/cc.snbt @@ -2,10 +2,10 @@ default_hide_dependency_lines: false default_quest_shape: "" filename: "cc" - group: "44D0F3E5067B5AB8" + group: "33020D1D0ECDF301" icon: "computercraft:computer_advanced" id: "1A6D6B70EC13DDC6" - order_index: 3 + order_index: 1 quest_links: [ ] quests: [ { @@ -209,5 +209,6 @@ y: 0.0d } ] - title: "&bMV&r - Computers" + subtitle: ["{quests.computer.subtitle}"] + title: "{quests.computer}" } diff --git a/config/ftbquests/quests/chapters/gregtech_energy.snbt b/config/ftbquests/quests/chapters/gregtech_energy.snbt new file mode 100644 index 000000000..e4d760a9d --- /dev/null +++ b/config/ftbquests/quests/chapters/gregtech_energy.snbt @@ -0,0 +1,574 @@ +{ + autofocus_id: "06B2E38F7DCF2678" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "gregtech_energy" + group: "33020D1D0ECDF301" + icon: "gtceu:max_battery" + id: "6540429F3CA4DA1B" + order_index: 3 + quest_links: [ ] + quests: [ + { + description: ["We know that &5GregTech&r isn’t the easiest mod to get into — especially when it comes to the &cenergy system&r. That’s why we’ll take our time in this chapter to explain as much as we can.\\n\\nSome things here might not make full sense until later in your progression, so &adon’t stress yourself&r. Just try to understand what you can for now, and feel free to &dcome back to this chapter&r whenever you have questions.\\n\\nWe’ve split this chapter into &efour categories&r, each one covering a topic related to the &6GregTech Energy System&r. We’ll provide as many examples as possible to help you understand how it all works."] + icon: "gtceu:uhv_ultimate_battery" + id: "06B2E38F7DCF2678" + tasks: [{ + id: "07E1FA6A1BB796D4" + title: "How to Gregtech" + type: "checkmark" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["&6Moving Energy in Gregtech&r means understanding a few core mechanics.\\n\\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in Gregtech — wires, machines, recipes — is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\\n&8•&r Tin wire = &aLV&r\\n&8•&r Copper = &bMV&r\\n\\nSecond, you’ve got the &bAmperage&r mechanic. Think of &d1 Amp&r (or &d1A&r) as &ea packet of energy&r. It moves down your cable to the closest machine needing power.\\n&8•&r 1A of LV = &a32 EU&r\\n&8•&r 1A of HV = &e512 EU&r\\n\\nMost machines and energy hatches can only take &62A at once&r.\\n\\nMastering these two ideas is key before going further into energy distribution."] + icon: "gtceu:luv_field_generator" + id: "60FF9249376DF9BD" + tasks: [{ + id: "4C6524EFB1A21E6E" + title: "Moving Energy" + type: "checkmark" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["Storing your energy is one of the &emost fundamental aspects&r of the power system in &dGregTech&r.\\n\\nWhy is that? Simply because even the &cstrongest generators&r won't be enough to keep up when you launch a &ebig craft&r — especially in late game.\\n\\nTo deal with this, GregTech provides &6multiple solutions&r to store &bastronomical amounts of EU&r. These storages act as a &3buffer&r between your energy production and the machines that drain it during complex operations.\\n\\nWhether you’re preparing for a &1Fusion Reactor&r, a &dLCT&r, or any &6HV-IV scale crafting chain&r, you’ll need that extra backup of energy to keep everything stable.\\n\\nDon’t underestimate the &apower of a good battery&r — it may just be the thing that saves your base from crashing during your most ambitious moments."] + icon: "gtceu:uv_field_generator" + id: "08C160A0E7BBF39D" + tasks: [{ + id: "2E561EE13A2AE934" + title: "Stocking Energy" + type: "checkmark" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["It’s all about making energy, right? This part won’t be the most complicated one, since &eproducing energy&r in &2TerraFirmaGreg&r works pretty much like in &5standard GregTech&r.\\n\\nYou’ll learn about the various &6methods to generate energy&r, as well as some of the &afuels&r you can use to get the most out of your setup."] + icon: "gtceu:lv_field_generator" + id: "2CDB9778C7A30044" + tasks: [{ + id: "0772AE56AC1CCBAC" + title: "Producing Energy" + type: "checkmark" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: [ + "&6How to spend all this energy?&r\\n\\nUse your machines! Sounds simple, right?\\nWell... &cnot exactly&r. There are &emany small details&r that you should learn to help you on your &dquest&r to completing &3TerraFirmaGreg&r.\\n\\n&bBasic Machines&r:\\n- These machines are simple.\\n- They can handle up to &a2A&r.\\n- If you input a &chigher tier&r of energy... &4💥 they explode&r.\\n\\n&dGregtech Multiblocks&r:\\nNow things get interesting.\\nMultiblocks offer more flexibility and power — &eif&r you understand how they work." + "{@pagebreak}" + "&eStandard Mechanics&r:\\n- If a multiblock can accept &aTWO&r &bEnergy Hatches&r this allows you to use &ahigher-tier recipes&r than the machine’s base tier.\\n\\nExample:\\nIf you're using a &dLarge Mixing Vessel&r and you install &12x IV Energy Hatches&r,\\nit will be able to process &cLuV-tier Mixer recipes&r — this is how works the &cElectric Blast Furnace&r.\\n\\nKnowing this will help you get the &6maximum efficiency&r out of your setup and progressing into higher tier materials." + "{@pagebreak}" + "&6Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A.&r\\n\\nYou can still use a &e4A or 16A Energy Hatch&r. This will allow &bOverclocking&r of recipes but &cnot recipe tier upgrades&r.\\n\\n&dExample&r:\\nThe &aLarge Circuit Assembler&r only accepts &eone Energy Hatch&r. If you install a &c4A IV Energy Hatch&r, you will be able to &eOverclock all IV and lower recipes&r.\\n\\nHowever, you &ccannot craft LuV-tier recipes&r because the machine doesn't support multiple hatches. That limitation is &aintentional&r to prevent skipping the Gregtech progression system.\\n\\n&bSo remember&r: More amps on a single hatch means faster processing, but it won’t unlock higher-tier recipes unless the multiblock is designed to allow it." + ] + icon: "gtceu:hv_field_generator" + id: "2E57B2B963717893" + tasks: [{ + id: "28965A2A91DF08E5" + title: "Spending Energy" + type: "checkmark" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6Moving energy around in Gregtech can be tricky&b — cable loss&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are &7solutions&r:\\n\\n&8•&r &bCover your wires&r with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\\n&8•&r &bUse higher-tier cables&r. Platinum cables, for example, only lose 1 EU per block — &9practically nothing&r when compared to the 8192 EU it can carry.\\n&8•&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, &cno shock&r. Just be aware that they require specific components based on their tier.\\n\\n&7Optimize your energy flow — &breduce losses&r and make your systems more efficient."] + icon: "gtceu:tin_single_cable" + id: "2544BE51A1794811" + tasks: [ + { + id: "0B948A3121D2BFE7" + item: "gtceu:tin_single_cable" + optional_task: true + type: "item" + } + { + id: "56EB20BFFC88E15C" + item: "gtceu:tin_single_wire" + optional_task: true + type: "item" + } + { + id: "6CBE37EF0B482352" + item: "gtceu:platinum_single_cable" + optional_task: true + type: "item" + } + { + id: "24025B7BA4E5FFAE" + title: "{quests.gregtech_energy.wire.task}" + type: "checkmark" + } + ] + title: "Moving with wires" + x: 0.0d + y: 5.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6There's something we didn't mention about &bAmps&r — cables can burn if you push too much through them. &bNot only the tier of energy matters&r, but also the &9Amps&r.\\n\\nWhenever you're outputting more &9Amps&r than a cable can handle, it's essential to either use &7bigger cables&r or cables with a &9higher amp capacity&r to prevent them from burning out. "] + icon: "gtceu:tin_octal_cable" + id: "2F9973EC65735849" + subtitle: "It burns?" + tasks: [ + { + id: "02AC71975245336E" + item: "gtceu:tin_octal_wire" + optional_task: true + type: "item" + } + { + id: "547C891139BA60B3" + item: "gtceu:tin_octal_cable" + optional_task: true + type: "item" + } + { + id: "0500E8DBD44B4D3D" + type: "checkmark" + } + ] + title: "Managing Amp" + x: 2.0d + y: 5.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6For every problem, Gregtech has a multiblock solution.&r Enter the &dActive Transformer&r.\\n\\nThis beast is your &9ultimate transformer&r. It can &echannel energy between any tiers&r — from &aLV&r to &cUHV&r — with &cno explosions&r. But that's not even the best part.\\n\\nIt can &btransmit energy using Laser Pipes&r.\\n&8•&r Lasers send absurd amounts of Amps.\\n&8•&r No loss. No cables. Just pure energy.\\n&8•&r Only one catch: it &chas to be in a perfectly straight line&r.\\n\\n&7When cables feel weak, &luse lasers&r."] + icon: "gtceu:active_transformer" + id: "6ECAD339C91EF194" + tasks: [ + { + id: "098424C2B55ABA69" + item: "gtceu:normal_laser_pipe" + type: "item" + } + { + id: "6A7AFEBA79AAA78C" + item: "gtceu:iv_256a_laser_target_hatch" + optional_task: true + type: "item" + } + { + id: "2A17B50CE90C5E30" + item: "gtceu:iv_256a_laser_source_hatch" + optional_task: true + type: "item" + } + { + id: "3402A41D0F9CAD37" + item: "gtceu:active_transformer" + type: "item" + } + ] + title: "The Super Transformer" + x: -2.0d + y: 5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["&dBattery Buffers&r are your basic machines to &estore and manage energy&r — though technically, they don’t store energy on their own. They simply serve as a &3housing for your batteries&r.\\n\\n⚠ &cIf you don’t want them to explode&r:\\n- &4Never input higher-tier energy&r into a lower-tier Battery Buffer.\\n- Batteries can only be charged if they are of &cequal or lower tier&r than the Battery Buffer.\\n\\n🔌 A Battery Buffer can accept up to &b2x its output amperage&r.\\nSo for example, a &e4x Battery Buffer&r can take in &a8A&r — but will only output &e4A&r max (1A per battery slot).\\n\\n🪫 &eReminder&r:\\n- No batteries = &cno output&r.\\n- The number of batteries determines the number of Amps it outputs.\\nThat means a &68x Battery Buffer&r with only &e3 batteries&r will only output &e3A&r.\\n\\nUse them wisely — they are the &afoundation of any stable energy network&r."] + id: "6F80465F0759BECA" + tasks: [ + { + id: "6C696D9285DCE51F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_battery_buffer_4x)item(gtceu:lv_battery_buffer_8x)item(gtceu:lv_battery_buffer_16x)item(gtceu:uhv_battery_buffer_4x)item(gtceu:uhv_battery_buffer_8x)item(gtceu:uhv_battery_buffer_16x))" + } + } + optional_task: true + title: "Some Battery Buffers" + type: "item" + } + { + id: "5EECB3420DC62587" + type: "checkmark" + } + ] + title: "Battery Buffer" + x: 0.0d + y: -5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["This one should become your &5main focus&r once you progress into &1IV&r.\\n\\nThe &dPower Substation&r — also known as the &dPSS&r — is the &6ultimate custom battery multiblock&r.\\nIt can store so much energy... you’d probably need &cmultiple lifetimes&r to fill it.\\n\\n&eHow it works&r:\\n- Build the structure using &aPalladium Substation Casings&r.\\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\\n- It accepts &aany hatch&r — &8Amperage-based&r or &6Laser&r.\\n- &cNo risk of explosion&r — transformers are &aintegrated&r.\\n\\n&eCapacitor Layers&r:\\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\\n- Each layer must be &cfully filled&r — no gaps.\\n- Mix &fempty&r and &6full&r capacitors however you like.\\n\\nSurround each layer with &bLaminated Glass&r.\\n\\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\\nIf you ever do build a full 17-layer PSS, &lplease send help&r — you’ve gone too far."] + icon: "gtceu:power_substation" + id: "3C4E3DAB3C77B6F0" + tasks: [ + { + id: "1FEDCA7CAA2636CE" + item: "gtceu:power_substation" + type: "item" + } + { + id: "640C3055914D42B4" + item: "gtceu:laminated_glass" + type: "item" + } + { + id: "2B5D36952AA8553D" + item: "gtceu:palladium_substation" + type: "item" + } + ] + x: 2.0d + y: -5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["Obviously, storing energy can also mean &estoring the fuel that makes it&r.\\n\\nFor this scenario, while &7Drums&r and &6Crates&r are decent early options, you should not overlook the &dSuper Tank&r and the &dSuper Chest&r.\\n\\nThese &abeasts&r are capable of storing &ctremendous amounts of fluid or items&r — perfect for &3autonomous energy setups&r, especially when you want to generate power &cfar away from your main base&r without having to build an entire cable network.\\n\\nJust load them up with &egas, fuel, steam&r or even &4plasma&r, and let them handle the rest. With proper planning, your outposts can be fully operational with &ano live connection&r to your central grid.\\n\\nEnergy doesn’t always come in wires — sometimes, it comes in barrels."] + id: "463300BE45037961" + tasks: [{ + id: "6E4464F002201129" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_super_tank)item(gtceu:mv_super_tank)item(gtceu:hv_super_tank)item(gtceu:ev_super_tank)item(gtceu:iv_quantum_tank)item(gtceu:luv_quantum_tank)item(gtceu:zpm_quantum_tank)item(gtceu:uv_quantum_tank)item(gtceu:uhv_quantum_tank))" + } + } + title: "Super Tank" + type: "item" + }] + title: "Storing the fuel" + x: -2.0d + y: -5.0d + } + { + dependencies: ["6F80465F0759BECA"] + description: ["From &7LV&r and &bMV&r, you probably built your first batteries made of &fSodium&r or &3Lithium&r.\\n\\nBut let’s be honest — these are the &cweakest&r batteries GregTech has to offer.\\n\\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\\nThey are &emuch more potent&r, store way more energy, and can help you push your factory to the next tier.\\n\\nAre they &cmore expensive&r? Of course. But let’s be real...\\n&6Power is Power&r. Who’s counting?"] + id: "3B94CF569E4A2B26" + tasks: [{ + id: "1C8EE4B96BEEA13F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:energy_crystal)item(gtceu:lapotron_crystal)item(gtceu:lapotronic_energy_orb)item(gtceu:lapotronic_energy_orb_cluster)item(gtceu:energy_module)item(gtceu:energy_cluster)item(gtceu:max_battery))" + } + } + type: "item" + }] + title: "Super Batteries" + x: 0.0d + y: -6.5d + } + { + dependencies: ["2CDB9778C7A30044"] + description: ["All of these are your basic &61-block Generators&r. They have a single &9input&r for their fuel — whether it’s &esteam&r, &agas&r, or &6liquid fuel&r — and they output exactly &e1A&r of power at their energy tier.\\n\\nThey’re simple to work with and will be your &ofirst source of power&r in &5GregTech&r until you reach the &dlarge multiblock generators&r.\\n\\nTo know what fuels can be used, &aEMI&r is your best friend — or you can check the &bquests on the left&r, where we’ve listed the most &aoptimal inputs&r."] + id: "0116158FBDA9DF86" + tasks: [ + { + id: "0BCC01540FE7555C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_combustion)item(gtceu:mv_combustion)item(gtceu:hv_combustion)item(gtceu:lv_steam_turbine)item(gtceu:mv_steam_turbine)item(gtceu:hv_steam_turbine)item(gtceu:lv_gas_turbine)item(gtceu:mv_gas_turbine)item(gtceu:hv_gas_turbine))" + } + } + optional_task: true + type: "item" + } + { + id: "64B39E5E9FDEABF3" + type: "checkmark" + } + ] + title: "Your first generators" + x: -5.0d + y: 0.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Steam Turbine&r — or &dLST&r — might not be the most common &5Large Generator&r in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that &eLarge Boilers&r are stronger in &2TerraFirmaGreg&r, it definitely has its place.\\n\\nTo make it work, you’ll need an &9Input Hatch&r for &osteam&r, an &eOutput Hatch&r for &9Distilled Water&r, and of course a &dMaintenance Hatch&r. That’s all you need.\\n\\nLike all &dLarge Turbines&r, you’ll place a &6Rotor Holder&r on one side and a &dDynamo Hatch&r on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases &aefficiency&r slightly.\\n\\nThe base output of the LST is &e1024 EU/t&r. Let’s take an example: with an &1IV Rotor Holder&r (×4) and a &cHSS-E Turbine Rotor&r (280% power), you’ll get:\\n&e1024 × 4 × 2.8 = 11,468.8 EU/t&r — that’s about &a1.4A of IV&r.\\n\\nTo extract that energy, you’d need either an &dIV Dynamo Hatch&r or an &5EV 16A Dynamo Hatch&r.\\n\\nWhile the LST isn’t the best turbine out there, if you have &9plenty of Large Boilers&r or access to &alava&r or &7creosote&r as infinite fuel, these &esteel-based, affordable turbines&r could absolutely serve you well."] + id: "20DA81038C507C90" + tasks: [{ + id: "2151B2C87E5AC2FD" + item: "gtceu:steam_large_turbine" + type: "item" + }] + x: -7.0d + y: 1.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["These two &6bad boys&r are your &achampions&r if you’re into transforming &eOils&r into &cfuels&r. The &6Large Combustion Engine&r (&dLCE&r) and the &5Extreme Combustion Engine&r (&dECE&r) share the same fuel types and even look alike — but they require different materials to build.\\n\\nTo craft the &dLCE&r, you’ll need to reach &5EV&r and unlock &6Titanium&r, along with at least one &1IV Circuit&r. For the &dECE&r, it’ll be &5Tungstensteel&r and a &dLuV Circuit&r — something you should be able to build comfortably during the &1IV Chapter&r.\\n\\nBoth machines require an &9Input Hatch&r for &cfuel&r and also &6Lubricant&r. For the &dECE&r, adding &bOxygen&r or &bLiquid Oxygen&r will grant you a &cmassive energy boost&r. Check the &etooltip&r of your fuel to compare how much extra energy you get with oxidizers — it's well worth it.\\n\\nKeep in mind: both engines need a &7Muffler Hatch&r, so &cThey Will Pollute&r."] + id: "4AC4D681124751EE" + tasks: [ + { + id: "31BFE575D15F270A" + item: "gtceu:large_combustion_engine" + type: "item" + } + { + id: "4B062E5264D4CAC8" + item: "gtceu:extreme_combustion_engine" + type: "item" + } + ] + x: -7.0d + y: 3.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Gas Turbine&r — also known as &dLGT&r — is one of your two main sources of &aenergy production&r for most of the pack. You’ll be able to build your first one at &5EV&r using &6Stainless Steel&r. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the &6Large Plasma Turbine&r.\\n\\nThat said, many players can finish &2TerraFirmaGreg&r using only these turbines — provided you have a &cstrong infrastructure&r to handle the &agas demands&r of high-tier LGTs.\\n\\nTo build the LGT, you’ll need the usual &dMaintenance Hatch&r and &9Input Hatch&r. This turbine &erequires a Muffler Hatch&r, but it &cdoes not use an Output Hatch&r. You’ll need to manage the &cCarbon Monoxide&r it emits with something like an &6Air Scrubber&r.\\n\\nThe default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the &6Rotor Holder&r after &5EV&r. For example, an LGT using an &1IV Rotor Holder&r (×2) with a &cHSS-E Turbine Rotor&r (280% power) will produce:\\n&e4096 × 2 × 2.8 = 22,937.6 EU/t&r — that's about &a2.8A of IV&r.\\n\\nTo fully extract that energy, you’ll need at least a &dIV 4A Dynamo Hatch&r. A simple Dynamo Hatch only handles &e2A&r.\\n\\nJust so you know: the &eEfficiency stat&r of a Turbine Rotor increases the &cduration of the recipe&r, which means you get more power from each &6mB of fuel&r.\\n\\nLastly, if the &dDynamo Hatch&r fills up, the LGT will automatically &8slow down&r and pause fuel usage, gradually reducing rotor speed until it resumes again. So &ayou won't lose any fuel&r during a backup."] + id: "3467E14C8BB54214" + tasks: [{ + id: "350B0F369725EB56" + item: "gtceu:gas_large_turbine" + type: "item" + }] + x: -7.0d + y: -1.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Plasma Turbine&r — also known as &dLPT&r — is a real powerhouse. Not in size (it’s fairly standard), but in &ccapacity&r. You’ll need &dLuV Circuits&r, a &dLuV Machine Hull&r, and &5tons of Tungstensteel&r to craft it. It’s considered your &6most powerful generator&r in &2TerraFirmaGreg&r.\\n\\nSo, how does it work? You’ll need &5Plasma&r produced by a &6Fusion Reactor&r. That plasma is cooled down inside the LPT while generating energy. You will need an &2output hatch&r to get the cooled plasma.\\n\\nBy default, the LPT starts at &e16384 EU/t&r. That energy output &cdoubles&r with each increase in the &6Rotor Holder&r after &1IV&r.\\n\\nFor example, using a &dLuV Rotor Holder&r (x2) with an &cHSS-E Turbine Rotor&r (x2,8) will give you a staggering &e91750 EU/t&r — that’s about &a2.8A of LuV&r power!\\n\\nLike other turbines, it will &8slow down&r and stop if the &dDynamo Hatch&r is full so you won't waste plasma, but doesn’t require a &7Muffler Hatch&r."] + id: "634EAFA86B3D57A1" + tasks: [{ + id: "706DFFC90D532880" + item: "gtceu:plasma_large_turbine" + type: "item" + }] + x: -7.0d + y: -3.0d + } + { + dependencies: ["2E57B2B963717893"] + description: [ + "&6If you didn't learn yet about Perfect Overclocking, you should check the quest right above this one.&r\\n\\nThese &3three multiblocks&r share a special ability: they can &ePerfect Overclock&r recipes depending on the &ctemperature of the machine&r.\\n\\nYou can check the current temperature by &aclicking on the controller&r.\\n\\nThere are &atwo ways to increase the temperature&r:\\n- &aUse higher-tier energy inputs&r\\n- &aUpgrade the coils&r\\n\\nTo see the temperature of a coil, simply &3hold Shift&r while hovering over it.\\n\\nOnce you know your machine's temperature, you’ll need the &dtemperature of the recipe&r. The easiest way to find it is to &ause EMI&r.\\n\\nWith both values, you can do a quick calculation to see if Perfect Overclocking (POC) applies:\\n&bYour machine must be at least 1800K hotter per overclock tier than the recipe requires.&r" + "{@pagebreak}" + "&dExample&r:\\n- Stainless Steel recipe requires &c1700K&r and is &aHV&r tier.\\n- Your EBF is at &bLuV&r and has a temperature of &c5900K&r.\\n- From HV to LuV is &a3 overclock tiers&r.\\n- 1800 x 3 = &c5400K&r → Add the recipe's base: 5400 + 1700 = &c7100K&r needed for full POC.\\n- Since your machine is only at &c5900K&r, you will only Perfect Overclock from HV to EV, and EV to IV.\\n- From IV to LuV will be a normal overclock.\\n\\nSo the recipe will take &e1.7 seconds&r instead of &e0.85 seconds&r if fully overclocked.\\n\\n&bFeeling overwhelmed? Don't worry.&r\\nJust remember this: &aBetter coils = faster and cheaper recipes.&r" + ] + id: "270ED38B1B8D99C2" + tasks: [ + { + id: "03DE5604C5A6BC9B" + item: "gtceu:electric_blast_furnace" + optional_task: true + type: "item" + } + { + id: "2D32DD066BCC7D78" + item: "gtceu:alloy_blast_smelter" + optional_task: true + type: "item" + } + { + id: "6262F3C8A45FB8D5" + item: "gtceu:mega_blast_furnace" + optional_task: true + type: "item" + } + { + id: "61B9BF90A0D45FE4" + type: "checkmark" + } + ] + title: "The Blast Overclocking" + x: 5.0d + y: -1.0d + } + { + dependencies: ["2E57B2B963717893"] + description: [ + "&6You may have heard about Overclocking but don't really understand what it is?&r\\n\\nLet's take some time to explain it.\\n\\nWe should start with the basics:\\n&dLV&r represents a maximum of &a32 EU/t&r — sometimes less, but &cnever more&r.\\n&dMV&r goes up to &a128 EU/t&r.\\n&dHV&r reaches &a512 EU/t&r.\\nBasically, &eevery tier is a 4x increase&r in &cpower usage&r.\\n\\n&bWhat happens when you run a lower-tier recipe in a higher-tier machine?&r\\nThat's what we call &eOverclocking&r:\\n- An &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will:\\n &e→ Use 4x more energy&r\\n &e→ Be 2x faster&r\\n\\n- Same MV recipe in an &dEV&r machine?\\n &e→ 8x more energy&r\\n &e→ 4x faster&r\\n\\nSo yes, it's &cmore power-efficient to use multiple machines&r rather than overclocking one.\\nBut let's be real: in most setups, &eyou’ll prefer overclocking&r to building 4 MV Macerators.\\n\\nStill, it's &egood to know this early on&r, when energy is tight." + "{@pagebreak}" + "&bPerfect Overclocking&r\\nThere’s also a special kind of overclocking available in a &afew multiblocks&r: &e\\n\\nPerfect Overclocking&r.\\nHere, instead of:\\n- &a4x energy&r for &a2x speed&r,\\nyou get:\\n- &a4x energy&r for &a4x speed&r!\\n\\n&dThis makes it just as efficient&r as running multiple machines.\\n\\nCurrently in &3TerraFirmaGreg&r, &6only the following multiblocks&r support this:\\n- &cElectric Blast Furnace (EBF)\\n- Advanced Blast Dryer (ABD)\\n- Rocket Heat Furnace (RHF)\\n- Large Chemical Reactor (LCR)" + ] + icon: "gtceu:large_assembler" + id: "6F46479365672DDD" + tasks: [{ + id: "18A095DEF3B37900" + title: "Overcloak" + type: "checkmark" + }] + title: "Overclock" + x: 5.0d + y: -3.0d + } + { + dependencies: ["2E57B2B963717893"] + description: ["&6Another hidden mechanic in Gregtech Multiblocks: the &dSubtick&r.\\n\\nWhat is it?\\nSubtick activates when a recipe becomes &eso fast it takes less than one tick&r to process. Normally, machines can’t go faster than one recipe per tick — but with Subtick, they can!\\n\\n&bHow does it work?&r\\nOnce a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.\\n\\nFor example: If your &aLCR (Large Chemical Reactor)&r runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean &emore internal parallel&r.\\n\\n&dNote&r: As of now, only the &aLCR supports Subtick&r — and yes, it also does &bPerfect Overclocking&r. That’s why the LCR doesn’t need a Parallel Hatch: it’s already doing it... but better."] + id: "26D01C54FEE12B2E" + tasks: [{ + id: "1A6DE2D00A7A9FB2" + item: "gtceu:large_chemical_reactor" + type: "item" + }] + title: "Subtick" + x: 5.0d + y: 1.0d + } + { + dependencies: ["2E57B2B963717893"] + description: ["&6The &dParallel Hatch&r is a powerful tool for &aLarge Multiblocks&r.\\n\\n&bWhat does it do?&r\\nWhere allowed (most notably on Multiblocks crafted from the &eAlloy Blast Smelter&r), it lets you run &amultiple recipes at the same time&r.\\n\\nIt does this by consuming &cmore energy&r per tick, but massively increasing throughput. Perfect if you’re mass-producing alloys, circuits or chemicals.\\n\\nJust place a Parallel Hatch on the Multiblock and make sure it’s fed with enough energy and input materials. Most multiblocks that allow it will show so in EMI or questbook.\\n\\n&dNote&r: The &aLCR&r (Large Chemical Reactor) &cdoes not use Parallel Hatches&r — it handles internal parallel using &bSubtick mechanics&r instead."] + id: "5A478712FBE7BC83" + tasks: [{ + id: "6B288347B38FD54D" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:iv_parallel_hatch)item(gtceu:luv_parallel_hatch)item(gtceu:zpm_parallel_hatch)item(gtceu:uv_parallel_hatch))" + } + } + type: "item" + }] + title: "Parallel Hatch" + x: 5.0d + y: 3.0d + } + { + dependencies: ["3467E14C8BB54214"] + description: ["When we speak about &agas fuels&r, we’re really talking about &cjust one&r — &eNitrobenzene&r.\\n\\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the &5Large Gas Turbine&r.\\n\\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it via &aOrganic Chemistry&r or by processing &eHeavy Oil&r, if you’re lucky enough to have some nearby.\\n\\nMaking &eNitrobenzene&r involves several steps — until you craft your first &6Large Chemical Reactor&r (&aLCR&r), which will let you &3skip many sub-steps&r and simplify the process.\\n\\nIt’s nothing too complicated: combine &3Hydrogen&r, &bNitrogen&r, and &bOxygen&r to make &eNitric Acid&r in infinite quantities. As for &eSulfuric Acid&r, you probably already know it’s just &6Sulfur&r and &9Water&r — right?\\n\\nOnce you get this chain going, Nitrobenzene becomes one of the &amost powerful fuels&r for gas burning."] + icon: "gtceu:nitrobenzene_bucket" + id: "75DAF94D46BA4164" + subtitle: "The everyone favorite" + tasks: [ + { + id: "2A3155363C7C56A7" + item: "gtceu:nitrobenzene_bucket" + optional_task: true + type: "item" + } + { + id: "6D22AF719926DC1C" + item: "gtceu:benzene_bucket" + optional_task: true + type: "item" + } + { + id: "532915D09934F836" + item: "gtceu:methane_bucket" + optional_task: true + type: "item" + } + { + id: "75DE64829622C96D" + type: "checkmark" + } + ] + title: "Gas Fuels" + x: -8.5d + y: -1.0d + } + { + dependencies: ["634EAFA86B3D57A1"] + description: ["&6Large Plasma Turbines&r require &chigh-tech fuels&r to run, and we provide you with &a2 strong options&r:\\n\\n&8- The first option&r becomes available with your &dMK1 Fusion Reactor&r: &eHelium Plasma&r.\\nYou can create it using &3Deuterium&r and &3Tritium Gas&r — both gases are obtained by &adistilling Liquid Ender Air&r.\\nThis fuel isn't the most powerful, but it's by far the &aeasiest and earliest&r to produce.\\n\\n&8- The second option&r requires a &5MK3 Fusion Reactor&r and allows you to generate &eNickel Plasma&r.\\nTo make it, you’ll need &6Liquid Potassium&r — which you can extract from various ores — and the &4infamous Fluorine&r, which you should already know how to produce by now.\\n\\n⚠ Don’t forget: &eHelium Gas&r and &eLiquid Nickel&r should be &3collected and returned&r to your storage for &afuture reuse&r.\\n\\nThese two fuels are your &abest candidates&r for powering the &dLPT&r, depending on how far you've progressed in your &bindustrial madness&r."] + id: "3ADC1B684A6749B2" + subtitle: "It's very hot" + tasks: [ + { + id: "528281483EA83791" + item: "gtceu:helium_plasma_bucket" + optional_task: true + type: "item" + } + { + id: "0C8FFDCD99E663E4" + item: "gtceu:nickel_plasma_bucket" + optional_task: true + type: "item" + } + { + id: "648FDBADCC1145CA" + type: "checkmark" + } + ] + title: "Plasma Fuels" + x: -8.5d + y: -3.0d + } + { + dependencies: ["20DA81038C507C90"] + description: ["Steam isn’t really complicated — just &aboil water&r to get steam.\\n\\nTo do it efficiently, we recommend using &6Large Boilers&r. You’ll find &c4 versions&r: one each for &8ULV&r, &bMV&r, &5EV&r, and &1IV&r. Each tier provides a &dstrong increase&r in steam output.\\n\\nHowever, be aware: the scaling of the &dLarge Steam Turbine&r with these boilers is &cnot the best&r compared to other power generation methods.\\n\\nMost players will &7skip&r the &5Titanium&r and &dTungstensteel&r Boilers — they exist if you want them, but aren’t really &aefficient or worth building&r in most cases.\\n\\nAs a reminder: &e2 mB&r of steam = &e1 EU&r."] + icon: "gtceu:steam_bucket" + id: "7D5CA47D0E147922" + subtitle: "A cool platform" + tasks: [ + { + id: "20720B4864B6584D" + item: "gtceu:steam_bucket" + optional_task: true + type: "item" + } + { + id: "42A4CEE8AF825901" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:bronze_large_boiler)item(gtceu:steel_large_boiler)item(gtceu:titanium_large_boiler)item(gtceu:tungstensteel_large_boiler))" + } + } + title: "Large Boilers" + type: "item" + } + ] + title: "This is Steam" + x: -8.5d + y: 1.0d + } + { + dependencies: ["4AC4D681124751EE"] + description: ["All of these &cfuels&r are used for &6Combustion Generators&r — ranked here from the &cleast efficient&r to the &abest&r.\\n\\nDuring &bMV&r, we recommend starting with &eDiesel&r or &eBiodiesel&r. Later on, you can upgrade to &eCetane-Boosted Diesel&r at &6HV&r by mixing it with &bNitrogen&r, &3Hydrogen&r, and &bOxygen&r.\\n\\nOnce you reach &5EV&r and get your hands on a &6Distillation Tower&r, it's time to switch over to &eGasoline&r and &eHigh Octane Gasoline&r. Don’t attempt this too early — &coils need to be distilled properly&r, and doing it with a &cDistillery&r is &cnot efficient&r at all.\\n\\nTo make this work, you'll need a combination of oil distillation and some &aorganic compound processing&r. Thankfully, a &6Pyrolyse Oven&r and a &6Distillation Tower&r will handle it all smoothly.\\n\\nIf you manage a &asteady supply&r of &eHigh Octane Gasoline&r, you should be able to &3finish the entire modpack&r running only on &6Combustion Generators&r."] + id: "0C718329245D9619" + subtitle: "This one is killing hard the planet" + tasks: [ + { + id: "50CE5C3BA076E792" + item: "gtceu:bio_diesel_bucket" + optional_task: true + type: "item" + } + { + id: "4C79A4FA2CB71796" + item: "gtceu:diesel_bucket" + optional_task: true + type: "item" + } + { + id: "4A3E0975BCDE21F5" + item: "gtceu:cetane_boosted_diesel_bucket" + optional_task: true + type: "item" + } + { + id: "2B18A84AE24ACDCB" + item: "gtceu:gasoline_bucket" + optional_task: true + type: "item" + } + { + id: "62E15DB5A988AE21" + item: "gtceu:high_octane_gasoline_bucket" + optional_task: true + type: "item" + } + { + id: "63099EACCEF08E14" + type: "checkmark" + } + ] + title: "Liquid fuel" + x: -8.5d + y: 3.0d + } + ] + subtitle: ["{quests.gregtech_energy.subtitle}"] + title: "{quests.gregtech_energy}" +} diff --git a/config/ftbquests/quests/chapters/lv__low_voltage.snbt b/config/ftbquests/quests/chapters/lv__low_voltage.snbt index 3f083108b..b7bee86da 100644 --- a/config/ftbquests/quests/chapters/lv__low_voltage.snbt +++ b/config/ftbquests/quests/chapters/lv__low_voltage.snbt @@ -12,7 +12,7 @@ dependencies: ["2F7617C0C4B330DE"] description: ["{quests.low_voltage.lv_fluid_regulator.desc}"] id: "47D4545452F05E37" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_fluid_regulator.subtitle}" tasks: [{ @@ -32,7 +32,7 @@ "{quests.low_voltage.lv_robot_arm.desc.2}" ] id: "3DE7A2B91CFF48F6" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_robot_arm.subtitle}" tasks: [{ @@ -48,7 +48,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_conveyor.desc}"] id: "288CE4AA4C5AA8BF" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_conveyor.subtitle}" tasks: [{ @@ -64,7 +64,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_pump.desc}"] id: "2F7617C0C4B330DE" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_pump.subtitle}" tasks: [{ @@ -80,7 +80,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_piston.desc}"] id: "38993B4697B0E16C" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_piston.subtitle}" tasks: [{ @@ -192,7 +192,7 @@ ] icon: "gtceu:crafting_table_cover" id: "1C767009F505A813" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.cover_behaviour.subtitle}" tasks: [{ @@ -218,7 +218,7 @@ ] icon: "minecraft:hopper" id: "64E1E87B8AF72968" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.machine_auto_output_behaviour.subtitle}" tasks: [{ @@ -404,7 +404,7 @@ } } id: "59F0060B55307311" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.programmed_circuits.subtitle}" tasks: [{ @@ -569,12 +569,19 @@ ] description: ["{quests.low_voltage.lv_ore_prospector.desc}"] id: "2E36E5755B2F551C" + optional: true shape: "heart" size: 1.0d subtitle: "{quests.low_voltage.lv_ore_prospector.subtitle}" tasks: [{ - id: "1AC97E61EF4958C8" - item: "gtceu:prospector.lv" + id: "61235B5F55D60DB5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:prospector.lv)item(gtceu:prospector.hv)item(gtceu:prospector.luv))" + } + } type: "item" }] title: "{quests.low_voltage.lv_ore_prospector.title}" @@ -582,7 +589,10 @@ y: 0.5d } { - dependencies: ["5B2696206205CB2E"] + dependencies: [ + "5B2696206205CB2E" + "70432F650591353C" + ] description: ["{quests.low_voltage.cupronickel_coil.desc}"] icon: { Count: 1 @@ -608,7 +618,7 @@ dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.lv_gas_collector.desc}"] id: "15928F50AE80A5CF" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_gas_collector.subtitle}" tasks: [{ @@ -656,7 +666,7 @@ ] icon: "gtceu:fluid_cell" id: "292938760AB9A12B" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.universal_cell.subtitle}" tasks: [{ @@ -699,7 +709,7 @@ description: ["{quests.low_voltage.soldering_alloy.desc}"] icon: "gtceu:soldering_alloy_ingot" id: "713C8D6A20BF3A0E" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.soldering_alloy.subtitle}" tasks: [{ @@ -891,7 +901,7 @@ ] icon: "gtceu:oxygen_bucket" id: "1A77CA35F054F988" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_oxygen.subtitle}" tasks: [{ @@ -994,7 +1004,7 @@ description: ["{quests.low_voltage.1_mv_circuit.desc}"] id: "0DBC148D92A9F69F" shape: "gear" - size: 1.2d + size: 1.5d subtitle: "{quests.low_voltage.1_mv_circuit.subtitle}" tasks: [{ id: "70313E1917121E14" @@ -1003,7 +1013,7 @@ }] title: "{quests.low_voltage.1_mv_circuit.title}" x: 0.0d - y: 10.799999999999999d + y: 11.0d } { dependencies: ["1E9BE8D3F8A602DC"] @@ -1175,7 +1185,6 @@ dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.lv_mixer.desc}"] id: "5B891BA4897FD73C" - optional: true shape: "octagon" size: 2.0d subtitle: "{quests.low_voltage.lv_mixer.subtitle}" @@ -1222,7 +1231,7 @@ dependencies: ["15928F50AE80A5CF"] description: ["{quests.low_voltage.lv_nitrogen.desc}"] id: "39F6BCF4B8DFC7D4" - shape: "rsquare" + shape: "square" subtitle: "{quests.low_voltage.lv_nitrogen.subtitle}" tasks: [{ id: "332632EB70DC54EB" @@ -1262,7 +1271,7 @@ description: ["{quests.low_voltage.mold_plate.desc}"] icon: "gtceu:plate_casting_mold" id: "3526779F1E3E2DB5" - shape: "rsquare" + shape: "square" subtitle: "{quests.low_voltage.mold_plate.subtitle}" tasks: [ { @@ -1370,6 +1379,30 @@ x: 0.0d y: 1.0d } + { + dependencies: ["0DBC148D92A9F69F"] + description: [ + "{quests.low_voltage.lv_greenhouse.desc.1}" + "{@pagebreak}" + "{quests.low_voltage.lv_greenhouse.desc.2}" + "{@pagebreak}" + "{quests.low_voltage.lv_greenhouse.desc.3}" + ] + icon: "minecraft:oak_sapling" + id: "1F41C35890E2C44F" + optional: true + shape: "heart" + size: 1.5d + subtitle: "{quests.low_voltage.lv_greenhouse.subtitle}" + tasks: [{ + id: "3EB01235ED295080" + item: "gtceu:greenhouse" + type: "item" + }] + title: "{quests.low_voltage.lv_greenhouse.title}" + x: 3.0d + y: 11.0d + } ] subtitle: ["{quests.low_voltage.subtitle}"] title: "{quests.low_voltage}" diff --git a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt index 8c3a7301f..337602ca5 100644 --- a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt +++ b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt @@ -6,42 +6,37 @@ icon: "gtceu:mv_electric_motor" id: "43E779CEEB25D55B" order_index: 1 - quest_links: [ ] + quest_links: [{ + id: "4C40CD101E2A9591" + linked_quest: "02854A3E8A5D5043" + shape: "heart" + x: -10.5d + y: -6.5d + }] quests: [ { dependencies: ["22E462070F8B027A"] description: [ - "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r." - "" - "Another product is &aBiomass&r, which is more pertinent for your progression as of this moment." + "{quests.medium_voltage.pyrolyse.desc.1}" "{@pagebreak}" - "The byproducts can be Distilled for an array of organic resources, with &odifferent&r byproducts giving &odifferent&r ratios of &odifferent&r chemicals." - "" - "You will need to take a peek at the &9Distillation&r Quest to get to grips with the power of distillation..." + "{quests.medium_voltage.pyrolyse.desc.2}" "{@pagebreak}" - "There are recipes that can accept &bNitrogen&r to double the speed. This isn't quite worth pursuing right now, but Nitrogen will eventually be free and infinite." - "" - "You should be more than fine with a single &3LV Energy Hatch&r, and Superconductors to supply a steady &d64 EU/t&r. Additionally, &3Cupronickel Coils&r are perfect when you're getting used to the Pyrolyse Oven, but you may want to upgrade to &bKanthal&r eventually." - "" + "{quests.medium_voltage.pyrolyse.desc.3}" "{@pagebreak}" - "&9&lNote:&r&l The Plant path is one path you can take towards &9&lEthylene&r&l, which is a necessary chemical in progressing to &6HV&r&l. The other path involves Oil.&r" - "" - "The Pyrolyse Oven remains &doptional&r. However, it is very rewarding to construct one either for Power, or for the various Byproducts, and we highly recommend you give it a look." - "" - "&l&3Lore:&r&o In GT5u, the structure for the Pyrolyse Oven was infamously a giant box with only 9 coils inside. Players usually spent several minutes debugging what is wrong due to a lack of a EMI preview." + "{quests.medium_voltage.pyrolyse.desc.4}" ] icon: "gtceu:pyrolyse_oven" id: "53DC6E32C41C94C3" optional: true shape: "square" size: 1.0d - subtitle: "Thermal Decomposition" + subtitle: "{quests.medium_voltage.pyrolyse.subtitle}" tasks: [{ id: "0FD2962C232149F8" item: "gtceu:pyrolyse_oven" type: "item" }] - title: "Pyrolyse Oven" + title: "{quests.medium_voltage.pyrolyse.title}" x: -2.5d y: -0.5d } @@ -51,46 +46,40 @@ "1A29EFBCEA017F99" ] description: [ - "Welcome to the &2natural&r Ethylene route! This method uses &9plant matter&r to produce Ethanol." - "" - "Before we get ahead of ourselves, &aSugar Cane&r works fine in a &3Brewery&r for a decent yield of Biomass." - "" - "Othe&rrwise, you could try the \"&o&dPlantball into Bio Chaff&r\" route, and then turn it into Biomass, either in the &3Brewery&r or the &3Pyrolyse Oven&r - the latter being more efficient." - "" - "&9Note:&r Only one Bio Chaff can be obtained from maceration until you make the &3HV Macerator&r." + "{quests.medium_voltage.mv_biomass.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o You may recognise Plantballs from IndustrialCraft2! In IC2 Experimental, there was this rather... obscure way to turn Biomass into Biogas for power, which sadly required too much investment to be really worth it." + "{quests.medium_voltage.mv_biomass.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_biomass.desc.3}" ] icon: "gtceu:plant_ball" id: "6EB68C28BEE24DEF" + optional: true size: 1.0d - subtitle: "Plants aren't industrial enough!" + subtitle: "{quests.medium_voltage.mv_biomass.subtitle}" tasks: [{ id: "4FBD476EB6B6DD04" item: "gtceu:biomass_bucket" type: "item" }] - title: "Biomass" + title: "{quests.medium_voltage.mv_biomass.title}" x: -5.5d y: -0.5d } { dependencies: ["22E462070F8B027A"] description: [ - "The Brewery can be used to make &aLubricant&r from &aRedstone&r and &aCreosote&r/&aOil&r. Lubricant has some niche uses, namely being used in the &3Cutter&r to significantly reduce the duration of its recipes." - "" - "The Brewery is a very, very slow machine, but it requires almost no power to run its recipes. Building &2many Breweries&r will help you obtain enough Biomass on your quest for plastic. Oh, and you can use it to brew &dPotions&r too!" - "" - "&9Note:&r The Brewery \"unlocks\" the Biomass path towards &9Ethylene&r. The same can be done in the &3Pyrolyse Oven&r. The other path involves Oil.&r" + "{quests.medium_voltage.mv_brewery.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o You could make your own Brewery if you want to build up a company and start selling Booze... in GregTech 6.&r" + "{quests.medium_voltage.mv_brewery.desc.2}" ] hide_dependency_lines: true icon: "gtceu:mv_brewery" id: "1A29EFBCEA017F99" + optional: true shape: "square" size: 1.0d - subtitle: "*hic*... *hic*" + subtitle: "{quests.medium_voltage.mv_brewery.subtitle}" tasks: [ { id: "095C98D86D021B2E" @@ -104,7 +93,7 @@ type: "item" } ] - title: "Local Brewery selling Booze" + title: "{quests.medium_voltage.mv_brewery.title}" x: -5.5d y: -2.0d } @@ -114,25 +103,19 @@ "5D9D01EF219A31C5" "316FF60D6FFE97CE" ] - description: [ - "Our warmest congratulations on making it here." - "" - "The way you should obtain &aEthylene&r was described in the previous Quest, depending on the route you chose." - "" - "&aEthylene&r will shortly be used in polymer production. It's also useful in a few other reactions." - ] + description: ["{quests.medium_voltage.mv_ethylene.desc}"] icon: "gtceu:ethylene_bucket" id: "6BB98D128822730E" min_required_dependencies: 1 shape: "square" size: 1.0d - subtitle: "One of many hydrocarbons" + subtitle: "{quests.medium_voltage.mv_ethylene.subtitle}" tasks: [{ id: "29191DABA0ACE155" item: "gtceu:ethylene_bucket" type: "item" }] - title: "Ethylene" + title: "{quests.medium_voltage.mv_ethylene.title}" x: -10.0d y: 1.0d } @@ -141,44 +124,28 @@ "6EB68C28BEE24DEF" "6A304E453D74C57C" ] - description: [ - "Put your previously made &aBiomass&r into a &3MV Distillery&r to make &aEthanol&r." - "" - "You will need this for &dEthylene&r by reacting it with &aSulfuric Acid&r in a &3MV Chemical Reactor&r... unless you chose to go down the Oil path." - "" - "Once you have a hefty starting stock of Ethanol, consider making and distilling &9Fermented Biomass&r in a &3Distillation Tower&r (when you get there!) for extra chemicals." - "" - "&cDo not try&r to use Ethanol as a Power source... it's quite possibly its worst use. If it's organic &9Power&r that you want, we suggest taking a look at &dBenzene&r instead!" - ] + description: ["{quests.medium_voltage.mv_ethanol.desc}"] id: "5D9D01EF219A31C5" optional: true size: 1.0d - subtitle: "Yo, wait - that's alcohol!" + subtitle: "{quests.medium_voltage.mv_ethanol.subtitle}" tasks: [{ id: "6D7350EA7AB6CF25" item: "gtceu:ethanol_bucket" type: "item" }] - title: "Ethanol" + title: "{quests.medium_voltage.mv_ethanol.title}" x: -8.0d y: -0.5d } { dependencies: ["6A304E453D74C57C"] - description: [ - "Distillating &aOil&r will give you Fuel that you will need to desulfurize." - "" - "&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r." - "" - "To automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r." - "" - "&aNaphtha&r is a good &9Product&r source. Keep following the quests to the right for more details." - ] + description: ["{quests.medium_voltage.mv_naphtha.desc}"] icon: "gtceu:naphtha_bucket" id: "6238B2A7ED1BE5A1" optional: true size: 1.0d - subtitle: "We're still confused on how this is pronounced" + subtitle: "{quests.medium_voltage.mv_naphtha.subtitle}" tasks: [ { id: "01BF2D557A9EF2B0" @@ -189,194 +156,127 @@ { id: "75B40C6A92BB88B5" item: "gtceu:naphtha_bucket" + optional_task: true type: "item" } + { + id: "0A030191139FF66A" + type: "checkmark" + } ] - title: "Naphtha" + title: "{quests.medium_voltage.mv_naphtha.title}" x: -7.5d y: 2.5d } { dependencies: ["6238B2A7ED1BE5A1"] description: [ - "Don't panic! We'll mostly be doing this to get hydrocarbons." - "" - "There are many ways to acquire &dEthylene&r from Oil processing. It's easy to get lost in all the options and recipes!" - "" - "The best way is to steam-crack &aNaphtha&r in a &3Chemical Reactor&r. Be sure to make the &aSeverely Steam-Cracked&r version for a higher yield of Ethylene." + "{quests.medium_voltage.mv_fuel_cracking.desc.1}" "{@pagebreak}" - "Once in &6HV&r, you'll have the option to do this recipe in the &3Cracking Unit&r at 100% efficiency. Unfortunately, the recipes you are doing with the Chemical Reactor have a loss of &450%&r." - "" - "&9Note:&r All of this looks and feels terribly inefficient - we hope that's strong motivation to tier up! The &3Distillation Tower&r will be a huge upgrade for petrochem, but you're not quite there... yet. Right now, you'll have to use a &3Distillery&r to get &dEthylene&r." + "{quests.medium_voltage.mv_fuel_cracking.desc.2}" ] icon: "gtceu:severely_steam_cracked_naphtha_bucket" id: "3E2E161F8CE35138" optional: true size: 1.0d - subtitle: "Fuel and oil cracking can get complicated..." + subtitle: "{quests.medium_voltage.mv_.subtitle}" tasks: [{ id: "5687D81E6BFDC7E0" item: "gtceu:severely_steam_cracked_naphtha_bucket" type: "item" }] - title: "Fuel Cracking" + title: "{quests.medium_voltage.mv_fuel_cracking.title}" x: -8.5d y: 2.5d } { - dependencies: [ - "0DBC148D92A9F69F" - "7567E885B7166603" - "6E186F9C57155BFA" - ] + dependencies: ["22E462070F8B027A"] description: [ - "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r." - "" - "Get &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r." + "{quests.medium_voltage.mv_energy.desc.1}" "{@pagebreak}" - "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r." - "" - "Quests in the top left corner of this Chapter are for the valuable Power options." - "" - "If you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r." + "{quests.medium_voltage.mv_energy.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.3}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.4}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.5}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.6}" ] icon: "gtceu:mv_steam_turbine" id: "583D0CC4FAA4FC98" shape: "square" size: 1.0d - subtitle: "Things are 'boutta get rough" + subtitle: "{quests.medium_voltage.mv_energy.subtitle}" tasks: [{ id: "1F170291094582D6" item: { Count: 1 - id: "itemfilters:or" + id: "ftbfiltersystem:smart_filter" tag: { - items: [ - { - Count: 1b - id: "gtceu:mv_steam_turbine" - } - { - Count: 1b - id: "gtceu:mv_gas_turbine" - } - { - Count: 1b - id: "gtceu:mv_combustion" - } - ] + "ftbfiltersystem:filter": "or(item(gtceu:mv_steam_turbine)item(gtceu:mv_gas_turbine)item(gtceu:mv_combustion)item(gtceu:mv_1a_energy_converter)item(gtceu:mv_4a_energy_converter)item(gtceu:mv_8a_energy_converter)item(gtceu:lv_transformer_1a)item(gtceu:lv_transformer_2a)item(gtceu:lv_transformer_4a))" } } title: "MV Generators" type: "item" }] - title: "Electricity Generation in MV" - x: 5.5d - y: -2.0d + title: "{quests.medium_voltage.mv_energy.title}" + x: 6.0d + y: -0.5d } { dependencies: ["2AD44111B9B39C90"] description: [ - "Any Steel you encounter in day-to-day life is most likely &7Stainless Steel&r. It is extremely resilient against corrosion.&r" - "" - "Stainless Steel is the material for &6HV&r components, like Aluminium for &bMV&r and Steel for &7LV&r. It is also used in high quantities for the &3Distillation Tower&r." - "" - "It requires &cChromium&r, obtained mainly from &cRuby&r, and &2Manganese&r, obtained from &2Pyrolusite&r and others in its vein." + "{quests.medium_voltage.mv_stainless.desc.1}" "{@pagebreak}" - "Smelting Stainless Steel requires &dHV Power&r, which you likely do not have at this point. Scaling Power Production is crucial." - "" - "If you &9haven't already&r, it would be a good idea to get a second EBF going. They can share blocks, so that means your second EBF only requires &a10 Cupronickel Coils&r instead of 16." - "" - "Have one EBF run off &bMV&r for Aluminium and any other recipes requiring &bMV&r Power, and one running off &6HV&r with &32 MV Energy Hatches&r." + "{quests.medium_voltage.mv_stainless.desc.2}" ] icon: "gtceu:stainless_steel_ingot" id: "16A6AE5C770DB83A" - rewards: [{ - exclude_from_claim_all: true - id: "3973B757526393F6" - type: "choice" - }] shape: "octagon" size: 1.5d - subtitle: "HV is in your grasp" + subtitle: "{quests.medium_voltage.mv_stainless.subtitle}" tasks: [{ id: "3192FF80FBDC7A28" item: "gtceu:stainless_steel_ingot" type: "item" }] - title: "Stainless Steel" - x: 0.5d + title: "{quests.medium_voltage.mv_stainless.title}" + x: 1.5d y: 7.5d } - { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage." - "" - "Apart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!" - "{@pagebreak}" - "Transformers have 5 low voltage sides, and 1 high voltage side." - "" - "The &9normal&r Transformer can only do 1A <-> 4A conversion, but &9Adjustable&r Transformers can be changed between 1A <-> 4A, 2A <-> 8A, 4A <-> 16A, and 16A <-> 64A conversions. " - "" - "Use a &aSoft Hammer&r to change between transforming up and down, and a &aScrewdriver&r on Adjustable Transformers to change the amperage." - "" - "Higher tier Transformers will require &9Coils&r." - ] - hide_dependency_lines: true - icon: "gtceu:mv_transformer_1a" - id: "6C20A9A64C1BE0BF" - size: 1.0d - subtitle: "LV In Disguise" - tasks: [{ - id: "6C36867EB98E772D" - item: "gtceu:lv_transformer_1a" - type: "item" - }] - title: "Transformers" - x: 5.5d - y: -5.0d - } { dependencies: ["22E462070F8B027A"] - description: [ - "If you're wanting to dive into &bMV&r, start here." - "" - "The dusts created in an &3MV Mixer&r have great utility." - ] + description: ["{quests.medium_voltage.mv_mixer.desc}"] icon: "gtceu:mv_mixer" id: "4A92AFD2532EED26" shape: "square" size: 1.0d - subtitle: "Mixing more complex alloys" + subtitle: "{quests.medium_voltage.mv_mixer.subtitle}" tasks: [{ - id: "31B514C75B302F25" - item: "gtceu:mv_mixer" + id: "5BD486615F9E0097" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:mv_mixer)item(greate:aluminium_mechanical_mixer))" + } + } type: "item" }] - title: "Advanced Mixer" - x: 5.5d + title: "{quests.medium_voltage.mv_mixer.title}" + x: 6.0d y: 1.0d } { - dependencies: ["7567E885B7166603"] - description: [ - "Here's a list of the components you will need in &bMV&r. To alleviate the pain, be sure to autocraft or &dbulk-craft&r these parts, especially &aMotors&r." - "" - "Familiar with the &aEmitter&r? This tier's Emitter requires a &dFlawless Emerald&r in its recipe, which'll be only attainable with the &3Sifting Machine&r for now." - "" - "Conveyors, Pumps and Robot Arms are objective upgrades to &7LV&r versions if you use them as covers." - "" - "&6This quest unlocks a new tutorial on Overclocking in the &lTips and Tricks&r&6 tab - check it out to learn more!&r" - ] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_component.desc}"] icon: "gtceu:mv_electric_motor" id: "1BE0349B8F3890D3" - shape: "square" - size: 1.0d - subtitle: "Hated crafting these in the previous tier?" + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_component_.subtitle}" tasks: [ { id: "76A30E86C0FDF039" @@ -409,54 +309,42 @@ type: "item" } ] - title: "MV Components" - x: 0.5d - y: -2.0d + title: "{quests.medium_voltage.mv_component.title}" + x: 5.25d + y: 3.0d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: ["The Advanced Electrolyzer allows you to decompose &6far more&r Dusts. This will make getting materials such as &aAluminium&r&o a lot&r easier!"] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.electrolyzer.desc}"] icon: "gtceu:mv_electrolyzer" id: "0EFEE489906256AA" - shape: "square" - size: 1.0d - subtitle: "We made it to MV, and, well..." + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.electrolyzer.subtitle}" tasks: [{ - id: "151788F66BAD5F97" - item: "gtceu:mv_electrolyzer" + id: "1A599E57A9493E9F" + item: "gtceu:mv_chemical_reactor" type: "item" }] title: "{quests.medium_voltage.electrolyzer.title}" - x: 7.0d - y: -0.5d + x: -1.5d + y: -3.5d } { dependencies: ["22E462070F8B027A"] description: [ - "This kind soul&r will mine ores for you when placed above a vein." - "" - "Vertical range is unlimited below the miner. Horizontal range is displayed in the tooltip." - "" - "The &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest." + "{quests.medium_voltage.mv_miner.desc.1}" "{@pagebreak}" - "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient." - "" - "Our top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r. " - "" - "Place the Drum above your Generator and right-click it with a &5Screwdriver&r to auto-output into the Generator." + "{quests.medium_voltage.mv_miner.desc.2}" "{@pagebreak}" - "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein with FTB Utilities &7(open the map in the top left corner, claim the chunks with left-click, and enable force loading with shift-left-click)&r." - "" - "&9Tip:&r You can either use an &3ME Chest&r or a &32x2 Drawer&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly." + "{quests.medium_voltage.mv_miner.desc.3}" ] icon: "gtceu:mv_miner" id: "5C94CF50090D7DA0" optional: true shape: "heart" size: 1.0d + subtitle: "{quests.medium_voltage.mv_miner.subtitle}" tasks: [{ id: "431D533510584687" item: { @@ -466,57 +354,51 @@ "ftbfiltersystem:filter": "or(item(gtceu:lp_steam_miner)item(gtceu:hp_steam_miner)item(gtceu:lv_miner)item(gtceu:mv_miner)item(gtceu:hv_miner))" } } - title: "Any of the listed Miners" + title: "{quests.medium_voltage.mv_miner.task}" type: "item" }] - title: "Digital Miner" + title: "{quests.medium_voltage.mv_miner.title}" x: 0.5d y: 3.0d } { dependencies: ["4A92AFD2532EED26"] - description: [ - "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins." - "" - "Other Steel alloys include Blue Steel, Red Steel, and Black Steel!" - "" - "Take some Blue Steel free of charge - it's twice as durable as Steel." - ] + description: ["{quests.medium_voltage.mv_steel_alloy.desc}"] icon: "gtceu:vanadium_steel_ingot" id: "682C26579EDDCA76" shape: "square" size: 1.0d - subtitle: "Steel Your Heart" + subtitle: "{quests.medium_voltage.mv_steel_alloy.subtitle}" tasks: [{ count: 4L id: "2E6C71CB2E5EEAC7" item: "gtceu:vanadium_steel_ingot" type: "item" }] - title: "Steel Alloys" + title: "{quests.medium_voltage.mv_steel_alloy.title}" x: 7.0d y: 1.0d } { dependencies: ["682C26579EDDCA76"] - description: [ - "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r." - "" - "We recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time." - "" - "Lubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r." - ] + description: ["{quests.medium_voltage.mv_cutter.desc}"] icon: "gtceu:mv_cutter" id: "5CBBBFD1FBBE95CE" shape: "octagon" size: 2.0d - subtitle: "Upgrades, people, upgrades!" + subtitle: "{quests.medium_voltage.mv_cutter.subtitle}" tasks: [{ - id: "2AFB7F9BD4D82974" - item: "gtceu:mv_cutter" + id: "01D8E995ED40F6CF" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:mv_cutter)item(greate:aluminium_mechanical_saw))" + } + } type: "item" }] - title: "Advanced Cutter" + title: "{quests.medium_voltage.mv_cutter.title}" x: 7.0d y: 4.0d } @@ -525,21 +407,18 @@ "5CBBBFD1FBBE95CE" "71412502C81F21C1" ] - description: [ - "The &3Laser Engraver&r engraves patterns into &9Silicon Wafers&r based on the type of &9Lens&r it is given. After the wafers are engraved, they must be passed through a &3Cutting Machine&r to turn them into components ready to be put into Circuits." - "" - "Higher tier Engravers can etch more complex wafers for more efficient Circuits." - ] + description: ["{quests.medium_voltage.mv_laser_engraver.desc}"] icon: "gtceu:mv_laser_engraver" id: "315169840E06110F" shape: "octagon" size: 2.0d + subtitle: "{quests.medium_voltage.mv_laser_engraver.subtitle}" tasks: [{ id: "75E27D981733ED44" item: "gtceu:mv_laser_engraver" type: "item" }] - title: "Laser Engraving" + title: "{quests.medium_voltage.mv_laser_engraver.title}" x: 7.0d y: 8.0d } @@ -548,117 +427,58 @@ "75F38905DEA60F15" "16A1EF8B80A96633" ] - description: [ - "A &7LV&r Battery Buffer and two &7LV&r Energy Hatches likely won't cut it anymore. Let's remedy that!" - "" - "Upgrade your Electric Blast Furnace with a &3MV Energy Hatch&r. Now, you can run it with &bMV&r Generators without having to mess around with &3Transformers&r." - ] + description: ["{quests.medium_voltage.mv_energy_hatch.desc}"] icon: "gtceu:mv_energy_input_hatch" id: "2AD44111B9B39C90" - rewards: [{ - count: 24 - id: "42B5E0E29F987E16" - item: "gtceu:annealed_copper_single_wire" - type: "item" - }] shape: "octagon" size: 1.5d - subtitle: "LV is so old-school!" + subtitle: "{quests.medium_voltage.mv_energy_hatch.subtitle}" tasks: [{ id: "1C69557EB4F9E50F" item: "gtceu:mv_energy_input_hatch" type: "item" }] - title: "Upgrade your EBF!" + title: "{quests.medium_voltage.mv_energy_hatch.title}" x: 3.0d y: 10.0d } { dependencies: ["22E462070F8B027A"] - description: [ - "The &3Assembler&r is a staple for every Tier; an important goal to unlock more recipes and progress further into the Age. Many in the community see crafting a voltage tier's Assembler as a sign of &oproperly&r reaching said voltage." - "" - "That being said, welcome to &bMV&r!" - "" - "The &bMV &3Assembler&r unlocks &eTransistors&r, &eCapacitors&r and &eInductors&r, used for the next tiers of Circuits." - ] + description: ["{quests.medium_voltage.mv_assembler.desc}"] icon: "gtceu:mv_assembler" id: "75F38905DEA60F15" shape: "octagon" size: 2.0d - subtitle: "Assengers, Avemble" + subtitle: "{quests.medium_voltage.mv_assembler.subtitle}" tasks: [{ id: "2396FECF2A11AA8E" item: "gtceu:mv_assembler" type: "item" }] - title: "Advanced Assembler" + title: "{quests.medium_voltage.mv_assembler.title}" x: 3.0d - y: 4.0d + y: 5.0d } { dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "GregTech doesn't provide ways to farm plants or trees, so we made a custom multiblock for the modpack!" - "" - "The multiblock &3Greenhouse&r will be your source of &aWood&r and other plants if you wish." - "" - "Its &aWood&r production should be enough to run &32 Pyrolyse Ovens&r at their lowest Power." - "" - "You can also use this for automated &aResin&r. The yields are kept low to incentivize other rubber sources later in the game." - "{@pagebreak}" - "&9Note: &rWith &d40 EU/t&r recipes, it needs either 1 &bMV&r energy hatch or 2 &7LV&r energy hatches. Multiblocks will &cnot&r use 2A of one tier to reach the next one for recipe voltage minimums. " - "" - "In other words, the controller needs to say at least \"&bMV&r\" in the GUI to run recipes which say \"&bMV&r\" in EMI, even if they can draw enough EU/t with a lower tier hatch configuration." - "" - "&9Note:&r The structure requires a lot of &9Wrought Iron&r. Make sure you have an &3Arc Furnace&r for that." - "{@pagebreak}" - "&l&3Lore:&r&o We originally implemented a Chemical Reactor recipe for wood in the modpack to solve the tree problem. Our implementation turned out to be completely busted, so we decided that a rebalance was due. Hopefully, the Greenhouse is a happy middle ground." - ] - icon: "minecraft:oak_sapling" - id: "2655B72C9FF3B372" - shape: "octagon" - size: 2.0d - subtitle: "The power of KubeJS" - tasks: [{ - id: "35CFA225ADAD5D06" - item: "gtceu:greenhouse" - type: "item" - }] - title: "Greenhouse" - x: -2.5d - y: -2.0d - } - { - dependencies: [ - "1646BF9194100E57" "2AD44111B9B39C90" - "66805BB78A828C00" - ] - description: [ - "&3Kanthal Heating Coils&r are the next major step in progression. They increase the temperature of your &3Blast Furnace&r to &d2,700K&r, allowing you to process new materials. They may also &eaccelerate&r less hot recipes - check the quest to the top-left for details." - "" - "You will need a staggering &a128 Ingots&r for a full set of Coils, which will easily take over an hour. We advise that you move on to other projects while your &3EBF&r is hard at work - that or build another one!" - "{@pagebreak}" - "An &3MV Chemical Bath&r is required to cool &cHot Ingots&r down. They're &chot&r when held, as the name implies. &o&7Maybe you should save your hands and automate this...&r" - "" - "With the construction of a &3Kanthal EBF&r, you're now able to make &dSilicon Ingots&r, opening up the vast majority of AE2!" + "4058958C4743E522" + "1646BF9194100E57" ] + description: ["{quests.medium_voltage.mv_kanthal_coil.desc}"] + hide_dependency_lines: false icon: "gtceu:kanthal_coil_block" id: "1C55AE6AD5BDE304" shape: "square" size: 1.0d - subtitle: "Is it getting hot in here?" + subtitle: "{quests.medium_voltage.mv_kanthal_coil.subtitle}" tasks: [{ count: 16L id: "0737586F9DFFC0FE" item: "gtceu:kanthal_coil_block" type: "item" }] - title: "Kanthal Coils" + title: "{quests.medium_voltage.mv_kanthal_coil.title}" x: 1.5d y: 10.0d } @@ -668,33 +488,29 @@ "1E7BF65DB32B8B3E" "5DD01CBADFFF3571" ] - description: [ - "Alright... technically, obtaining &6HV&r Circuits and Stainless Steel lets you progress to &6HV&r - but let's not rush things." - "" - "The first thing you should make with these is a &3MV Circuit Assembler&r to unlock the new tier of Circuits right away; cheaper recipes is the &dreal payoff&r here." - ] + description: ["{quests.medium_voltage.mv_first_hv.desc}"] icon: "gtceu:advanced_integrated_circuit" id: "26394C1290D70AB6" shape: "square" size: 1.0d - subtitle: "...but hold on before getting too giddy" + subtitle: "{quests.medium_voltage.mv_first_hv.subtitle}" tasks: [{ id: "75EB5730046212D0" item: "gtceu:advanced_integrated_circuit" type: "item" }] - title: "First HV Circuits!" + title: "{quests.medium_voltage.mv_first_hv.title}" x: 3.0d y: 16.5d } { dependencies: ["315169840E06110F"] - description: ["&aRandom Access Memory&r is required for more advanced Electronic Components."] + description: ["{quests.medium_voltage.mv_ram.desc}"] icon: "gtceu:ram_chip" id: "1E7BF65DB32B8B3E" shape: "square" size: 1.0d - subtitle: "Random Access Memories" + subtitle: "{quests.medium_voltage.mv_ram.subtitle}" tasks: [ { id: "40E0E6FD45AEC7B1" @@ -708,77 +524,64 @@ type: "item" } { - count: 32L id: "28AC6209CFD8345C" item: "gtceu:ram_chip" type: "item" } ] - title: "Download more RAM" + title: "{quests.medium_voltage.mv_ram.title}" x: 8.5d y: 10.0d } { dependencies: ["6F6D2829FC42F21C"] description: [ - "The Integrated Logic Circuit is an alternate &7LV &aCircuit&r, which is easier to mass-produce, and can be upgraded to &bMV&r (and then &6HV&r)." - "" - "&9Note:&r This is not a strict upgrade to the cost of Circuits - you would need to get to the next Tier for that, just slightly further down in &bMV&r. It is still an important upgrade, and is required to get to &6HV circuits&r." + "{quests.medium_voltage.mv_more_lv.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o The circuit progression in GTCEu is mostly based on GT5u's progression. It has been rebalanced to not be as painful. &lSpecifically&r&o this circuit tier, which was a trap!" + "{quests.medium_voltage.mv_more_lv.desc.2}" ] icon: "gtceu:basic_integrated_circuit" id: "5C17BF90DA2AAEEE" shape: "square" size: 1.0d - subtitle: "You have unlocked a new tier of Circuits!" + subtitle: "{quests.medium_voltage.mv_more_lv.subtitle}" tasks: [{ id: "2301CD2A841F17D9" item: "gtceu:basic_integrated_circuit" type: "item" }] - title: "More LV Circuits" + title: "{quests.medium_voltage.mv_more_lv.title}" x: 3.0d y: 12.0d } { dependencies: ["5C17BF90DA2AAEEE"] - description: ["The &bMV&r Circuit for the Integrated Tier."] + description: ["{quests.medium_voltage.mv_more_mv.desc}"] icon: "gtceu:good_integrated_circuit" id: "60D7F6C1EE918B66" shape: "square" size: 1.0d - subtitle: "More... I demand more!" + subtitle: "{quests.medium_voltage.mv_more_mv.subtitle}" tasks: [{ id: "0622E51767B0AB58" item: "gtceu:good_integrated_circuit" type: "item" }] - title: "More MV Circuits" + title: "{quests.medium_voltage.mv_more_mv.title}" x: 3.0d y: 14.0d } { dependencies: [ - "4073577B7EF9B593" "1E9BE8D3F8A602DC" + "3DB03EA806B2D8A1" ] - description: [ - "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r." - "" - "After making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving." - "" - "The recommended &aSilicon&r source at this point would be... hm, either &dGlass Dust&r or &dSodalite&r." - "" - "&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r." - "" - "With that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them." - ] + description: ["{quests.medium_voltage.mv_silicon_boule.desc}"] icon: "gtceu:silicon_boule" id: "71412502C81F21C1" shape: "square" size: 1.0d - subtitle: "These wafers are fully fungible" + subtitle: "{quests.medium_voltage.mv_silicon_boule.subtitle}" tasks: [ { id: "1A18D503A429CC17" @@ -792,62 +595,41 @@ type: "item" } ] - title: "Silicon Lottery" - x: 9.5d + title: "{quests.medium_voltage.mv_silicon_boule.title}" + x: 9.0d y: 8.0d } { dependencies: ["26394C1290D70AB6"] - description: [ - "As is common for every tier, the &3Circuit Assembler&r is an essential part of progression, always opening up a new Tier of circuits." - "" - "At this point you should be placing an &3Extractor&r next to your Circuit Assembler. Send off dozens of stacks of &aSoldering Alloy&r Ingots, and you won't have to worry about refilling again." - ] + description: ["{quests.medium_voltage.mv_circuit_assembler.desc}"] icon: "gtceu:mv_circuit_assembler" id: "0DE5C3FBC9A6A690" - rewards: [{ - count: 40 - id: "484745BF48673036" - item: "gtceu:soldering_alloy_dust" - type: "item" - }] shape: "octagon" size: 2.0d - subtitle: "Yippee, yahoo" + subtitle: "{quests.medium_voltage.mv_circuit_assembler.subtitle}" tasks: [{ id: "7ED7103DAF7E4413" item: "gtceu:mv_circuit_assembler" type: "item" }] - title: "Advanced Circuit Assembler" + title: "{quests.medium_voltage.mv_circuit_assembler.title}" x: 1.0d y: 14.0d } { dependencies: ["26394C1290D70AB6"] - description: [ - "At its lowest power (Cupronickel coils and &7LV&r Voltage), the &dMulti Smelter&r smelts 32 items in just 12 seconds - equivalent to &926.7 Furnaces&r, or 3.3 Steam Ovens!" - "" - "If that wasn't already enough to convince you, standard &aoverclocks&r can be applied with sufficient voltage." - "" - "And even better - higher tier &3Coils&r increase the amount of items it can smelt in &dparallel&r!" - ] + description: ["{quests.medium_voltage.mv_multi_smelter.desc}"] icon: "gtceu:multi_smelter" id: "6DDDE2268B691F74" - rewards: [{ - id: "006F83AC08E87057" - item: "gtceu:advanced_integrated_circuit" - type: "item" - }] shape: "octagon" size: 2.0d - subtitle: "Possibly the most powerful furnace you've seen" + subtitle: "{quests.medium_voltage.mv_multi_smelter.subtitle}" tasks: [{ id: "0A42FE4B72071451" item: "gtceu:multi_smelter" type: "item" }] - title: "Ultimate Smelter" + title: "{quests.medium_voltage.mv_multi_smelter.title}" x: 6.0d y: 16.5d } @@ -856,24 +638,18 @@ "4600221BF0A30C3A" "0DE5C3FBC9A6A690" ] - description: [ - "&6The best LV Circuits&r! You can start to churn these guys out, as you'll be making them for the rest of the game." - "" - "Try to keep a stockpile of these crafted at all times - making these on-demand can take a while." - "" - "Reaching &5EV&r will unlock methods to make them even cheaper." - ] + description: ["{quests.medium_voltage.mv_best_lv.desc}"] icon: "gtceu:microchip_processor" id: "5E76D4C24026157D" shape: "octagon" size: 1.5d - subtitle: "It Feels Good to be the Best" + subtitle: "{quests.medium_voltage.mv_best_lv.subtitle}" tasks: [{ id: "4E076080D7B23372" item: "gtceu:microchip_processor" type: "item" }] - title: "Best LV Circuits" + title: "{quests.medium_voltage.mv_best_lv.title}" x: -1.0d y: 12.0d } @@ -882,22 +658,18 @@ "4600221BF0A30C3A" "0DE5C3FBC9A6A690" ] - description: [ - "&6The best MV Circuits&r! You will be making these for the remainder of the game." - "" - "Eventually (in &9IV&r), they will become even cheaper." - ] + description: ["{quests.medium_voltage.mv_best_mv.desc}"] icon: "gtceu:micro_processor" id: "38DE506FF5B32031" shape: "octagon" size: 1.5d - subtitle: "MV has peaked" + subtitle: "{quests.medium_voltage.mv_best_mv.subtitle}" tasks: [{ id: "120B63C2E40D359A" item: "gtceu:micro_processor" type: "item" }] - title: "Best MV Circuits" + title: "{quests.medium_voltage.mv_best_mv.title}" x: -1.0d y: 14.0d } @@ -906,117 +678,87 @@ "38DE506FF5B32031" "3DFFA8F91452C62A" ] - description: [ - "Better &6HV&r Circuits - much &dcheaper&r and easier to make than before." - "" - "You should now be &aready to move on&r to the HV Chapter, unless you're yet to scale up your Power Production." - ] + description: ["{quests.medium_voltage.mv_second_hv.desc}"] icon: "gtceu:micro_processor_assembly" id: "5063FDFFBE3E4855" shape: "gear" size: 3.0d - subtitle: "On that HV grind" + subtitle: "{quests.medium_voltage.mv_second_hv.subtitle}" tasks: [{ id: "2FE33281A44C34F6" item: "gtceu:micro_processor_assembly" type: "item" }] - title: "More HV Circuits" + title: "{quests.medium_voltage.mv_second_hv.title}" x: -1.0d y: 16.5d } { dependencies: ["10FB27DD3C7BEC2F"] - description: [ - "A Circuit Component that you can now make thanks to the &3MV Assembler&r." - "" - "If you want the cheapest recipe, &aNickel-Zinc Ferrite&r is the way to go." - ] + description: ["{quests.medium_voltage.mv_inductor.desc}"] icon: "gtceu:inductor" id: "3DFFA8F91452C62A" shape: "square" size: 1.0d - subtitle: "Z = jwL" + subtitle: "{quests.medium_voltage.mv_inductor.subtitle}" tasks: [{ id: "6690451CCAB62CA1" item: "gtceu:inductor" type: "item" }] - title: "Inductors" + title: "{quests.medium_voltage.mv_inductor.title}" x: -5.0d y: 16.5d } { dependencies: ["6BB98D128822730E"] - description: [ - "If you want to be less fancy, just call it plastic." - "" - "For the polymerization process, add &aOxygen&r, which gives better returns than Air, then solidify like you would with Rubber." - "" - "&aPolyethylene (PE)&r is the key to unlocking &6many new things&r. It's commonly used as &dSheets&r, or in &dFluid&r form." - "" - "&l&3Lore:&r&o The OreDict and fluid name for Polyethylene in 1.12.2 GTCEu was &bplastic&f, for cross-mod compatibility." - ] + description: ["{quests.medium_voltage.mv_polyethylene.desc}"] icon: "gtceu:polyethylene_plate" id: "10FB27DD3C7BEC2F" shape: "gear" size: 3.0d - subtitle: "Baby's first polymer!" + subtitle: "{quests.medium_voltage.mv_polyethylene.subtitle}" tasks: [{ id: "15E5F008339B8964" item: "gtceu:polyethylene_plate" type: "item" }] - title: "Polyethylene" + title: "{quests.medium_voltage.mv_polyethylene.title}" x: -10.0d y: 10.0d } { dependencies: ["10FB27DD3C7BEC2F"] - description: [ - "No, but seriously." - "" - "This is the &cu&6l&et&ai&bm&9a&5t&4e&r portable Fluid storage solution. &64,000 buckets of storage&r - in one single block!" - "" - "Like Drums, Super Tanks &6keep their fluids when broken&r, and can be cleared in the crafting grid." - "" - "If you hunger for &9even more&r storage, take a look at higher tier Super Tanks or AE2 Fluid Storage Cells." - ] + description: ["{quests.medium_voltage.mv_tank.desc}"] icon: "gtceu:lv_super_tank" id: "6C53B01A05FFF1DC" optional: true shape: "heart" size: 2.0d - subtitle: "Super Tanks are OP!" + subtitle: "{quests.medium_voltage.mv_tank.subtitle}" tasks: [{ id: "47EA273D728C158F" item: "gtceu:lv_super_tank" type: "item" }] - title: "Super Tank" + title: "{quests.medium_voltage.mv_tank.title}" x: -14.0d y: 10.0d } { dependencies: ["10FB27DD3C7BEC2F"] - description: [ - "&aPolyvinyl Chloride (PVC)&r is the 3rd-most produced plastic in real life. Here in CEu, it can be substituted for Polyethylene in the production of &aPlastic Circuit Boards&r and other items to increase the yield. It is required from &5EV&r onwards to wrap Cables." - "" - "PVC item pipes also have the &6highest throughput&r available for a while, but most of your setups right now won't need such speed. Still, it's good to keep this knowledge in your pocket." - "" - "&9Pro tip:&r The fluid form of PVC is never used in base GTCEu, so feel free to solidify all of it into sheets." - ] + description: ["{quests.medium_voltage.mv_pvc.desc}"] icon: "gtceu:polyvinyl_chloride_plate" id: "40408FFD02134148" shape: "square" size: 1.0d - subtitle: "You've already made one polymer, what's two?" + subtitle: "{quests.medium_voltage.mv_pvc.subtitle}" tasks: [{ id: "72696AD2B77F805B" item: "gtceu:polyvinyl_chloride_plate" type: "item" }] - title: "Polyvinyl Chloride" + title: "{quests.medium_voltage.mv_pvc.title}" x: -5.0d y: 11.0d } @@ -1025,16 +767,12 @@ "4353AB0E20601AEC" "10FB27DD3C7BEC2F" ] - description: [ - "At this point, you have all the tools available to start making Plastic Boards. Higher-tier polymers in future will increase your PCB yields substantially." - "" - "The recipe chains are starting to get pretty long, so we recommend processing large batches in two dedicated &3Chemical Reactors&r." - ] + description: ["{quests.medium_voltage.mv_boards.desc}"] icon: "gtceu:plastic_printed_circuit_board" id: "4600221BF0A30C3A" shape: "square" size: 1.0d - subtitle: "It's a Casio on a Plastic Board" + subtitle: "{quests.medium_voltage.mv_boards.subtitle}" tasks: [ { id: "68B5E2667EDAE895" @@ -1047,76 +785,75 @@ type: "item" } ] - title: "Plastic Boards" + title: "{quests.medium_voltage.mv_boards.title}" x: -5.0d y: 12.0d } { dependencies: [ - "5263F866638D875C" + "32B08E6F414A00C0" "3D98819A799D2E64" + "0EFEE489906256AA" + "79E8DC4D9B5F6B97" ] + dependency_requirement: "one_completed" description: [ - "&aSodium Persulfate&r can be used in &9Ore Processing&r in the &3Chemical Bath&r to get various bonus outputs you would not normally obtain. It's completely optional, but pretty rewarding." - "" - "&lWait, stop! That's only a distraction&r - the real topic of this Quest is..." - "" - "&aSodium Persulfate&r and &aIron III Chloride&r are used to make cheaper &9Good Circuit Boards&r, as their inclusion cuts Silver usage by a factor of four." - "" - "They're also &drequired&r to make &9Plastic Circuit Boards&r." + "{quests.medium_voltage.mv_sodium_iron.desc.1}" "{@pagebreak}" - "Making &aSodium Persulfate&r will yield &aHydrochloric Acid&r as a coproduct, which you may re-use to make &aIron III Chloride&r. This should the best approach right now, but the decision is entirely yours." - "" - "With more automation later in the game, Iron III Chloride will be the cheaper and more straight forward path." - "" - "This Quest requires &eboth&r Fluids to complete. You'll need both anyway..." + "{quests.medium_voltage.mv_sodium_iron.desc.2}" ] + hide_dependency_lines: true icon: "gtceu:iron_iii_chloride_bucket" id: "4353AB0E20601AEC" shape: "square" size: 1.0d - subtitle: "Let's etch some Copper off Circuit Boards!" + subtitle: "{quests.medium_voltage.mv_sodium_iron.subtitle}" tasks: [ { id: "118468CD578081CF" item: "gtceu:sodium_persulfate_bucket" + optional_task: true type: "item" } { id: "1B7EDF573783D986" item: "gtceu:iron_iii_chloride_bucket" + optional_task: true type: "item" } + { + id: "06279C01C8950D46" + type: "checkmark" + } ] - title: "Sodium Persulfate / Iron III Chloride" + title: "{quests.medium_voltage.mv_sodium_iron.title}" x: -5.0d y: 14.0d } { - dependencies: ["3D98819A799D2E64"] - description: [ - "EMI might look a little overwhelming here, so we'll go through the best path for Sulfuric Acid here." - "" - "Making &eSulfuric Acid&r is a three step process. It is used in many important reactions, so you should automate its production ASAP." - "{@pagebreak}" - "To automate it, you will need &3three LV Chemical Reactors&r. We would recommend building a dedicated setup somewhere with &3a single LV Generator&r to power all three machines. You can then spaghetti your pipes to handle input and output &m...or simply use AE2&r." - "" - "&9-&r Step 1: React &aSulfur&r with &bOxygen&r to form &aSulfur Dioxide&r." - "&9-&r Step 2: React &aSulfur Dioxide&r with more &bOxygen&r to form &aSulfur Trioxide&r." - "&9-&r Step 3: React &aSulfur Trioxide&r with &bWater&r to form &eSulfuric Acid&r." - "{@pagebreak}" - "&l&3Lore:&r&o GregTech 5's Chemical Reactor only had one Fluid slot. To circumvent that, they would do &dcell chemistry&f. The way you would automate Sulfuric Acid was by having one cell travel from machine to machine and then loop back to its starting position. A somewhat fun and interesting automation challenge, but also a chore!" + dependencies: [ + "3D98819A799D2E64" + "0EFEE489906256AA" ] + dependency_requirement: "one_completed" + description: [ + "{quests.medium_voltage.mv_sulfuric_acid.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_sulfuric_acid.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_sulfuric_acid.desc.3}" + ] + hide_dependency_lines: true id: "316FF60D6FFE97CE" shape: "square" size: 1.0d - subtitle: "\"...what he thought was H2O was H2SO4!\"" + subtitle: "{quests.medium_voltage.mv_sulfuric_acid.subtitle}" tasks: [{ id: "06B5F04DEFC12458" item: "gtceu:sulfuric_acid_bucket" type: "item" }] - title: "Sulfuric Acid" + title: "{quests.medium_voltage.mv_sulfuric_acid.title}" x: -10.0d y: -0.5d } @@ -1125,29 +862,18 @@ "694DF1C33B53A0D5" "042E4EF7CF366C0C" ] - description: [ - "Obtain &9Hydrochloric Acid&r by mixing &aHydrogen&r and &aChlorine&r." - "" - "This acid is also obtained as waste from a lot of reactions involving &aChlorine&r. Depending on your setups, you may never need to produce it directly." - "{@pagebreak}" - "&cNote:&r We have a $medicine command on our Discord:" - "" - "\"&b&oDo not attempt this in real life - it is not only illegal, but also stupidly dangerous&r\"." - "" - "This applies to toying with chemicals. Please don't do it." - "" - "Side note - we can guarantee you have a sample of this with you right now! It's in your stomach as a part of gastric acid." - ] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_hydrochloric.desc}"] icon: "gtceu:hydrochloric_acid_bucket" id: "64CACABB48635904" size: 1.0d - subtitle: "You'll need a lot of this!" + subtitle: "{quests.medium_voltage.mv_hydrochloric.subtitle}" tasks: [{ id: "34147C1DD7B8DE55" item: "gtceu:hydrochloric_acid_bucket" type: "item" }] - title: "Hydrochloric Acid" + title: "{quests.medium_voltage.mv_hydrochloric.title}" x: -10.0d y: -2.5d } @@ -1156,52 +882,34 @@ "316FF60D6FFE97CE" "64CACABB48635904" ] + dependency_requirement: "one_completed" description: [ - "You may notice that some fluids say they are \"&aAcidic&r\", with &9Sulfuric Acid&r being one of them." - "" - "This means that many fluid pipes will not be able to transport them safely!" - "" - "At &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place." - "" - "&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r." + "{quests.medium_voltage.mv_aciditic.desc.1}" "{@pagebreak}" - "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction." - "" - "&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!" - "" - "&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6." + "{quests.medium_voltage.mv_aciditic.desc.2}" ] icon: "gtceu:acid_hazard_sign_block" id: "079442C113D54856" shape: "circle" size: 1.0d - subtitle: "...if you don't read this quest." + subtitle: "{quests.medium_voltage.mv_aciditic.subtitle}" tasks: [{ id: "2D0DE3FB6E5E4146" - title: "I'm an acid professional, don't worry" + title: "{quests.medium_voltage.mv_aciditic.task}" type: "checkmark" }] - title: "It will Melt Your Flesh" + title: "{quests.medium_voltage.mv_aciditic.title}" x: -10.0d y: -1.5d } { - dependencies: [ - "63CD0236B337EAAD" - "6D9D54FAB21EC086" - ] - description: [ - "&bMV&r Batteries will appeal to you if you want to buffer Energy, just like &7LV&r." - "" - "The cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you should use whatever you have the most of. The difference in capacity isn't &7THAT&r huge, after all!" - "" - "Get &eeither&r Battery to complete the Quest." - ] + dependencies: ["6F898B934BB79016"] + description: ["{quests.medium_voltage.mv_batteries.desc}"] icon: "gtceu:hv_battery_hull" id: "2202AA5DC6DB0A26" shape: "square" size: 1.0d - subtitle: "Baby Got Battery" + subtitle: "{quests.medium_voltage.mv_batteries.subtitle}" tasks: [{ id: "5FEE671A75766B78" item: { @@ -1214,238 +922,85 @@ title: "Any MV Battery" type: "item" }] - title: "Better Batteries" - x: 5.5d - y: -4.0d + title: "{quests.medium_voltage.mv_batteries.title}" + x: 9.0d + y: -0.5d } { dependencies: ["22E462070F8B027A"] - description: [ - "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace." - "" - "The Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio." - "" - "The Extruder can make &6Bolts&r, &6&6Small Gears&r, &6Gears&r, and &6&6Rings&r at the highest efficiency in a single step!" - "" - "You may also like to use it for &dPipes&r, &dLong Rods&r, and &dRotors&r." - ] + description: ["{quests.medium_voltage.mv_extruder.desc}"] icon: "gtceu:mv_extruder" id: "22B5AD670496C02D" - rewards: [ - { - id: "0E6CAED1ED976D9E" - item: "gtceu:small_gear_extruder_mold" - type: "item" - } - { - id: "0A0BD551FFBC2E1C" - item: "gtceu:gear_extruder_mold" - type: "item" - } - ] shape: "octagon" size: 2.0d - subtitle: "The biggest upgrade you'll make" + subtitle: "{quests.medium_voltage.mv_extruder.subtitle}" tasks: [{ id: "73E8504BA235C4BF" item: "gtceu:mv_extruder" type: "item" }] - title: "Advanced Extruder" + title: "{quests.medium_voltage.mv_extruder.title}" x: 3.0d - y: -2.0d + y: -3.5d } { dependencies: ["75F38905DEA60F15"] - description: [ - "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells." - "" - "They can hold any fraction of Fluid - up to &d32 buckets&r!" - ] + description: ["{quests.medium_voltage.mv_cells.desc}"] icon: "gtceu:aluminium_fluid_cell" id: "53B0D08DB90EC369" optional: true shape: "heart" size: 1.0d - subtitle: "Like cells... only larger!" + subtitle: "{quests.medium_voltage.mv_cells.subtitle}" tasks: [{ id: "105EA8621A99C1EC" item: "gtceu:aluminium_fluid_cell" type: "item" }] - title: "Large Cells" + title: "{quests.medium_voltage.mv_cells.title}" x: 4.5d - y: 4.0d + y: 5.0d } { dependencies: ["22E462070F8B027A"] description: [ - "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r." - "" - "It pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated." - "" - "Fluid veins are stored within &cchunk-sized regions&r. Each vein has a different fluid, but they are mostly types of Oil." - "" - "You can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r." + "{quests.medium_voltage.mv_fluid_rig.desc.1}" "{@pagebreak}" - "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r." - "" - "When drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein." - "" - "A &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate." + "{quests.medium_voltage.mv_fluid_rig.desc.2}" "{@pagebreak}" - "&lWhat you can find in the &2Overworld&r&l:&r" - "" - "&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant." - "&9Light Oil:&r richer in &aRefinery Gas&r, usable for power." - "&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche." - "&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products." - "&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required." - "&l&9Salt Water:&r grants &aSodium&r and &aChlorine&r, useful later." + "{quests.medium_voltage.mv_fluid_rig.desc.3}" "{@pagebreak}" - "&lWhat you can find in the &cNether&r&l:&r" - "" - "&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein." - "&9Lava:&r hopefully, you know what this is." - "" - "When starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig." + "{quests.medium_voltage.mv_fluid_rig.desc.4}" ] icon: "gtceu:mv_fluid_drilling_rig" id: "05ADBAE5B6F38956" optional: true shape: "square" size: 1.0d - subtitle: "Fluid Drilling Rigs in CEu!" + subtitle: "{quests.medium_voltage.mv_fluid_rig.subtitle}" tasks: [{ id: "3FB527F5B10381D2" item: "gtceu:mv_fluid_drilling_rig" type: "item" }] - title: "Fluid Drilling Rigs" + title: "{quests.medium_voltage.mv_fluid_rig.title}" x: -2.5d y: 2.5d } - { - dependencies: ["05ADBAE5B6F38956"] - description: [ - "Get any kind of &3Pump&r, place it above an Oil spout and... give it some power." - "" - "Do &cnot&r pump above an Ocean, as the pump will attempt to pull water, resulting in getting the pump stuck. Sorry!" - "{@pagebreak}" - "Each Oil deposit can have between &63,000&r and &69,200&r buckets of Oil, which is a LOT! Refining the Oil&r onsite into either &aLight Fuel&r or &aDiesel&r (or both) is perfectly viable. The next few Quests will explain each type's pros and cons." - "" - "Store any obtained Oil in &3Drums&r, but you would do yourself a favour to use a &3Super Tank&r as soon as you can make them." - "" - "&cWarning: &rDo not forget to &dchunkload&r with FTB Utilities (open the map in the top left corner, claim the chunks with left-click, and enable force loading with shift-left-click)." - "{@pagebreak}" - "&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r" - "" - "For now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r." - "" - "Oil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options." - "" - "If you chose this path, you should use it for both Power and Ethylene." - "" - "Oil spouts are a &6great starting point&r - they will tide you over until you unlock Fluid Drilling Rigs." - "{@pagebreak}" - "&l&3Lore:&r&o Oil geysers were originally from Buildcraft. If you played a GregTech 5 modpack &cwithout&f Buildcraft, you needed to use the Fluid Rig and tap randomly to try and get lucky, or wait until &6HV&f, where prospecting for fluids was available." - ] - icon: "gtceu:oil_bucket" - id: "0774EC59CD3DD7A5" - optional: true - shape: "square" - size: 1.0d - subtitle: "Ever mined into an Oil deposit?" - tasks: [ - { - id: "21FF6E45F9AC5E76" - item: { - Count: 1 - id: "itemfilters:or" - tag: { - items: [ - { - Count: 1b - id: "gtceu:lv_pump" - } - { - Count: 1b - id: "gtceu:mv_pump" - } - { - Count: 1b - id: "gtceu:hv_pump" - } - { - Count: 1b - id: "gtceu:ev_pump" - } - ] - } - } - title: "Any Pump will do" - type: "item" - } - { - id: "1095B3DE28330980" - item: { - Count: 1 - id: "itemfilters:or" - tag: { - items: [ - { - Count: 1b - id: "gtceu:oil_bucket" - } - { - Count: 1b - id: "gtceu:oil_heavy_bucket" - } - { - Count: 1b - id: "gtceu:oil_medium_bucket" - } - { - Count: 1b - id: "gtceu:oil_light_bucket" - } - ] - } - } - title: "Any Oil bucket" - type: "item" - } - ] - title: "US Simulator" - x: -3.0d - y: 4.0d - } { dependencies: ["6A304E453D74C57C"] - description: [ - "Underground, you may come across pure Oilsands ore veins. You can &3centrifuge&r the Dust to get &aOil&r." - "" - "&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r" - "" - "For now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r." - "" - "Oil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options." - "" - "If you chose this path, you should use it for both Power and Ethylene." - "" - "Oilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs." - ] + description: ["{quests.medium_voltage.mv_oilsands.desc}"] id: "575B07D390D9D079" optional: true shape: "square" size: 1.0d - subtitle: "This quest was sponsored by the US Military" + subtitle: "{quests.medium_voltage.mv_oilsands.subtitle}" tasks: [{ id: "1838F842C9D12880" item: "gtceu:oilsands_dust" type: "item" }] - title: "America Simulator" + title: "{quests.medium_voltage.mv_oilsands.title}" x: -2.5d y: 1.0d } @@ -1456,34 +1011,18 @@ "05ADBAE5B6F38956" ] description: [ - "Before we start, here's some important information if you're aiming to make Ethylene:" - "" - "Taking the &aOil&r route will require &oat least&r a &3LV Distillery&r." - "" - "With the &aBiomass&r route, you will &lneed&r a &3MV Distillery&r." - "" - "Get &eeither&r to complete this quest." + "{quests.medium_voltage.mv_distillery.desc.1}" "{@pagebreak}" - "Got all that? &6Alright&r! Let's discuss a complex topic: &9Distillation&r. We'll try to help you understand how and why the &aEMI&r recipes are the way they are, so stick with us." - "" - "Nearly all the &3Distillery&r recipes are duplicates from the &3Distillation Tower&r, except that they only have one Fluid output, and void everything else." - "" - "In other words, you could argue the &3Distillery&r is an &dinferior&r &3Distillation Tower&r." + "{quests.medium_voltage.mv_distillery.desc.2}" "{@pagebreak}" - "This doesn't mean that the &3Distillery&r is the worse of the two. It is unlocked earlier, and it is &dsmaller&r, &dcheaper&r, and &dmore energy efficient&r per recipe." - "" - "Hell, in many cases, you won't even mind losing the other Fluids." - "" - "&3Distilleries&r are an essential component for power generation, whether you pick &aDiesel&r or &aBenzene&r." - "" - "You'll probably want many of them at as low-tier as possible to avoid the energy losses from Overclocking." + "{quests.medium_voltage.mv_distillery.desc.3}" ] icon: "gtceu:mv_distillery" id: "6A304E453D74C57C" min_required_dependencies: 1 shape: "square" size: 1.0d - subtitle: "The Illusion of Free Choice" + subtitle: "{quests.medium_voltage.mv_distillery.subtitle}" tasks: [{ id: "685043442271A0D0" item: { @@ -1493,32 +1032,26 @@ "ftbfiltersystem:filter": "or(item(gtceu:mv_distillery)item(gtceu:lv_distillery))" } } - title: "Either an LV or MV Distillery" + title: "{quests.medium_voltage.mv_distillery.task}" type: "item" }] - title: "Distillery" + title: "{quests.medium_voltage.mv_distillery.title}" x: -5.5d y: 1.0d } { dependencies: ["05ADBAE5B6F38956"] description: [ - "&aRefinery Gas&r, &aLPG&r and &aMethane&r are &9Gas Fuels&r. LPG (Liquid Petroleum Gas) is a mix of hydrocarbons typically used in heating appliances." - "" - "Refinery Gas is obtained either through &dNatural Gas&r or &dLight Oil&r, the latter yielding more, yet requiring an extra step of distillation." - "" - "Use of a &3Centrifuge&r to separate into &aLPG&r and &aMethane&r should always be done, as it's practically free." + "{quests.medium_voltage.mv_lpg.desc.1}" "{@pagebreak}" - "&a&aLPG&r and &aMethane&r are burned in a &3Gas Turbine&r. Among the other fuel options, they are the easier to set up which makes them excellent to get started. Their drawback is that they cannot be refined further, so upgrading the &3Fluid Drilling Rig&r may be a top priority if you stick to this fuel source." - "" - "&aMethane&r can also be obtained from a few &anatural sources&r. &eBetween us&r, they're memes, but you can explore them if you wish. Ultimately, your power source is your choice." + "{quests.medium_voltage.mv_lpg.desc.2}" ] icon: "gtceu:natural_gas_bucket" id: "227D89550BB9BD55" optional: true shape: "square" size: 1.0d - subtitle: "Whoever smelt it..." + subtitle: "{quests.medium_voltage.mv_lpg.subtitle}" tasks: [ { id: "027B41ACE1566E28" @@ -1536,55 +1069,41 @@ type: "item" } ] - title: "The Church of Natural Farts" - x: -2.0d + title: "{quests.medium_voltage.mv_lpg.title}" + x: -2.5d y: 4.0d } { dependencies: ["6A304E453D74C57C"] description: [ - "&aBenzene&r is a &9Gas Fuel&r. To skip some frustration, let's check out the two best ways to obtain it." - "" - "The first option is typically &dWood based&r. Put Logs in the &3Pyrolyse Oven&r for &9Wood Tar&r. The Charcoal you obtain can then be processed in &3Extractors&r for even more &9Wood Tar&r, which you &3distill&r for &aBenzene&r." - "" - "Your second option is &dHeavy Oil based&r. Put Heavy Oil in a &3Distillery&r for &9Heavy Fuel&r, which you &aseverely steam-crack&r and &3distill&r again for &aBenzene&r." + "{quests.medium_voltage.mv_benzene.desc.1}" "{@pagebreak}" - "For information on how to process Oil, check the Light Fuel and Naphtha Quests." - "" - "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources." - "" - "&aBenzene&r is burned in a &3Gas Turbine&r. This power source starts weaker than its &eDiesel&r cousin, but gets a big boost when refined to &6Nitrobenzene&r in &6HV&r. Ultimately, your power source is your choice." + "{quests.medium_voltage.mv_benzene.desc.2}" ] icon: "gtceu:benzene_bucket" id: "00E1A728E6F6D6A0" + optional: true shape: "square" size: 1.0d - subtitle: "In the end, it's always Benzene" + subtitle: "{quests.medium_voltage.mv_benzene.subtitle}" tasks: [{ id: "4E9EBCCCC7BBAFDD" item: "gtceu:benzene_bucket" type: "item" }] - title: "The Church of Benzene" + title: "{quests.medium_voltage.mv_benzene.title}" x: -5.0d y: 2.5d } { dependencies: ["6A304E453D74C57C"] - description: [ - "Distillating &aOil&r will give you Fuel that you will need to desulfurize." - "" - "&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r." - "" - "To automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r." - "" - "&aLight Fuel&r is a good &9Power&r option, but there's something even greater... check the Quest to the left." - ] + description: ["{quests.medium_voltage.mv_light_fuel.desc}"] icon: "gtceu:lightly_hydro_cracked_heavy_fuel_bucket" id: "61972B16805FC9EE" + optional: true shape: "square" size: 1.0d - subtitle: "Turn up the Lights in here, baby" + subtitle: "{quests.medium_voltage.mv_light_fuel.subtitle}" tasks: [ { id: "6E4D818CE088D7D4" @@ -1598,59 +1117,42 @@ type: "item" } ] - title: "Light Fuel" + title: "{quests.medium_voltage.mv_light_fuel.title}" x: -6.0d y: 2.5d } { dependencies: ["61972B16805FC9EE"] description: [ - "&aDiesel&r is a &dOil-based &9Combustion Fuel&r." - "" - "To mix &aLight Fuel&r and &aHeavy Fuel&r, the right ratio for &3Distilleries&r is &63:2&r from &dOil&r or &dRaw Oil&r." - "" - "This would necessitate 3 Distilleries for Light Fuel, or 2 Distilleries for Heavy Fuel." + "{quests.medium_voltage.mv_diesel.desc.1}" "{@pagebreak}" - "You can cut the amount of &dOil&r required &6drastically&r by using &dHeavy Oil&r for &aHeavy Fuel&r specifically. &dOilsands&r is a great option if you wish to go down this route!" - "" - "&o(For the math nerds, you go from 8.33 Oil -> 6 Diesel, to 5 Oil + 0.4 Heavy Oil -> 6 Diesel)&r" - "" - "&eNote:&r Do &cnot attempt&r to put Oil in the &3Distillation Tower&r You might think it's a good idea because it gives both Light Fuel and Heavy Fuel. However, this process requires a lot of overclocking to be worth your time, and you will lose more energy than what the byproducts are worth." + "{quests.medium_voltage.mv_diesel.desc.2}" "{@pagebreak}" - "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources." - "" - "&aDiesel&r is burned in a &3Combustion Generator&r. It can be further refined to &6Cetane-Boosted Diesel&r in &6HV&r. Compared to the other power sources, it is generally more efficient, but a more demanding processing line. If you take the &eOil&r route for &aPolyethylene&r, this can work great with existing infrastructure. Ultimately, the power source you want to use is your choice." + "{quests.medium_voltage.mv_diesel.desc.3}" ] icon: "gtceu:diesel_bucket" id: "45769156F4253C86" + optional: true size: 1.0d - subtitle: "Mother, how is diesel made?" + subtitle: "{quests.medium_voltage.mv_diesel.subtitle}" tasks: [{ id: "10BAA54947D975AF" item: "gtceu:diesel_bucket" type: "item" }] - title: "The Church of Diesel" + title: "{quests.medium_voltage.mv_diesel.title}" x: -5.5d y: 3.5d } { dependency_requirement: "one_started" - description: [ - "Regular &o&dGregTech&r Fluid Pipes can only transport one fluid type at a time." - "" - "&3Quadruple Fluid Pipes&r can transfer four different types of fluids. &3Nonuple Fluid Pipes&r can transfer nine different types! Useful for compact setups." - "" - "&3Nonuple Fluid Pipes&r will be useful in &5EV&r for handling the many outputs of the &3Distillation Tower&r." - "" - "Get &eeither&r to finish this quest." - ] + description: ["{quests.medium_voltage.mv_mutli_channel.desc}"] icon: "gtceu:tungsten_steel_quadruple_fluid_pipe" id: "66041DE10C882382" optional: true shape: "square" size: 1.0d - subtitle: "\"I thought channels were disabled!\"" + subtitle: "{quests.medium_voltage.mv_mutli_channel.subtitle}" tasks: [{ id: "2620FA131244B3DA" item: { @@ -1663,22 +1165,18 @@ title: "Multiple Channel Potin Pipes, please" type: "item" }] - title: "Multiple Channel Pipes" + title: "{quests.medium_voltage.mv_mutli_channel.title}" x: -8.0d y: 1.0d } { dependencies: ["315169840E06110F"] - description: [ - "Using a Ruby Lens, engrave a Silicon Wafer into an ILC Wafer." - "" - "This can be processed in a Cutter for IC Chips, which are important components that will be precious when improving upon your circuit crafting capabilities." - ] + description: ["{quests.medium_voltage.mv_ic.desc}"] icon: "gtceu:ilc_chip" id: "6F6D2829FC42F21C" shape: "square" size: 1.0d - subtitle: "I C U" + subtitle: "{quests.medium_voltage.mv_ic.subtitle}" tasks: [ { id: "295D2CE93D4CE067" @@ -1698,22 +1196,18 @@ type: "item" } ] - title: "IC Chips" + title: "{quests.medium_voltage.mv_ic.title}" x: 7.0d y: 10.0d } { dependencies: ["315169840E06110F"] - description: [ - "Using a Sapphire Lens, engrave a Silicon Wafer into an ULPIC Wafer." - "" - "This can be processed in a Cutter for ULPIC Chips, which are important for some multiblock components!" - ] + description: ["{quests.medium_voltage.mv_ulpic.desc}"] icon: "gtceu:ulpic_chip" id: "16A1EF8B80A96633" shape: "square" size: 1.0d - subtitle: "Pickin' up Chips" + subtitle: "{quests.medium_voltage.mv_ulpic.subtitle}" tasks: [ { id: "6D4D63F75646DB1C" @@ -1733,26 +1227,23 @@ type: "item" } ] - title: "ULPIC Chips" + title: "{quests.medium_voltage.mv_ulpic.title}" x: 5.5d y: 10.0d } { + dependencies: ["45449ECE4F8128E7"] description: [ - "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks." - "" - "These pipes instantly transfer from the input side to the output side." - "" - "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." + "{quests.medium_voltage.mv_long_pipe.desc.1}" "{@pagebreak}" - "These pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r." + "{quests.medium_voltage.mv_long_pipe.desc.2}" ] icon: "gtceu:long_distance_fluid_pipeline_endpoint" id: "5480AF2EDEDB6A36" optional: true shape: "heart" size: 1.0d - subtitle: "Wondering how to move that oil around?" + subtitle: "{quests.medium_voltage.mv_long_pipe.subtitle}" tasks: [ { count: 2L @@ -1766,25 +1257,19 @@ type: "item" } ] - title: "Long-Distance Pipeline" + title: "{quests.medium_voltage.mv_long_pipe.title}" x: -9.5d y: -6.5d } { dependencies: ["45769156F4253C86"] dependency_requirement: "one_completed" - description: [ - "This Jetpack takes most &aCombustion Fuels&r (excluding oils) to enable a primitive form of flight." - "" - "Fill it like you would fill a Drum, or with a &3Canning Machine&r." - "" - "Press &4H&r (default) to enable Hover Mode." - ] + description: ["{quests.medium_voltage.mv_.desc}"] id: "6FA956DAA72D6139" optional: true shape: "heart" size: 1.0d - subtitle: "...well, almost Fly" + subtitle: "{quests.medium_voltage.mv_.subtitle}" tasks: [{ id: "022324F9630960C6" item: { @@ -1794,27 +1279,19 @@ } type: "item" }] - title: "I Believe I Can Fly" + title: "{quests.medium_voltage.mv_jetpack.title}" x: -5.5d y: 5.0d } { dependencies: ["75F38905DEA60F15"] dependency_requirement: "one_completed" - description: [ - "This jetpack enables flight, and requires energy." - "" - "Charge it like you would charge a Battery." - "" - "Press &4H&r (default) to enable Hover Mode." - "" - "&o&8(Yeah, yeah, a jetpack is supposed to work off \"propellants\". Y'all are always here to nitpick.)&r" - ] + description: ["{quests.medium_voltage.mv_jetpack_2.desc}"] id: "21F70EACF6D81E6A" optional: true shape: "heart" size: 1.0d - subtitle: "...still not quite there." + subtitle: "{quests.medium_voltage.mv_jetpack_2.subtitle}" tasks: [{ id: "1940421A45E45E25" item: { @@ -1824,17 +1301,19 @@ } type: "item" }] - title: "I Believe I Can Fly II" + title: "{quests.medium_voltage.mv_jetpack_2.title}" x: 1.5d - y: 4.0d + y: 5.0d } { dependencies: [ "10FB27DD3C7BEC2F" "1C55AE6AD5BDE304" ] + description: ["{quests.medium_voltage.mv_electronic_components.desc}"] id: "5DD01CBADFFF3571" shape: "square" + subtitle: "{quests.medium_voltage.mv_electronic_components.subtitle}" tasks: [ { id: "128CD77BAAB2775E" @@ -1852,61 +1331,64 @@ type: "item" } ] + title: "{quests.medium_voltage.mv_electronic_components.title}" x: 0.5d y: 10.0d } { - id: "4976BECA32C200C2" - optional: true - shape: "heart" - tasks: [{ - id: "37FF418866E8D44B" - item: "create:track_station" - type: "item" - }] - x: -10.5d - y: -6.5d - } - { - dependencies: ["45449ECE4F8128E7"] + dependencies: [ + "45449ECE4F8128E7" + "0EFEE489906256AA" + "32B08E6F414A00C0" + ] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_chlorine.desc}"] id: "694DF1C33B53A0D5" + subtitle: "{quests.medium_voltage.mv_chlorine.subtitle}" tasks: [{ id: "28B146A81C429249" item: "gtceu:chlorine_bucket" type: "item" }] - x: -10.5d + title: "{quests.medium_voltage.mv_chlorine.title}" + x: -9.5d y: -3.5d } { dependencies: ["45449ECE4F8128E7"] + description: ["{quests.medium_voltage.mv_hydrogen.desc}"] id: "042E4EF7CF366C0C" + optional: true + subtitle: "{quests.medium_voltage.mv_hydrogen.subtitle}" tasks: [{ id: "089961E2732EDC72" item: "gtceu:hydrogen_bucket" type: "item" }] - x: -9.5d + title: "{quests.medium_voltage.mv_hydrogen.title}" + x: -10.5d y: -3.5d } { - dependencies: [ - "4976BECA32C200C2" - "5480AF2EDEDB6A36" - ] dependency_requirement: "one_started" + description: ["{quests.medium_voltage.mv_seawater.desc}"] id: "45449ECE4F8128E7" optional: true + subtitle: "{quests.medium_voltage.mv_seawater.subtitle}" tasks: [{ id: "77395198DC98E3A5" item: "tfc:bucket/salt_water" type: "item" }] + title: "{quests.medium_voltage.mv_seawater.title}" x: -10.0d y: -5.0d } { + dependencies: ["583D0CC4FAA4FC98"] + description: ["{quests.medium_voltage.mv_battery.desc}"] id: "6F898B934BB79016" + subtitle: "{quests.medium_voltage.mv_battery.subtitle}" tasks: [{ id: "50BDD4D0FAFBE5E6" item: { @@ -1918,34 +1400,38 @@ } type: "item" }] - x: 5.5d - y: -3.0d + title: "{quests.medium_voltage.mv_battery.title}" + x: 7.0d + y: -0.5d } { dependencies: [ "16A6AE5C770DB83A" "10FB27DD3C7BEC2F" ] + description: ["{quests.medium_voltage.hv_machine_hull.desc}"] id: "3E25696C98A6F123" shape: "gear" size: 4.0d + subtitle: "{quests.medium_voltage.hv_machine_hull.subtitle}" tasks: [{ id: "23FB958E73846929" item: "gtceu:hv_machine_hull" type: "item" }] + title: "{quests.medium_voltage.hv_machine_hull.title}" x: -4.0d y: 7.5d } { description: [ - "Everytime you begin a new tier it can be a bit overwhelming. There is going to be lots of &enew machines&r to acquire and &echemicals&r to create.\\n\\nAs you can tell from the quests you have &2three main objectives&r before being able to get into &6HV&r. We are going to take this time to explain each of them." + "{quests.medium_voltage.mv_machine_hull.desc.1}" "{@pagebreak}" - "First you will need to upgrade your &dEBF&r with two new &bMV Energy Hatches&r so it can overcloak and runs &6HV recipes&r. That will help you getting &estainless steal&r, the main material for &6HV&r and &eKanthal&r that you will use to upgrade your &dEBF coils&r." + "{quests.medium_voltage.mv_machine_hull.desc.2}" "{@pagebreak}" - "Your second objective that could be tackle first if you feel like it will be about chemicals. Your first plastic aka Polyethylene will be required to progress further, later on there will be others but let's focus on this one. The quests will guide you with the possibility of two paths:\\n\\n-Going Petrochem by extracting oil from the ground or from oilsands: you will also be able to make Diesel for fuel combustion\\n\\n-Going Biochem by using a Pyrolyse Oven and wood (a Create tree farm could do a good job here): you will also get more benzene and will be able to go towards gas generator.\\n\\nBoth path have their pros and cons though later on you will need both anyway." + "{quests.medium_voltage.mv_machine_hull.desc.3}" "{@pagebreak}" - "Finally " + "{quests.medium_voltage.mv_machine_hull.desc.4}" ] id: "22E462070F8B027A" shape: "gear" @@ -1960,7 +1446,73 @@ x: 3.0d y: 1.0d } + { + dependencies: ["1E9BE8D3F8A602DC"] + description: [ + "{quests.medium_voltage.mv_kanthal_ingot.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_kanthal_ingot.desc.2}" + ] + icon: "gtceu:kanthal_ingot" + id: "4058958C4743E522" + subtitle: "{quests.medium_voltage.mv_kanthal_ingot.subtitle}" + tasks: [ + { + count: 128L + id: "5D22FAD1B450AFAB" + item: "gtceu:kanthal_ingot" + type: "item" + } + { + id: "55774A7953C56E25" + item: "gtceu:hot_kanthal_ingot" + optional_task: true + type: "item" + } + { + id: "1C6FECE08B6DC1B8" + item: "gtceu:mv_chemical_bath" + type: "item" + } + ] + title: "{quests.medium_voltage.mv_kanthal_ingot.title}" + x: 1.5d + y: 9.0d + } + { + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_.desc}"] + id: "79E8DC4D9B5F6B97" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_.subtitle}" + tasks: [{ + id: "04A6D4858DA3CE94" + item: "gtceu:mv_chemical_reactor" + type: "item" + }] + title: "{quests.medium_voltage.mv_chemical_reactor.title}" + x: 7.0d + y: -3.5d + } + { + description: [ + "{quests.medium_voltage.mv_silicon.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_silicon.desc.2}" + ] + id: "3DB03EA806B2D8A1" + subtitle: "{quests.medium_voltage.mv_silicon.subtitle}" + tasks: [{ + id: "001C8867E5DAE7D7" + item: "gtceu:silicon_dust" + type: "item" + }] + title: "{quests.medium_voltage.mv_silicon.title}" + x: 9.0d + y: 6.0d + } ] - subtitle: ["Venture into petrochemistry and refine electronics"] - title: "&bMV&r - Medium Voltage" + subtitle: ["{quests.medium_voltage.subtitle}"] + title: "{quests.medium_voltage}" } diff --git a/config/ftbquests/quests/chapters/ore_processing.snbt b/config/ftbquests/quests/chapters/ore_processing.snbt index 045f6027a..ca1949c9b 100644 --- a/config/ftbquests/quests/chapters/ore_processing.snbt +++ b/config/ftbquests/quests/chapters/ore_processing.snbt @@ -832,5 +832,5 @@ } ] subtitle: ["{quests.ore_proc.subtitle}"] - title: "{quest.ore_proc}" + title: "{quests.ore_proc}" } diff --git a/config/ftbquests/quests/chapters/progression.snbt b/config/ftbquests/quests/chapters/progression.snbt index 90759569a..0f8c9dcd9 100644 --- a/config/ftbquests/quests/chapters/progression.snbt +++ b/config/ftbquests/quests/chapters/progression.snbt @@ -17,383 +17,347 @@ { id: "77A0335E38D755CA" linked_quest: "0DBC148D92A9F69F" - shape: "rsquare" - size: 0.8d + shape: "square" x: 0.0d - y: 2.0d + y: 1.0d } { id: "750818879C23F373" linked_quest: "26394C1290D70AB6" - shape: "rsquare" - size: 0.8d + shape: "square" x: 1.0d - y: 3.0d + y: 2.0d } { id: "0074100DE2B5BE5A" linked_quest: "5E76D4C24026157D" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d - y: 1.0d + y: 0.0d } { id: "1C05814535C12FED" linked_quest: "60D7F6C1EE918B66" - shape: "rsquare" - size: 0.75d + shape: "square" x: 1.0d - y: 2.0d + y: 1.0d } { id: "513A34184609CA31" linked_quest: "5C17BF90DA2AAEEE" - shape: "rsquare" - size: 0.75d + shape: "square" x: 1.0d - y: 1.0d + y: 0.0d } { id: "22CF428EE30F5B4B" linked_quest: "38DE506FF5B32031" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d - y: 2.0d + y: 1.0d } { id: "33618A4FD8ED62D7" linked_quest: "5063FDFFBE3E4855" - shape: "rsquare" - size: 0.75d + shape: "square" x: 2.0d - y: 3.0d + y: 2.0d } { id: "2B8FBCD290196265" linked_quest: "14D277A164202FF8" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d - y: 5.0d + y: 4.0d } { id: "0E8AC841C484408C" linked_quest: "15EC934CE8F4DC86" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d - y: 0.0d + y: -1.0d } { id: "6ABFBA6855A6E7E9" linked_quest: "196FC518F744B983" - shape: "rsquare" - size: 0.8d + shape: "square" x: 3.0d - y: 3.0d + y: 2.0d } { id: "629EAE6BC0519572" linked_quest: "0017FFFAD7CD2EFE" - shape: "rsquare" - size: 0.75d + shape: "square" x: 3.0d - y: 4.0d + y: 3.0d } { id: "59568D32C47265ED" linked_quest: "5CC9B0E832545569" - shape: "rsquare" - size: 0.75d + shape: "square" x: 3.0d - y: 5.0d + y: 4.0d } { id: "42DA2C0B99DB2545" linked_quest: "58BBD540D7D4FF01" - shape: "rsquare" - size: 0.8d + shape: "square" x: 3.0d - y: 6.0d + y: 5.0d } { id: "39C4E4082B9B5731" linked_quest: "49C1D61741AA288E" - shape: "rsquare" - size: 0.8d + shape: "square" x: 4.0d - y: 4.0d + y: 3.0d } { id: "346904314F61ABDB" linked_quest: "698B5F65F2DE4439" - shape: "rsquare" - size: 0.75d + shape: "square" x: 4.0d - y: 5.0d + y: 4.0d } { id: "1C0407D7B45603FC" linked_quest: "145F71A817C5996E" - shape: "rsquare" - size: 0.75d + shape: "square" x: 4.0d - y: 6.0d + y: 5.0d } { id: "20BCF31B1430ECFC" linked_quest: "327C3E02CD751453" - shape: "rsquare" - size: 0.8d + shape: "square" x: 4.0d - y: 7.0d + y: 6.0d } { id: "384FE989BF9BD89D" linked_quest: "082AB255886E73C2" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d - y: 6.0d + y: 5.0d } { id: "3DD1B0AE6630A8E5" linked_quest: "370FC1CDF5F9A9CC" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d - y: 7.0d + y: 6.0d } { id: "519774012E47875A" linked_quest: "359121584E056022" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d - y: 8.0d + y: 7.0d } { id: "0B488F9F519FBA61" linked_quest: "3B49BD004F38E1A2" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d - y: 9.0d + y: 8.0d } { id: "025C3D8C61A9C011" linked_quest: "42CD789B8C40E424" - shape: "rsquare" - size: 0.8d + shape: "square" x: 5.0d - y: 5.0d + y: 4.0d } { id: "54F1B023BEC98314" linked_quest: "47087361D6DE7DCF" - shape: "rsquare" - size: 0.75d + shape: "square" x: 5.0d - y: 6.0d + y: 5.0d } { id: "4EABE2BF51A06FC8" linked_quest: "7AE681E2AB31EA0D" - shape: "rsquare" - size: 0.75d + shape: "square" x: 5.0d - y: 7.0d + y: 6.0d } { id: "607E9492E895927E" linked_quest: "79E4E53E9DF45549" - shape: "rsquare" - size: 0.8d + shape: "square" x: 5.0d - y: 8.0d + y: 7.0d } { id: "709FB8C1561E7BB8" linked_quest: "1646BF9194100E57" - x: -0.99d - y: -5.12d - } - { - id: "499941B0EDEFBF54" - linked_quest: "1C55AE6AD5BDE304" - x: 0.010000000000000009d - y: -5.12d + x: 10.0d + y: -3.0d } { id: "10F2DA9FCC5E3860" linked_quest: "6B08799BCFD01D3D" - x: 1.01d - y: -5.12d + x: 10.0d + y: -1.0d } { id: "72CBEEAD5A41685E" linked_quest: "069FD86133D7D582" - x: 2.01d - y: -5.12d + x: 10.0d + y: 0.0d } { id: "76C69275A82861C8" linked_quest: "7A1E3C3A2D699C5B" - x: 3.01d - y: -5.12d + x: 10.0d + y: 1.0d } { id: "6C144735C40EE615" linked_quest: "2FCBA0D780DBDA9E" - x: 4.01d - y: -5.12d + x: 10.0d + y: 2.0d } { id: "5FDCCB7CE9DACB34" linked_quest: "4C7C0F6A6598BC24" - x: 5.01d - y: -5.12d + x: 10.0d + y: 3.0d } { id: "4ACE1AFCEDC37A05" linked_quest: "6AF3A40BC9CE7122" - x: 6.01d - y: -5.12d - } - { - id: "1EA07F998161450C" - linked_quest: "30A6EDDF25A5E5F8" - shape: "rsquare" - size: 0.66d - x: 2.01d - y: -4.12d + x: 10.0d + y: 4.0d } { id: "532482B324E31386" linked_quest: "1776FA1F3255731E" - shape: "rsquare" - size: 0.66d - x: 3.01d - y: -4.12d + shape: "square" + x: 11.0d + y: 1.0d } { id: "0F86FC5CD130B2E1" linked_quest: "78277DBC07D3C45C" - shape: "rsquare" - size: 0.66d - x: 4.01d - y: -4.12d + shape: "square" + x: 11.0d + y: 2.0d } { id: "7D227159C48FAB94" linked_quest: "0DC999F79A685194" - shape: "rsquare" - size: 0.66d - x: 5.01d - y: -4.12d + shape: "square" + x: 11.0d + y: 3.0d } { id: "718938D16A6098A7" linked_quest: "35F13B6D60361904" - shape: "rsquare" - size: 0.66d - x: 6.01d - y: -4.12d + shape: "square" + x: 11.0d + y: 4.0d } { id: "713A4F2E798A8BDB" linked_quest: "6A451F43F3D7A671" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d - y: 4.0d + y: 3.0d } { - id: "1E40A675803FC0EE" - linked_quest: "033E74BC588E7EAD" - shape: "rsquare" - size: 0.8d - x: 0.0d - y: -1.0d - } - { - id: "086F15BC0794B952" + id: "5BECAA6A55634AC3" linked_quest: "3D8174C64DDC268B" - shape: "rsquare" - size: 0.8d - x: 0.0d - y: 1.0d - } - { - id: "3D882E672333DFDB" - linked_quest: "2C35D4E01AEC02AA" - shape: "rsquare" - size: 0.8d x: 0.0d y: 0.0d } { - id: "54253615E949F3FD" - linked_quest: "48A8E3210B2BAE1C" - size: 0.85d + id: "13ADAD728012FCB1" + linked_quest: "1C55AE6AD5BDE304" + x: 10.0d + y: -2.0d + } + { + id: "7C16D34BB19B0B27" + linked_quest: "4058958C4743E522" + x: 11.0d + y: -2.0d + } + { + id: "690546E6711EE372" + linked_quest: "173A04F328414A36" + x: 11.0d + y: 0.0d + } + { + id: "14BBF936C26E0DE7" + linked_quest: "7E755297E9685374" + x: 11.0d + y: -1.0d + } + { + id: "5D77547BEDCC8C01" + linked_quest: "033E74BC588E7EAD" x: 0.0d - y: -7.6499999999999995d + y: -2.0d } { - id: "6DE3523492F7488F" + id: "34C19E3EFD65554D" + linked_quest: "2C35D4E01AEC02AA" + x: 0.0d + y: -1.0d + } + { + id: "6C5CB6A5A223CB66" + linked_quest: "48A8E3210B2BAE1C" + x: 8.5d + y: -3.0d + } + { + id: "40D9CA59F1C83729" linked_quest: "3C173357029AB649" - size: 0.85d - x: 1.0d - y: -7.6499999999999995d + x: 8.5d + y: -2.0d } { - id: "15C67D0A68F367B8" + id: "1DF239C119DF26F3" linked_quest: "174DA15847665CF8" - size: 0.85d - x: 1.9999999999999998d - y: -7.6499999999999995d + x: 8.5d + y: -1.0d } { - id: "3FB2B4E7A1EA2511" + id: "2FF35C2F777C21C9" linked_quest: "04DE7C58F20B535A" - size: 0.85d - x: 3.0d - y: -7.6499999999999995d + x: 8.5d + y: 0.0d } { - id: "6DE6915952A42CFE" - linked_quest: "52DAF93E2F3D688A" - size: 0.85d - x: 4.0d - y: -7.6499999999999995d - } - { - id: "51370C0C07149D25" + id: "5A2EFA6523C736B0" linked_quest: "56CA2EB7812529C5" - size: 0.85d - x: 5.0d - y: -7.6499999999999995d + x: 8.5d + y: 2.0d + } + { + id: "5F9DCB9698B1FBC7" + linked_quest: "52DAF93E2F3D688A" + x: 8.5d + y: 1.0d } ] quests: [ { dependencies: ["0DBC148D92A9F69F"] - description: [ - "Early game Circuits are hand craftable." - "" - "Pick up the &3Circuit Assembler&r to make them a lot more efficient." - ] + description: ["{quests.development.hull_lv.desc}"] hide_dependency_lines: true - icon: "gtceu:bronze_machine_casing" + icon: "gtceu:lv_machine_hull" id: "4252B1AF36FFB4F6" progression_mode: "linear" - size: 0.85d - subtitle: "Hand crafted and artisanal" - title: "Craftable in &6Steam Age&r and &7LV&r" + size: 1.0d + subtitle: "{quests.development.hull_lv.subtitle}" + title: "{quests.development.hull_lv.title}" x: 0.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -402,21 +366,19 @@ "26394C1290D70AB6" ] description: [ - "The &9Integrated&r Circuit line may not be a strict upgrade in terms of cost, but will tide you over as a stepping stone towards the next tier." - "" - "They will require a MV &3Laser Engraver&r and a MV &3Cutting Machine&r." + "{quests.development.hull_mv.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o In Omnifactory, and in previous Gregicality, this circuit line was called &9Refined&r and was standardized like further tiers." + "{quests.development.hull_mv.desc.2}" ] hide_dependency_lines: true icon: "gtceu:mv_machine_hull" id: "5E4FBB2287D9E635" progression_mode: "linear" - size: 0.85d - subtitle: "Integrated Dynamics" - title: "Craftable in &bMV&r" + size: 1.0d + subtitle: "{quests.development.hull_mv.subtitle}" + title: "{quests.development.hull_mv.title}" x: 1.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -426,20 +388,16 @@ "14D277A164202FF8" "5E76D4C24026157D" ] - description: [ - "&eMicro&r Circuits are where the &3Cleanroom&r becomes a requirement to progress." - "" - "Don't get caught out by the &aMainframe&r - it requires a &3HV Circuit Assembler&r." - ] + description: ["{quests.development.hull_hv.desc}"] hide_dependency_lines: true icon: "gtceu:hv_machine_hull" id: "1D717E742E50A6BD" progression_mode: "linear" - size: 0.85d - subtitle: "Micro Miners" - title: "Craftable in &bMV&r and &6HV&r" + size: 1.0d + subtitle: "{quests.development.hull_hv.subtitle}" + title: "{quests.development.hull_hv.title}" x: 2.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -448,25 +406,16 @@ "0017FFFAD7CD2EFE" "58BBD540D7D4FF01" ] - description: [ - "This is the &9Nano&r Circuit line." - "" - "Starting from here, circuit progression will follow a pattern:" - "" - "&9-&r Processor" - "&9-&r Assembly" - "&9-&r Cupercomputer" - "&9-&r Mainframe" - ] + description: ["{quests.development.hull_ev.desc}"] hide_dependency_lines: true icon: "gtceu:ev_machine_hull" id: "29C2A82490261F1C" progression_mode: "linear" - size: 0.85d - subtitle: "Nano Age" - title: "Craftable in &5EV&r" + size: 1.0d + subtitle: "{quests.development.hull_ev.subtitle}" + title: "{quests.development.hull_ev.title}" x: 3.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -475,20 +424,16 @@ "698B5F65F2DE4439" "145F71A817C5996E" ] - description: [ - "Welcome to the &9Quantum&r Circuit line." - "" - "You may want to invest in &aPBI&r at this point, as &dAdvanced SMDs&r will skyrocket your circuit production." - ] + description: ["{quests.development.hull_iv.desc}"] hide_dependency_lines: true icon: "gtceu:iv_machine_hull" id: "66A23AC2EE9BC4AE" progression_mode: "linear" - size: 0.85d - subtitle: "GregTech gets Quantum" - title: "Craftable in &1IV&r" + size: 1.0d + subtitle: "{quests.development.hull_iv.subtitle}" + title: "{quests.development.hull_iv.title}" x: 4.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -497,20 +442,16 @@ "47087361D6DE7DCF" "7AE681E2AB31EA0D" ] - description: [ - "This is the &9Crystal&r Circuit line." - "" - "It's locked behind &3Fusion&r." - ] + description: ["{quests.development.hull_luv.desc}"] hide_dependency_lines: true icon: "gtceu:luv_machine_hull" id: "6906121936A688C0" progression_mode: "linear" - size: 0.85d - subtitle: "Crystallisation" - title: "Craftable in &dLuV&r" + size: 1.0d + subtitle: "{quests.development.hull_luv.subtitle}" + title: "{quests.development.hull_luv.title}" x: 5.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -519,55 +460,57 @@ "370FC1CDF5F9A9CC" "359121584E056022" ] - description: [ - "This is the &9Wetware&r Circuit line." - "" - "It will be the biggest automation challenge to face in this modpack. Best of luck." - ] + description: ["{quests.development.hull_zpm.desc}"] hide_dependency_lines: true icon: "gtceu:zpm_machine_hull" id: "629E023752317A31" progression_mode: "linear" - size: 0.85d - subtitle: "Soft and Wetware" - title: "Craftable in &cZPM&r" + size: 1.0d + subtitle: "{quests.development.hull_zpm.subtitle}" + title: "{quests.development.hull_zpm.title}" x: 6.0d - y: -2.0d + y: -3.0d } { - dependencies: ["15EC934CE8F4DC86"] - description: ["On this line you can see the Steam, or &8&8ULV&r, equivalents."] + dependencies: [ + "15EC934CE8F4DC86" + "2C35D4E01AEC02AA" + ] + description: ["{quests.development.ulv.desc}"] hide_dependency_lines: true - icon: "gtceu:ulv_machine_hull" + icon: "tfg:ulv_universal_circuit" id: "1C1976238A2FBEE0" progression_mode: "linear" - size: 0.85d - title: "&8ULV&r Circuits" + size: 1.0d + tasks: [{ + id: "2AD889754295F941" + item: "tfg:ulv_universal_circuit" + type: "item" + }] + title: "{quests.development.ulv.title}" x: -1.0d - y: 0.0d + y: -1.0d } { dependencies: [ "5C17BF90DA2AAEEE" "5E76D4C24026157D" + "3D8174C64DDC268B" ] - description: [ - "Circuits along this line are &7LV&r, and are interchangeable in recipes." - "" - "&cElectronic Circuits&r are the \"worst\" in terms of cost and effort required to produce, but you have to start somewhere." - "" - "&eBasic Integrated Processors&r act as a middle layer between &cElectronic Circuits&r and &2Microchip Processors.&r" - "" - "Finally, &2Microchip Processors&r will be the best option for the rest of the playthrough." - ] + description: ["{quests.development.lv.desc}"] hide_dependency_lines: true - icon: "gtceu:lv_machine_casing" + icon: "tfg:lv_universal_circuit" id: "7707E5B061A7FFF7" progression_mode: "linear" - size: 0.85d - title: "&7LV&r Circuits" + size: 1.0d + tasks: [{ + id: "4149ADB96051A419" + item: "tfg:lv_universal_circuit" + type: "item" + }] + title: "{quests.development.lv.title}" x: -1.0d - y: 1.0d + y: 0.0d } { dependencies: [ @@ -575,19 +518,20 @@ "38DE506FF5B32031" "0DBC148D92A9F69F" ] - description: [ - "Circuits along this line are &bMV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.mv.desc}"] hide_dependency_lines: true - icon: "gtceu:mv_machine_casing" + icon: "tfg:mv_universal_circuit" id: "45CA8DCA8226945A" progression_mode: "linear" - size: 0.85d - title: "&bMV&r Circuits" + size: 1.0d + tasks: [{ + id: "44666202162E1A4B" + item: "tfg:mv_universal_circuit" + type: "item" + }] + title: "{quests.development.mv.title}" x: -1.0d - y: 2.0d + y: 1.0d } { dependencies: [ @@ -595,38 +539,40 @@ "5063FDFFBE3E4855" "26394C1290D70AB6" ] - description: [ - "Circuits along this line are &6HV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.hv.desc}"] hide_dependency_lines: true - icon: "gtceu:hv_machine_casing" + icon: "tfg:hv_universal_circuit" id: "54CF2016ED44CC45" progression_mode: "linear" - size: 0.85d - title: "&6HV&r Circuits" + size: 1.0d + tasks: [{ + id: "3FDE8021CF8F3454" + item: "tfg:hv_universal_circuit" + type: "item" + }] + title: "{quests.development.hv.title}" x: -1.0d - y: 3.0d + y: 2.0d } { dependencies: [ "49C1D61741AA288E" "0017FFFAD7CD2EFE" ] - description: [ - "Circuits along this line are &5EV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.ev.desc}"] hide_dependency_lines: true - icon: "gtceu:ev_machine_casing" + icon: "tfg:ev_universal_circuit" id: "2A9ECD745E15A5D8" progression_mode: "linear" - size: 0.85d - title: "&5EV&r Circuits" + size: 1.0d + tasks: [{ + id: "1812896EEEA3FE5B" + item: "tfg:ev_universal_circuit" + type: "item" + }] + title: "{quests.development.ev.title}" x: -1.0d - y: 4.0d + y: 3.0d } { dependencies: [ @@ -635,19 +581,20 @@ "14D277A164202FF8" "5CC9B0E832545569" ] - description: [ - "Circuits along this line are &1IV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.iv.desc}"] hide_dependency_lines: true - icon: "gtceu:iv_machine_casing" + icon: "tfg:iv_universal_circuit" id: "5B0AC445672E14B6" progression_mode: "linear" - size: 0.85d - title: "&1IV&r Circuits" + size: 1.0d + tasks: [{ + id: "5FAB6E6EB15D3ECD" + item: "tfg:iv_universal_circuit" + type: "item" + }] + title: "{quests.development.iv.title}" x: -1.0d - y: 5.0d + y: 4.0d } { dependencies: [ @@ -656,23 +603,20 @@ "145F71A817C5996E" "58BBD540D7D4FF01" ] - description: [ - "Circuits along this line are &dLuV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - "" - "Make sure to set up &3wetware board production&r as soon as possible! These take a &6very long time&r to make." - "" - "It's &dLuV&r, not &4LUV&r." - ] + description: ["{quests.development.luv.desc}"] hide_dependency_lines: true - icon: "gtceu:luv_machine_casing" + icon: "tfg:luv_universal_circuit" id: "140E91C53C30C096" progression_mode: "linear" - size: 0.85d - title: "&dLuV&r Circuits" + size: 1.0d + tasks: [{ + id: "0DAA2B1A9C206D9A" + item: "tfg:luv_universal_circuit" + type: "item" + }] + title: "{quests.development.luv.title}" x: -1.0d - y: 6.0d + y: 5.0d } { dependencies: [ @@ -680,90 +624,98 @@ "327C3E02CD751453" "7AE681E2AB31EA0D" ] - description: ["Circuits along this line are &cZPM&r, and are interchangeable in recipes."] + description: ["{quests.development.zpm.desc}"] hide_dependency_lines: true - icon: "gtceu:zpm_machine_casing" + icon: "tfg:zpm_universal_circuit" id: "2E00E10D4E92F64D" progression_mode: "linear" - size: 0.85d - title: "&cZPM&r Circuits" + size: 1.0d + tasks: [{ + id: "12D2A967F5348D7C" + item: "tfg:zpm_universal_circuit" + type: "item" + }] + title: "{quests.development.zpm.title}" x: -1.0d - y: 7.0d + y: 6.0d } { dependencies: [ "79E4E53E9DF45549" "359121584E056022" ] - description: ["Circuits along this line are &3UV&r, and are interchangeable for each other."] + description: ["{quests.development.uv.desc}"] hide_dependency_lines: true - icon: "gtceu:uv_machine_casing" + icon: "tfg:uv_universal_circuit" id: "35EFFA6C85EFCA58" progression_mode: "linear" - size: 0.85d - title: "&3UV&r Circuits" + size: 1.0d + tasks: [{ + id: "100577EC5C3F37C4" + item: "tfg:uv_universal_circuit" + type: "item" + }] + title: "{quests.development.uv.title}" + x: -1.0d + y: 7.0d + } + { + dependencies: ["3B49BD004F38E1A2"] + description: ["{quests.development.uhv.desc}"] + hide_dependency_lines: true + icon: "tfg:uhv_universal_circuit" + id: "177ADFFD33DDA624" + progression_mode: "linear" + size: 1.0d + tasks: [{ + id: "3E4D08045C74E4B8" + item: "tfg:uhv_universal_circuit" + type: "item" + }] + title: "{quests.development.uhv.title}" x: -1.0d y: 8.0d } - { - dependencies: ["3B49BD004F38E1A2"] - description: [ - "Congratulations! You've reached the end of the circuit progression." - "" - "The only &4UHV&r circuit is the &6Wetware Mainframe&r, which is used for crafting some endgame stuff." - ] - hide_dependency_lines: true - icon: "gtceu:uhv_machine_casing" - id: "177ADFFD33DDA624" - progression_mode: "linear" - size: 0.85d - title: "&4UHV&r Circuits" - x: -1.0d - y: 9.0d - } { dependencies: ["5B2696206205CB2E"] id: "70432F650591353C" - shape: "rsquare" - size: 0.66d + shape: "square" + size: 1.0d tasks: [{ id: "77875BBDC0A937A9" item: "gtceu:cupronickel_ingot" type: "item" }] - x: -0.99d - y: -4.12d + x: 11.0d + y: -3.0d } { - dependencies: [ - "2AD44111B9B39C90" - "4A92AFD2532EED26" + description: [ + "{quests.development.explanation.desc.1}" + "{@pagebreak}" + "{quests.development.explanation.desc.2}" + "{@pagebreak}" + "{quests.development.explanation.desc.3}" ] - id: "66805BB78A828C00" - shape: "rsquare" - size: 0.66d + icon: { + Count: 1 + id: "gtceu:programmed_circuit" + tag: { + Configuration: 0 + } + } + id: "78885A5847FAE785" + subtitle: "{quests.development.explanation.subtitle}" tasks: [{ - id: "76206DC9E7ABD07A" - item: "gtceu:kanthal_ingot" - type: "item" + id: "629C40E1C85EC9EC" + title: "{quests.development.explanation.task}" + type: "checkmark" }] - x: 0.010000000000000009d - y: -4.12d - } - { - dependencies: ["6958029B5514D4EC"] - id: "1CBA5477CB7C45E7" - shape: "rsquare" - size: 0.66d - tasks: [{ - id: "1104AC52E0A0A472" - item: "gtceu:nichrome_ingot" - type: "item" - }] - x: 1.01d - y: -4.12d + title: "{quests.development.explanation.title}" + x: -1.0d + y: -3.0d } ] - subtitle: ["A step forward is always rewarding"] - title: "Development table" + subtitle: ["{quests.development.subtitle}"] + title: "quests.development" } diff --git a/config/ftbquests/quests/chapters/queststfc_tips.snbt b/config/ftbquests/quests/chapters/queststfc_tips.snbt index d183306ee..104eec99c 100644 --- a/config/ftbquests/quests/chapters/queststfc_tips.snbt +++ b/config/ftbquests/quests/chapters/queststfc_tips.snbt @@ -9,8 +9,8 @@ quest_links: [{ id: "1AD1F9822B738105" linked_quest: "2E36E5755B2F551C" - x: 6.0d - y: 5.0d + x: 2.0d + y: 4.0d }] quests: [ { @@ -1138,6 +1138,7 @@ "4891E995D3EC2BD1" "5D865179941E7B3A" ] + dependency_requirement: "one_completed" description: ["{quests.tfg_tips.create_sticky_resin.desc}"] id: "6FFD4990FF07078A" size: 1.0d @@ -2341,7 +2342,7 @@ ] title: "{quests.tfg_tips.lamps.title}" x: -5.0d - y: 11.5d + y: 11.0d } { dependencies: [ @@ -2376,7 +2377,7 @@ ] title: "{quests.tfg_tips.lava_lamp.title}" x: -5.0d - y: 13.0d + y: 12.5d } { dependencies: ["037CDA933FBE2CBE"] @@ -2397,7 +2398,7 @@ }] title: "{quests.tfg_tips.creosote.title}" x: -6.0d - y: 12.5d + y: 12.0d } { dependencies: ["037CDA933FBE2CBE"] @@ -2418,7 +2419,7 @@ }] title: "{quests.tfg_tips.olive_oil.title}" x: -4.0d - y: 12.5d + y: 12.0d } { dependencies: ["2D959136A5FC5F46"] @@ -2453,7 +2454,7 @@ ] title: "{quests.tfg_tips.glass_blocks.title}" x: -3.0d - y: 11.5d + y: 11.0d } { dependencies: ["150B7C5CD152E1BA"] @@ -3256,8 +3257,8 @@ type: "item" }] title: "{quests.tfg_tips.camera_attachments.title}" - x: -10.5d - y: 5.0d + x: -9.5d + y: 4.5d } { dependencies: ["275C8EA942AB49DD"] @@ -3277,11 +3278,11 @@ type: "item" }] title: "{quests.tfg_tips.filters.title}" - x: -10.5d - y: 6.0d + x: -9.5d + y: 5.5d } { - dependencies: ["275C8EA942AB49DD"] + dependencies: ["4E2C1CAD883EB032"] description: ["{quests.tfg_tips.interplanar_projector.desc}"] id: "3952D56556B35FDB" subtitle: "{quests.tfg_tips.interplanar_projector.subtitle}" @@ -3297,8 +3298,8 @@ type: "item" }] title: "{quests.tfg_tips.interplanar_projector.title}" - x: -10.5d - y: 7.0d + x: -9.5d + y: 6.5d } { dependencies: ["79FA776C414AE8E5"] @@ -3505,7 +3506,7 @@ }] title: "{quests.tfg_tips.tallow.title}" x: -6.5d - y: 11.5d + y: 11.0d } { dependencies: ["150B7C5CD152E1BA"] @@ -4517,7 +4518,7 @@ y: 6.5d } { - dependencies: ["02FDECC931B5E8EF"] + dependencies: ["46C33ACAF8F756F8"] description: [ "&3Long-Distance Item Pipes&r can be used to send items across great distances. Place one endpoint at each end, and connect them with pipeline blocks." "" @@ -4544,7 +4545,7 @@ } ] title: "Long-Distance Items" - x: 4.0d + x: 5.5d y: 2.0d } { @@ -4569,11 +4570,11 @@ type: "item" }] title: "Tricorder" - x: 6.0d - y: 2.0d + x: 3.0d + y: 6.0d } { - dependencies: ["02FDECC931B5E8EF"] + dependencies: ["46C33ACAF8F756F8"] description: [ "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks." "" @@ -4603,11 +4604,11 @@ } ] title: "Long-Distance Pipeline" - x: 5.0d + x: 3.5d y: 2.0d } { - dependencies: ["02FDECC931B5E8EF"] + dependencies: ["74AE7DB845B88CF3"] description: [ "In this quest, we'll bestow upon you &5cursed wisdom&r... the ability to easily automate the Electrolyzer." "" @@ -4634,11 +4635,11 @@ type: "item" }] title: "200IQ" - x: 6.0d + x: 9.0d y: 3.0d } { - dependencies: ["02FDECC931B5E8EF"] + dependencies: ["74AE7DB845B88CF3"] description: [ "This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape." "" @@ -4660,13 +4661,20 @@ shape: "square" size: 1.0d subtitle: "Stop burning your darn hands!" - tasks: [{ - id: "34DEDF3B7F0DB3BC" - item: "gtceu:item_tag_filter" - type: "item" - }] + tasks: [ + { + id: "34DEDF3B7F0DB3BC" + item: "gtceu:item_tag_filter" + type: "item" + } + { + id: "35CAF01644B8D9A2" + item: "gtceu:fluid_tag_filter" + type: "item" + } + ] title: "250IQ" - x: 6.0d + x: 9.0d y: 4.0d } { @@ -4695,8 +4703,8 @@ type: "item" }] title: "GregTech Storage" - x: 6.0d - y: 7.0d + x: 6.5d + y: 3.0d } { dependencies: ["6702D52922D85C0D"] @@ -4712,7 +4720,93 @@ type: "item" }] title: "Tape for Crate" - x: 6.0d + x: 6.5d + y: 2.0d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["With &5GregTech&r, you get access to various &6filters&r that help you ease into &aautomation&r. All of them are compatible with different &dCovers&r, which you'll learn more about during the &7LV&r Chapter.\\n\\nHere, we're introducing two more specific filters that you might find &bhandy&r in certain situations.\\n\\nTo use a filter, simply apply it as a &dCover&r on any &5GT Machine&r or &6pipe&r."] + icon: "gtceu:item_filter" + id: "74AE7DB845B88CF3" + subtitle: "filters" + tasks: [{ + id: "268110D7B7999A7B" + title: "Filters" + type: "checkmark" + }] + x: 8.0d + y: 3.5d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["You may have realized that most &eMultiblocks&r require a &6Maintenance Hatch&r. Until &6HV&r, where you can get an &aAutomatic Maintenance Hatch&r, you can use this item to fix the hatch without needing to use all of your maintenance tools.\\n\\nIt can be really useful if you don't want to invest in an &aAuto Maintenance Hatch&r yet, or if you're simply &cnot there yet&r."] + id: "179E89C50E900DC0" + tasks: [{ + id: "7D2E6F5F843864DE" + item: "gtceu:duct_tape" + type: "item" + }] + x: 4.0d + y: 6.0d + } + { + dependencies: ["2D2CB8104E40E808"] + description: ["The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r."] + id: "7A4C6930EF68646E" + tasks: [{ + id: "41A7611367BBD2A7" + item: "gtceu:nano_saber" + type: "item" + }] + x: 10.0d + y: 4.5d + } + { + dependencies: ["2D2CB8104E40E808"] + description: ["The &6Item Magnet&r is exactly what you'd expect — a magnet that pulls nearby &6items&r straight to you. &aVery useful&r. What more could you ask for?"] + id: "49D2EFFFC15563F9" + tasks: [{ + id: "6290D18A38A1583C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_item_magnet)item(gtceu:hv_item_magnet))" + } + } + type: "item" + }] + x: 10.0d + y: 6.5d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["&bThe Terminal&r has one main purpose, and &awe highly encourage you to craft it&r.\\n\\nBuilding all these &eMultiblocks&r can be a bit &cintimidating&r, right? Well, here's a tip: use &dShift + Right-Click&r on any &6Multiblock Controller&r to &aautomatically assemble the entire structure&r!\\n\\nYou might need to &emove around some buses and hatches&r to suit your setup, but overall, this feature will save you a &alot of time&r."] + id: "2F6C9A987865B966" + tasks: [{ + id: "6A86F6C3566828BF" + item: "gtceu:terminal" + type: "item" + }] + x: 2.0d + y: 3.0d + } + { + dependencies: ["57FE828BAA8F6276"] + description: ["The &6Face Mask&r will protect you from &cinhaling dangerous dust&r. It’s quite &aeasy to craft&r and should prevent issues when working with &5arsenic&r."] + id: "361AC06D62D9BCCF" + tasks: [{ + id: "7AC3F8AF754C76E2" + item: { + Count: 1 + id: "gtceu:face_mask" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.0d y: 8.0d } {