Advertisement
Guest User

Untitled

a guest
Nov 17th, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 25.50 KB | None | 0 0
  1. package gregtechmod.common;
  2.  
  3. import gregtechmod.GT_Mod;
  4.  
  5. import java.util.ArrayList;
  6.  
  7. import net.minecraft.src.ItemStack;
  8.  
  9. public class GT_ComputercubeDescription {
  10.     public static ArrayList<GT_ComputercubeDescription> sDescriptions = new ArrayList<GT_ComputercubeDescription>();
  11.    
  12.     public String[] mDescription;
  13.     public ItemStack[] mStacks;
  14.    
  15.     public GT_ComputercubeDescription(String[] aDescription, ItemStack[] aStacks) {
  16.         mDescription = aDescription;
  17.         mStacks = aStacks;
  18.         sDescriptions.add(this);
  19.     }
  20.    
  21.     public static void addStandardDescriptions() {
  22.         new GT_ComputercubeDescription(
  23.                 new String[] {
  24.                         "Fusion Reactor",
  25.                         "This Reactor produces far",
  26.                         "more Energy than a normal",
  27.                         "Nuclear Reactor. Its pretty",
  28.                         "expensive and needs a very",
  29.                         "large Infrastructure and",
  30.                         "Automation to run properly",
  31.                         "Note, that you have to",
  32.                         "charge the Reactor once,",
  33.                         "before starting the Fusion,",
  34.                         "as it has to run warm.",
  35.                         "To charge it place a",
  36.                         "Splitter cable after the",
  37.                         "Supercondensators, which",
  38.                         "you placed for the 1MilEU/t",
  39.                         "more Information in the",
  40.                         "Fusion recipe mode of this."
  41.                 },
  42.                 new ItemStack[] {
  43.                         null,
  44.                         null,
  45.                         null,
  46.                         new ItemStack(GT_Mod.instance.mBlocks[0], 1, 1),
  47.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 1),
  48.                         null,
  49.                         null,
  50.                         null,
  51.                         null,
  52.                         null,
  53.                         null,
  54.                         null,
  55.                         null,
  56.                         null
  57.                 }
  58.         );
  59.         new GT_ComputercubeDescription(
  60.                 new String[] {
  61.                         "Lightning Rod",
  62.                         "Also known as the Bane of",
  63.                         "Alblaka. The Lightning Rod",
  64.                         "enables you to gain Energy",
  65.                         "from Lightning! To set it up",
  66.                         "you just need the Block",
  67.                         "itself, 4 HV-Transformers",
  68.                         "and a crapton of Iron Fences,",
  69.                         "which you then place on top",
  70.                         "of it. After that you have to",
  71.                         "wait for a thunder storm and",
  72.                         "if you are lucky you'll get",
  73.                         "2.5 MFSU of Energy out of",
  74.                         "it. If a Rod is high enough",
  75.                         "then Rain is also enough to",
  76.                         "get struck, but with less",
  77.                         " probability of course."
  78.                 },
  79.                 new ItemStack[] {
  80.                         GT_ModHandler.getIC2Item("ironFence", 1),
  81.                         GT_ModHandler.getIC2Item("ironFence", 1),
  82.                         GT_ModHandler.getIC2Item("ironFence", 1),
  83.                         GT_ModHandler.getIC2Item("ironFence", 1),
  84.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 2),
  85.                         null,
  86.                         null,
  87.                         null,
  88.                         null,
  89.                         null,
  90.                         null,
  91.                         null,
  92.                         null,
  93.                         null
  94.                 }
  95.         );
  96.         new GT_ComputercubeDescription(
  97.                 new String[] {
  98.                         "Quantumchest",
  99.                         "You want to store tons of",
  100.                         "Materials into your Chests",
  101.                         "but you hate the Item limit",
  102.                         "of them? Not anymore! The",
  103.                         "Quantum Chest is able to",
  104.                         "store an INFINITE* amount",
  105.                         "of one single Item type per",
  106.                         "Chest.",
  107.                         "This Chest stores your Items",
  108.                         "like Data and ever has a",
  109.                         "Stack of the Item ready for",
  110.                         "extraction. It is compatible",
  111.                         "with any Item that doesnt",
  112.                         "have a NBT-Tag. You ask what",
  113.                         "NBT is? I know it, thats enough.",
  114.                         "* = " + (Integer.MAX_VALUE-256)
  115.                 },
  116.                 new ItemStack[] {
  117.                         null,
  118.                         null,
  119.                         null,
  120.                         null,
  121.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 3),
  122.                         null,
  123.                         null,
  124.                         null,
  125.                         null,
  126.                         null,
  127.                         null,
  128.                         null,
  129.                         null,
  130.                         null
  131.                 }
  132.         );
  133.         new GT_ComputercubeDescription(
  134.                 new String[] {
  135.                         "ComputerCube",
  136.                         "The Device you are",
  137.                         "currently using. This Computer",
  138.                         "is running the G.L.A.D.-OS,",
  139.                         "which is containing many",
  140.                         "usefull Apps:",
  141.                         "- Reactor Planner",
  142.                         "- Seedbags Canner",
  143.                         "- Recipelists for GT-Devices",
  144.                         "- ",
  145.                         "- ",
  146.                         "- ",
  147.                         "- ",
  148.                         "- ",
  149.                         "And the Descriptionlist you",
  150.                         "are currently reading.",
  151.                         "~This Device has private Access~"
  152.                 },
  153.                 new ItemStack[] {
  154.                         null,
  155.                         null,
  156.                         null,
  157.                         null,
  158.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 4),
  159.                         null,
  160.                         null,
  161.                         null,
  162.                         null,
  163.                         null,
  164.                         null,
  165.                         null,
  166.                         null,
  167.                         null
  168.                 }
  169.         );
  170.         new GT_ComputercubeDescription(
  171.                 new String[] {
  172.                         "UUM-Assembler",
  173.                         "It's like an automatic",
  174.                         "Craftingtable just for UUM",
  175.                         "It can store 20 UUM-Recipes",
  176.                         "and produces those on demand",
  177.                         "It costs 512EU per used piece",
  178.                         "of Universal-Usable-Matter(TM).",
  179.                         "The integrated Quantum Chest",
  180.                         "allows it to store all your",
  181.                         "UUM inside it.",
  182.                         "Top and Bottom are for Input,",
  183.                         "while the Output is on the",
  184.                         "Sides. The Output is designed,",
  185.                         "to work with RP-Retrievers, so",
  186.                         "build it into your recursive",
  187.                         "Auto crafting system.",
  188.                         ""
  189.                 },
  190.                 new ItemStack[] {
  191.                         null,
  192.                         null,
  193.                         null,
  194.                         GT_ModHandler.getIC2Item("matter", 1),
  195.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 5),
  196.                         null,
  197.                         null,
  198.                         null,
  199.                         null,
  200.                         null,
  201.                         null,
  202.                         null,
  203.                         null,
  204.                         null
  205.                 }
  206.         );
  207.         new GT_ComputercubeDescription(
  208.                 new String[] {
  209.                         "Sonictron",
  210.                         "You like Music? Then the",
  211.                         "Sonictron 9001 is your best",
  212.                         "choice! You can compose Alarms,",
  213.                         "Doorbell sounds or boring",
  214.                         "Elevator music, with the 64 Slots",
  215.                         "inside it. Just leftclick them",
  216.                         "to switch the Sound, rightclick",
  217.                         "them to switch the modulation",
  218.                         "and shiftclick to remove it.",
  219.                         "Then apply Redstone to play",
  220.                         "With the mobile Version you can",
  221.                         "play sounds everywhere, after",
  222.                         "you copied them from a normal",
  223.                         "Sonictron via rightclicking",
  224.                         "Sneakrightclicking pastes",
  225.                         "It's btw Dataorb-Compatible"
  226.                 },
  227.                 new ItemStack[] {
  228.                         null,
  229.                         null,
  230.                         null,
  231.                         GT_Mod.getGregTechItem(32, 1, 0),
  232.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 6),
  233.                         null,
  234.                         null,
  235.                         null,
  236.                         null,
  237.                         null,
  238.                         null,
  239.                         null,
  240.                         null,
  241.                         null
  242.                 }
  243.         );
  244.         new GT_ComputercubeDescription(
  245.                 new String[] {
  246.                         "L.E.S.U.",
  247.                         "The unlaggiest Multiblock ever!",
  248.                         "One Controller Block, and as many",
  249.                         "'stupid' Storage Blocks as you want.",
  250.                         "To use it, place one Controller",
  251.                         "and then place the LESU-Storages",
  252.                         "adjacent to it or other placed",
  253.                         "LESU-Storages. The Tier (max EU/t)",
  254.                         "of it depends on the amount of",
  255.                         "adjacent Storages. The",
  256.                         "Storage Blocks are NOT TileEntities,",
  257.                         "what means that they cause as much",
  258.                         "Lag as a random Dirtblock. And the",
  259.                         "Controllerblock only checks ONCE",
  260.                         "for the Storages, so no",
  261.                         "Block iteration lag, AT. ALL. Anyone,",
  262.                         "who says that they lag gets killed!"
  263.                 },
  264.                 new ItemStack[] {
  265.                         null,
  266.                         null,
  267.                         null,
  268.                         new ItemStack(GT_Mod.instance.mBlocks[0], 1, 6),
  269.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 7),
  270.                         null,
  271.                         null,
  272.                         null,
  273.                         null,
  274.                         null,
  275.                         null,
  276.                         null,
  277.                         null,
  278.                         null
  279.                 }
  280.         );
  281.         new GT_ComputercubeDescription(
  282.                 new String[] {
  283.                         "I.D.S.U.",
  284.                         "The Interdimensional Storageunit",
  285.                         "is a Device, which is like a",
  286.                         "wireless, crossdimensional and",
  287.                         "enderchestlike EU-Storageblock",
  288.                         "",
  289.                         "Every Player has one Network of",
  290.                         "these. The ID is determined by",
  291.                         "the Hashcode of the Name from the",
  292.                         "first Player, who opens its GUI",
  293.                         "",
  294.                         "It stores up to 1 Billion EU",
  295.                         "and emits EV.",
  296.                         "",
  297.                         "",
  298.                         "",
  299.                         ""
  300.                 },
  301.                 new ItemStack[] {
  302.                         null,
  303.                         null,
  304.                         null,
  305.                         null,
  306.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 8),
  307.                         null,
  308.                         null,
  309.                         null,
  310.                         null,
  311.                         null,
  312.                         null,
  313.                         null,
  314.                         null,
  315.                         null
  316.                 }
  317.         );
  318.         new GT_ComputercubeDescription(
  319.                 new String[] {
  320.                         "A.E.S.U.",
  321.                         "The Adjustable Energy Storage Unit",
  322.                         "is like 10 MFSU and has an",
  323.                         "adjustable Output between 0 and",
  324.                         "2048EU/t. You could use it as a",
  325.                         "Transformer. It is Tier-IV, so",
  326.                         "it's basically needed to charge",
  327.                         "Energyorbs and Lapotron Packs",
  328.                         "",
  329.                         "Not much to say about it.",
  330.                         "",
  331.                         "",
  332.                         "",
  333.                         "",
  334.                         "",
  335.                         "",
  336.                         ""
  337.                 },
  338.                 new ItemStack[] {
  339.                         null,
  340.                         null,
  341.                         null,
  342.                         null,
  343.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 9),
  344.                         null,
  345.                         null,
  346.                         null,
  347.                         null,
  348.                         null,
  349.                         null,
  350.                         null,
  351.                         null,
  352.                         null
  353.                 }
  354.         );
  355.         new GT_ComputercubeDescription(
  356.                 new String[] {
  357.                         "Charge-O-Mat",
  358.                         "An automatable Charging Bench",
  359.                         "It puts (de-)charged Tools into",
  360.                         "the right Outputslots, which are",
  361.                         "accessible on the Sides of it.",
  362.                         "",
  363.                         "The MFSU inside stores enough to",
  364.                         "charge your QSuit almost instantly",
  365.                         "",
  366.                         "This is a Tier-V-Charging Station",
  367.                         "even when the Max-IN/OUT is only",
  368.                         "2048EU/t. It also charges your Armor",
  369.                         "when you are standing close to it.",
  370.                         "",
  371.                         "If you apply Redstone, then it",
  372.                         "decharges instead.",
  373.                         ""
  374.                 },
  375.                 new ItemStack[] {
  376.                         null,
  377.                         null,
  378.                         null,
  379.                         null,
  380.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,10),
  381.                         null,
  382.                         null,
  383.                         null,
  384.                         null,
  385.                         null,
  386.                         null,
  387.                         null,
  388.                         null,
  389.                         null
  390.                 }
  391.         );
  392.         new GT_ComputercubeDescription(
  393.                 new String[] {
  394.                         "Centrifuge",
  395.                         "This is a Machine to seperate",
  396.                         "Isotopes. Its inbuilt",
  397.                         "Dejuicer Device Of Doom enables it,",
  398.                         "to also seperate Elements from",
  399.                         "Molecules.",
  400.                         "It has a maximum Consumption rate",
  401.                         "of 5EU/t, and its Maxinput is",
  402.                         "32EU/t. The time it needs depends",
  403.                         "on the Recipe you use.",
  404.                         "",
  405.                         "It needs tin cells for some Recipes,",
  406.                         "which you put in the Top left Slot",
  407.                         "",
  408.                         "Top = Input",
  409.                         "Bottom = Tincells",
  410.                         "Side = Output"
  411.                 },
  412.                 new ItemStack[] {
  413.                         null,
  414.                         null,
  415.                         null,
  416.                         null,
  417.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,11),
  418.                         null,
  419.                         null,
  420.                         null,
  421.                         null,
  422.                         null,
  423.                         null,
  424.                         null,
  425.                         null,
  426.                         null
  427.                 }
  428.         );
  429.         new GT_ComputercubeDescription(
  430.                 new String[] {
  431.                         "Superconductor",
  432.                         "Expensive, but superconducting",
  433.                         "nearly infinite EU/t and it has",
  434.                         "no Cable loss!",
  435.                         "",
  436.                         "",
  437.                         "",
  438.                         "",
  439.                         "Supercondensator",
  440.                         "This is a special kind of Transformer",
  441.                         "It allows you to convert anything down",
  442.                         "to 8192 EU/t, what is like a normal HVT.",
  443.                         "But if you apply Redstone to it then it",
  444.                         "outputs friggin 1000000EU/t!!!",
  445.                         "",
  446.                         "Some Machines require that high",
  447.                         "Voltage in a short period."
  448.                 },
  449.                 new ItemStack[] {
  450.                         null,
  451.                         null,
  452.                         GT_Mod.getGregTechItem(3, 1, 2),
  453.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,12),
  454.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,15),
  455.                         null,
  456.                         null,
  457.                         null,
  458.                         null,
  459.                         null,
  460.                         null,
  461.                         null,
  462.                         null,
  463.                         null
  464.                 }
  465.         );
  466.         new GT_ComputercubeDescription(
  467.                 new String[] {
  468.                         "Playerdetector",
  469.                         "This nice little Device is able",
  470.                         "to detect Players in a Range of",
  471.                         "16-Spherical Meters and a",
  472.                         "EU-Consumption of 2.5EU/t.",
  473.                         "",
  474.                         "It can be switched to 3 Diffrent",
  475.                         "Modes, to detect YOURSELF, OTHERS",
  476.                         "and ALL Players by Right clicking it.",
  477.                         "",
  478.                         "It doesnt detect regular Mobs.",
  479.                         "",
  480.                         "",
  481.                         "",
  482.                         "",
  483.                         "",
  484.                         "~This Device has private Access~"
  485.                 },
  486.                 new ItemStack[] {
  487.                         null,
  488.                         null,
  489.                         null,
  490.                         null,
  491.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,13),
  492.                         null,
  493.                         null,
  494.                         null,
  495.                         null,
  496.                         null,
  497.                         null,
  498.                         null,
  499.                         null,
  500.                         null
  501.                 }
  502.         );
  503.         new GT_ComputercubeDescription(
  504.                 new String[] {
  505.                         "Matterfabricator",
  506.                         "The Matter Fabricator is nothing",
  507.                         "else than a Mass Fabricator, which",
  508.                         "can ONLY run on Scrap and other",
  509.                         "Amplifiers.",
  510.                         "",
  511.                         "With the Defaultconfig it is 100",
  512.                         "times more expensive than normal.",
  513.                         "Of course you can set the Config",
  514.                         "to 166666, to get your normal",
  515.                         "Mass fabrication rate back, or you",
  516.                         "could make Mass fabrication even",
  517.                         "cheaper, if you really want to",
  518.                         "make Mass fabrication that easy",
  519.                         "",
  520.                         "",
  521.                         ""
  522.                 },
  523.                 new ItemStack[] {
  524.                         null,
  525.                         null,
  526.                         null,
  527.                         GT_ModHandler.getIC2Item("matter", 1),
  528.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1, 14),
  529.                         null,
  530.                         null,
  531.                         null,
  532.                         null,
  533.                         null,
  534.                         null,
  535.                         null,
  536.                         null,
  537.                         null
  538.                 }
  539.         );
  540.         new GT_ComputercubeDescription(
  541.                 new String[] {
  542.                         "Electric Auto crafting tables",
  543.                         "These are Crafting tables for the",
  544.                         "common need of autocrafting in",
  545.                         "Factories. One Craft needs 5000EU to",
  546.                         "be performed, so you have actually to",
  547.                         "lay Wires to it. This Table is",
  548.                         "unique as its also able, to give you",
  549.                         "the used Capsule cell containers, made",
  550.                         "by IndustrialCorp, back.",
  551.                         "You may use that behaviour to",
  552.                         "craft anything released to chemics,",
  553.                         "like the 2xKNO3-Recipe for Saltpeter.",
  554.                         "",
  555.                         "It accepts only 32EU/p as Input.",
  556.                         "",
  557.                         "",
  558.                         ""
  559.                 },
  560.                 new ItemStack[] {
  561.                         null,
  562.                         null,
  563.                         null,
  564.                         null,
  565.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,16),
  566.                         null,
  567.                         null,
  568.                         null,
  569.                         null,
  570.                         null,
  571.                         null,
  572.                         null,
  573.                         null,
  574.                         null
  575.                 }
  576.         );
  577.         new GT_ComputercubeDescription(
  578.                 new String[] {
  579.                         "Automation with GregTech",
  580.                         "Translocators and Buffers are the",
  581.                         "newest Way to automate your Machines.",
  582.                         "Screw Buildcraft, these EU-wasting",
  583.                         "Devices are much more awesome.",
  584.                         "They output 32EU/t to their directed",
  585.                         "IN- and OUT-puts, making them usefull",
  586.                         "for things, like saving wires.",
  587.                         "Translocators are taking Stuff from",
  588.                         "the Block at their green Inputfacing",
  589.                         "and putting it into the Block at the",
  590.                         "red Output facing. Buffers do the same,",
  591.                         "but the grab Items from their own",
  592.                         "Inventory, what makes them usefull",
  593.                         "as Pipe-replacement.",
  594.                         "Buffers also have Redstone intelligence,",
  595.                         "which you can configure in their GUI."
  596.                 },
  597.                 new ItemStack[] {
  598.                         null,
  599.                         null,
  600.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,19),
  601.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,18),
  602.                         new ItemStack(GT_Mod.instance.mBlocks[1], 1,17),
  603.                         null,
  604.                         null,
  605.                         null,
  606.                         null,
  607.                         null,
  608.                         null,
  609.                         null,
  610.                         null,
  611.                         null
  612.                 }
  613.         );
  614.         new GT_ComputercubeDescription(
  615.                 new String[] {
  616.                         "Silver ore",
  617.                         "It's rarity is similar to Gold",
  618.                         "Silver can be used, to make",
  619.                         "Circuits cheaper, or you can use",
  620.                         "it for Redpower stuff.",
  621.                         "",
  622.                         "",
  623.                         "",
  624.                         "",
  625.                         "",
  626.                         "",
  627.                         "",
  628.                         "",
  629.                         "",
  630.                         "",
  631.                         "",
  632.                         ""
  633.                 },
  634.                 new ItemStack[] {
  635.                         null,
  636.                         null,
  637.                         GT_ModHandler.getIC2Item("silverDust", 1),
  638.                         GT_Mod.getGregTechItem(0, 1, 17),
  639.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 1),
  640.                         null,
  641.                         null,
  642.                         null,
  643.                         null,
  644.                         null,
  645.                         null,
  646.                         null,
  647.                         null,
  648.                         null
  649.                 }
  650.         );
  651.         new GT_ComputercubeDescription(
  652.                 new String[] {
  653.                         "Sapphires and Rubys",
  654.                         "These spawn exactly like Emeralds.",
  655.                         "But Rubies are found in Deserts,",
  656.                         "while Sapphires can be found in",
  657.                         "Oceans.",
  658.                         "",
  659.                         "They currently make only a cheaper",
  660.                         "Recipe for Energy crystals and",
  661.                         "Lapotron crystals, but they are",
  662.                         "Redpower compatible.",
  663.                         "",
  664.                         "",
  665.                         "",
  666.                         "",
  667.                         "",
  668.                         "",
  669.                         ""
  670.                 },
  671.                 new ItemStack[] {
  672.                         null,
  673.                         GT_Mod.getGregTechItem(0, 1, 32),
  674.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 3),
  675.                         GT_Mod.getGregTechItem(0, 1, 33),
  676.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 4),
  677.                         null,
  678.                         null,
  679.                         null,
  680.                         null,
  681.                         null,
  682.                         null,
  683.                         null,
  684.                         null,
  685.                         null
  686.                 }
  687.         );
  688.         new GT_ComputercubeDescription(
  689.                 new String[] {
  690.                         "Bauxiteore",
  691.                         "The Stuff out of which you can",
  692.                         "produce Aluminium and later also",
  693.                         "Titanium.",
  694.                         "You find this Ore in Plains and",
  695.                         "Forests.",
  696.                         "",
  697.                         "If you think Aluminium is useless",
  698.                         "then note, that mobs NEVER spawn",
  699.                         "ontop of an Aluminium block",
  700.                         "(Same applies also for Silver-,",
  701.                         "Gem- and Iridiumblocks)",
  702.                         "",
  703.                         "Production chain:",
  704.                         "macerating Bauxite ore",
  705.                         "centrifuging 24 Bauxite dust",
  706.                         "smelting Aluminium dust"
  707.                 },
  708.                 new ItemStack[] {
  709.                         new ItemStack(GT_Mod.instance.mBlocks[0], 1, 7),
  710.                         GT_Mod.getGregTechItem(0, 1, 18),
  711.                         GT_Mod.getGregTechItem(1, 1, 18),
  712.                         GT_Mod.getGregTechItem(1, 1, 17),
  713.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 5),
  714.                         null,
  715.                         null,
  716.                         null,
  717.                         null,
  718.                         null,
  719.                         null,
  720.                         null,
  721.                         null,
  722.                         null
  723.                 }
  724.         );
  725.         new GT_ComputercubeDescription(
  726.                 new String[] {
  727.                         "Titanium",
  728.                         "Produced by centrifuging Bauxite dust",
  729.                         "as a byproduct, this Material can make",
  730.                         "anything much more resistant against",
  731.                         "damage, like Explosions.",
  732.                         "Blocks made of Titanium ingots have a",
  733.                         "Blast resistance of 300, so twice as",
  734.                         "much as normal reinforced Stone.",
  735.                         "",
  736.                         "It can also be used to craft tons of",
  737.                         "mixed Metal Ingots",
  738.                         "",
  739.                         "",
  740.                         "",
  741.                         "",
  742.                         "",
  743.                         ""
  744.                 },
  745.                 new ItemStack[] {
  746.                         new ItemStack(GT_Mod.instance.mBlocks[0], 1, 8),
  747.                         GT_Mod.getGregTechItem(0, 1, 19),
  748.                         GT_Mod.getGregTechItem(1, 1, 19),
  749.                         GT_Mod.getGregTechItem(1, 1, 17),
  750.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 5),
  751.                         null,
  752.                         null,
  753.                         null,
  754.                         null,
  755.                         null,
  756.                         null,
  757.                         null,
  758.                         null,
  759.                         null
  760.                 }
  761.         );
  762.         new GT_ComputercubeDescription(
  763.                 new String[] {
  764.                         "Iridium ore",
  765.                         "You can find it only when you",
  766.                         "Stripmine very large Areas with",
  767.                         "Quarries and such. There is only",
  768.                         "one in every 5th-10th Chunk.",
  769.                         "It's even more rare in Oceans!",
  770.                         "",
  771.                         "Some people disable the UUM-Recipe",
  772.                         "for Iridium, for making getting it",
  773.                         "an Achievement",
  774.                         "",
  775.                         "",
  776.                         "",
  777.                         "",
  778.                         "",
  779.                         "",
  780.                         ""
  781.                 },
  782.                 new ItemStack[] {
  783.                         null,
  784.                         null,
  785.                         GT_ModHandler.getIC2Item("iridiumPlate", 1),
  786.                         GT_ModHandler.getIC2Item("iridiumOre", 1),
  787.                         new ItemStack(GT_Mod.instance.mBlocks[2], 1, 2),
  788.                         null,
  789.                         null,
  790.                         null,
  791.                         null,
  792.                         null,
  793.                         null,
  794.                         null,
  795.                         null,
  796.                         null
  797.                 }
  798.         );
  799.         new GT_ComputercubeDescription(
  800.                 new String[] {
  801.                         "Helium Coolant cell",
  802.                         "These are just cheaper, than the",
  803.                         "Waterbased Coolantc ells, and can",
  804.                         "also hold six times more Heat.",
  805.                         "",
  806.                         "Helium cells can also be used for",
  807.                         "making Luminators and Mining lasers",
  808.                         "",
  809.                         "",
  810.                         "",
  811.                         "",
  812.                         "",
  813.                         "",
  814.                         "",
  815.                         "",
  816.                         "",
  817.                         ""
  818.                 },
  819.                 new ItemStack[] {
  820.                         GT_Mod.getGregTechItem( 2, 1, 6),
  821.                         GT_Mod.getGregTechItem( 2, 1, 3),
  822.                         GT_Mod.getGregTechItem(34, 1, 0),
  823.                         GT_Mod.getGregTechItem(35, 1, 0),
  824.                         GT_Mod.getGregTechItem(36, 1, 0),
  825.                         null,
  826.                         null,
  827.                         null,
  828.                         null,
  829.                         null,
  830.                         null,
  831.                         null,
  832.                         null,
  833.                         null
  834.                 }
  835.         );
  836.         new GT_ComputercubeDescription(
  837.                 new String[] {
  838.                         "Destructopack",
  839.                         "Open its GUI via right click and",
  840.                         "dump all the useless Stuff from",
  841.                         "your Inventory into it, instead of",
  842.                         "littering Items into the World.",
  843.                         "",
  844.                         "",
  845.                         "",
  846.                         "",
  847.                         "",
  848.                         "",
  849.                         "",
  850.                         "",
  851.                         "",
  852.                         "",
  853.                         "",
  854.                         ""
  855.                 },
  856.                 new ItemStack[] {
  857.                         null,
  858.                         null,
  859.                         null,
  860.                         null,
  861.                         GT_Mod.getGregTechItem(33, 1, 0),
  862.                         null,
  863.                         null,
  864.                         null,
  865.                         null,
  866.                         null,
  867.                         null,
  868.                         null,
  869.                         null,
  870.                         null
  871.                 }
  872.         );
  873.         new GT_ComputercubeDescription(
  874.                 new String[] {
  875.                         "Dataorbs",
  876.                         "They store Data.",
  877.                         "",
  878.                         "Right click on a Computer cube, to",
  879.                         "extract a Reactor plan",
  880.                         "",
  881.                         "Sneak Right click on it, to insert",
  882.                         "a Reactor plan",
  883.                         "",
  884.                         "Works also with Sonictrons",
  885.                         "",
  886.                         "",
  887.                         "",
  888.                         "",
  889.                         "",
  890.                         "",
  891.                         ""
  892.                 },
  893.                 new ItemStack[] {
  894.                         null,
  895.                         null,
  896.                         null,
  897.                         null,
  898.                         GT_Mod.getGregTechItem(43, 1, 0),
  899.                         null,
  900.                         null,
  901.                         null,
  902.                         null,
  903.                         null,
  904.                         null,
  905.                         null,
  906.                         null,
  907.                         null
  908.                 }
  909.         );
  910.         new GT_ComputercubeDescription(
  911.                 new String[] {
  912.                         "Energy orbs",
  913.                         "10 Million EU in one Orb!",
  914.                         "",
  915.                         "This is a Tier IV Energy storage",
  916.                         "So a MFSU is not enough for it!",
  917.                         "",
  918.                         "Use it to create a Lapotron pack,",
  919.                         "which is like an ultimate Lappack!",
  920.                         "",
  921.                         "",
  922.                         "",
  923.                         "",
  924.                         "",
  925.                         "",
  926.                         "",
  927.                         "",
  928.                         ""
  929.                 },
  930.                 new ItemStack[] {
  931.                         null,
  932.                         null,
  933.                         null,
  934.                         GT_Mod.getGregTechItem(45, 1, 0),
  935.                         GT_Mod.getGregTechItem(37, 1, 0),
  936.                         null,
  937.                         null,
  938.                         null,
  939.                         null,
  940.                         null,
  941.                         null,
  942.                         null,
  943.                         null,
  944.                         null
  945.                 }
  946.         );
  947.         new GT_ComputercubeDescription(
  948.                 new String[] {
  949.                         "Iridium Neutron Reflector",
  950.                         "It's used for Fusion reactor coils,",
  951.                         "and works like a normal one",
  952.                         "inside a Reactor, but it's also",
  953.                         "INDESTRUCTIBLE*.",
  954.                         "",
  955.                         "",
  956.                         "",
  957.                         "",
  958.                         "",
  959.                         "",
  960.                         "",
  961.                         "",
  962.                         "",
  963.                         "",
  964.                         "",
  965.                         "* = only for weardown"
  966.                 },
  967.                 new ItemStack[] {
  968.                         null,
  969.                         null,
  970.                         null,
  971.                         null,
  972.                         GT_Mod.getGregTechItem(40, 1, 0),
  973.                         null,
  974.                         null,
  975.                         null,
  976.                         null,
  977.                         null,
  978.                         null,
  979.                         null,
  980.                         null,
  981.                         null
  982.                 }
  983.         );
  984.         new GT_ComputercubeDescription(
  985.                 new String[] {
  986.                         "Rock cutter",
  987.                         "You want to get whole Blocks, but",
  988.                         "your Drill is not enchantable?",
  989.                         "The Rock cutter has an awesome",
  990.                         "SilkTouch III Function!",
  991.                         "",
  992.                         "It works like a Drill but you",
  993.                         "get the whole Block instead of",
  994.                         "'macerated' Ores!",
  995.                         "",
  996.                         "Put those Blocks into a Macerator",
  997.                         "and double your Diamond income!",
  998.                         "",
  999.                         "",
  1000.                         "",
  1001.                         "",
  1002.                         ""
  1003.                 },
  1004.                 new ItemStack[] {
  1005.                         null,
  1006.                         null,
  1007.                         null,
  1008.                         null,
  1009.                         GT_Mod.getGregTechItem(46, 1, 0),
  1010.                         null,
  1011.                         null,
  1012.                         null,
  1013.                         null,
  1014.                         null,
  1015.                         null,
  1016.                         null,
  1017.                         null,
  1018.                         null
  1019.                 }
  1020.         );
  1021.         new GT_ComputercubeDescription(
  1022.                 new String[] {
  1023.                         "Tesla Staff",
  1024.                         "This completly untested PvP-Weapon",
  1025.                         "destroys electric Armor in one hit",
  1026.                         "",
  1027.                         "The Energyorb inside it must be",
  1028.                         "fully charged to let this work.",
  1029.                         "",
  1030.                         "We are not responsible for any",
  1031.                         "electrocution damage to yourself,",
  1032.                         "while using it.",
  1033.                         "",
  1034.                         "",
  1035.                         "",
  1036.                         "",
  1037.                         "",
  1038.                         "",
  1039.                         ""
  1040.                 },
  1041.                 new ItemStack[] {
  1042.                         null,
  1043.                         null,
  1044.                         null,
  1045.                         null,
  1046.                         GT_Mod.getGregTechItem(47, 1, 0),
  1047.                         null,
  1048.                         null,
  1049.                         null,
  1050.                         null,
  1051.                         null,
  1052.                         null,
  1053.                         null,
  1054.                         null,
  1055.                         null
  1056.                 }
  1057.         );
  1058.     }
  1059.    
  1060.    
  1061.    
  1062.    
  1063.    
  1064.    
  1065.    
  1066.    
  1067.    
  1068. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement