From f071c89c723f8e93d09cd81273aec302525c034a Mon Sep 17 00:00:00 2001 From: v3ect0rgames <164247766+v3ect0rgames@users.noreply.github.com> Date: Sat, 15 Jun 2024 00:46:16 -0400 Subject: [PATCH] Add Short Tooltip Description for Some AE2 Items (#761) [FEATURE] [DETAILS] details = [ "**Including:**", "Pattern Expansion Card", "Crafting Card", "Acceleration Card", "Magnet Card", "Inverter Card", "Fuzzy Card", "Capacity Card", "Redstone Card", "Sticky Card", ] [DETAILS] --- overrides/scripts/AE2.zs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/overrides/scripts/AE2.zs b/overrides/scripts/AE2.zs index be94b76..0905bf7 100644 --- a/overrides/scripts/AE2.zs +++ b/overrides/scripts/AE2.zs @@ -6,7 +6,17 @@ import mods.gregtech.recipe.RecipeMap; .addTooltip(format.red("This is being removed. A temperary conversion recipe has been added. Check JEI for more details.")); // Tooltips -.addTooltip(format.yellow("Used with the Quantum Ring multiblock. Allows wireless access from anywhere. Check the Quest Book for more information.")); +.addTooltip(format.yellow("Used with the Quantum Ring multiblock. Allows wireless access from anywhere. Check the Quest Book for more information.")); //quantum link card +.addTooltip(format.yellow("Used in interfaces. Allows you to put more patterns in an interface then normally allowed up to 4x the normal amount of patterns. Check the Quest Book for more information.")); //pattern expansion card +.addTooltip(format.yellow("Allows machines to craft items as they are used up automatically.")); //crafting card +.addTooltip(format.yellow("Speeds up various AE2 processes.")); //acceleration card +.addTooltip(format.yellow("When put in a wireless terminal, it will pick items off the floor and put them into your AE2 system based on your configuration.")); //magnet card +.addTooltip(format.yellow("Inverts AE2 configurations.")); //inverter card +.addTooltip(format.yellow("Only exports/imports/ items in a certain damage range.")); //fuzzy card +.addTooltip(format.yellow("Allows importing/exporting more then one type of item from a machine, one card is 4 slots, and cards is 9 slots.")); //capacity card +.addTooltip(format.yellow("Allows redstone control over ME machines.")); //redstone card +.addTooltip(format.yellow("Defines specific destinations for items in the ME system.")); //sticky card + .addTooltip(format.red("Made in a Crystal Growth Chamber from a Certus Quartz Seed.")); .addTooltip(format.red("Made in a Crystal Growth Chamber from a Nether Quartz Seed.")); @@ -14,4 +24,4 @@ import mods.gregtech.recipe.RecipeMap; .addTooltip(format.aqua(format.italic("Obtained by charging with RF power in the AE2 Charger, or the Energetic Infuser."))); .addTooltip(format.green(format.italic("Made by right-clicking ME P2P Tunnel with any GregTech wire or cable."))); -.addTooltip(format.green(format.italic("The basis for all other P2P Tunnels."))); \ No newline at end of file +.addTooltip(format.green(format.italic("The basis for all other P2P Tunnels.")));