380 lines
15 KiB
Plaintext
Raw Normal View History

2022-01-23 23:35:02 +08:00
import crafttweaker.item.IIngredient;
import mods.gregtech.recipe.RecipeMap;
import scripts.common.makeShaped as makeShaped;
//Gravistar
// Gravi Star * 1
<recipemap:autoclave>.findRecipe(7680, [<metaitem:quantumstar>], [<liquid:neutronium> * 288]).remove();
autoclave.recipeBuilder()
.inputs(<minecraft:nether_star>)
.fluidInputs(<liquid:neutronium> * 36)
.outputs([<metaitem:gravistar>])
.duration(480).EUt(7680).buildAndRegister();
makeShaped("of_sunnarium_plates", <advsolars:sunnarium_plate> * 4,
["RRR",
"RSR",
"RRR"],
{ S : <advsolars:sunnarium>, R : <ore:plateHastelloyC276> });
makeShaped("of_enriched_sunnarium", <advsolars:sunnarium_enriched> * 4,
["NAN",
"ASA",
"NAN"],
{ N : <contenttweaker:stabilizedneptunium>,
A : <contenttweaker:stabilizedamericium>,
S : <advsolars:sunnarium> });
makeShaped("of_enriched_sunnarium_plate", <advsolars:sunnarium_enriched_plate>,
[" E ",
"EPE",
" E "],
{ E : <advsolars:sunnarium_enriched>, P : <advsolars:sunnarium_plate> });
2022-03-05 15:48:14 +08:00
2022-01-23 23:35:02 +08:00
//Radon
electrolyzer.recipeBuilder()
.inputs([<contenttweaker:radiumsalt>])
.outputs([<metaitem:dustRockSalt>])
.fluidOutputs(<liquid:radon> * 1000)
.duration(200).EUt(2000).buildAndRegister();
electrolyzer.recipeBuilder()
.inputs([<minecraft:glass> * 4])
.outputs([<minecraft:quartz>])
.duration(100).EUt(20).buildAndRegister();
//Gem Sensor
makeShaped("of_gem_sensor", <contenttweaker:gemsensor>,
[" O ",
"PSP",
" P "],
{ O : <advancedrocketry:satelliteprimaryfunction>,
S : <metaitem:sensor.iv>,
P : <ore:plateTungstenCarbide> });
//Composition Sensor
recipes.remove(<advancedrocketry:satelliteprimaryfunction:1>);
makeShaped("of_composition_sensor", <advancedrocketry:satelliteprimaryfunction:1>,
[" O ",
"PSP",
" P "],
{ O : <advancedrocketry:satelliteprimaryfunction>,
S : <metaitem:sensor.hv>,
P : <ore:plateStainlessSteel> });
2022-01-25 14:28:49 +08:00
//Neutronium from Piles
2022-01-23 23:35:02 +08:00
blast_furnace.recipeBuilder()
.inputs([<avaritia:resource:2> * 9])
.fluidInputs([<liquid:xenon> * 250])
2022-01-25 14:28:49 +08:00
.outputs(<metaitem:nuggetNeutronium>)
2022-01-23 23:35:02 +08:00
.property("temperature", 9600)
.duration(40).EUt(500000).buildAndRegister();
2022-01-25 14:28:49 +08:00
recipes.addShapeless(<avaritia:resource:2> * 9, [<metaitem:nuggetNeutronium>]);
2022-01-23 23:35:02 +08:00
extractor.recipeBuilder()
.inputs(<contenttweaker:impossiblerealmdata>)
.outputs([<contenttweaker:quantumflux>])
.duration(100).EUt(3000).buildAndRegister();
recipes.remove(<extrautils2:rainbowgenerator>);
makeShaped("of_rainbow_generator", <extrautils2:rainbowgenerator>,
["OTO",
"OHO",
"OBO"],
{ O : <extrautils2:opinium:8>,
H : <contenttweaker:heartofauniverse>,
T : <extrautils2:rainbowgenerator:2>,
B : <extrautils2:rainbowgenerator:1> });
recipes.remove(<craftelytra:elytra_wing>);
makeShaped("of_elytra_wing", <craftelytra:elytra_wing>,
[" PP",
"PE ",
"PP "],
{ P : <metaitem:platePalladium>,
E : <metaitem:devtech:gemPerfectEmerald> });
2022-01-23 23:35:02 +08:00
recipes.remove(<minecraft:elytra>);
makeShaped("of_elytra", <minecraft:elytra>,
[" ", "WGW", " "],
{ W : <craftelytra:elytra_wing>,
G : <enderio:item_material:7> });
fusion_reactor.recipeBuilder()
.fluidInputs([<liquid:berkelium> * 16, <liquid:californium> * 16])
.fluidOutputs(<liquid:einsteinium> * 16)
.duration(100)
.EUt(15360)
.property("eu_to_start", 400000000)
.buildAndRegister();
2022-03-05 15:48:14 +08:00
2022-01-23 23:35:02 +08:00
//Nuclear Stuff
centrifuge.findRecipe(320, [<metaitem:dustUranium>], [null]).remove();
makeShaped("of_nc_cell_block", <nuclearcraft:cell_block>,
["TCT",
"C C",
"TCT"],
{ T : <ore:ingotTough>, C : <gregtech:transparent_casing> });
val trimPattern as string[] = ["N N",
" C ",
"N N"];
recipes.remove(<extendedcrafting:trimmed>);
makeShaped("of_iron_trimmed_black_steel",
<extendedcrafting:trimmed>, trimPattern,
{ N : <ore:nuggetIron>, C : <metaitem:blockBlackSteel> }); // Black Steel Block
recipes.remove(<extendedcrafting:trimmed:1>);
makeShaped("of_gold_trimmed_black_steel",
<extendedcrafting:trimmed:1>, trimPattern,
{ N : <ore:nuggetGold>, C : <metaitem:blockBlackSteel> }); //Black Steel Block
recipes.remove(<extendedcrafting:trimmed:2>);
makeShaped("of_diamond_trimmed_black_steel",
<extendedcrafting:trimmed:2>, trimPattern,
{ N : <ore:nuggetDiamond>, C : <metaitem:blockBlackSteel> }); //Black Steel Block
recipes.remove(<extendedcrafting:trimmed:3>);
makeShaped("of_emerald_trimmed_black_steel",
<extendedcrafting:trimmed:3>, trimPattern,
{ N : <ore:nuggetEmerald>, C : <metaitem:blockBlackSteel> }); //Black Steel Block
recipes.remove(<extendedcrafting:trimmed:4>);
makeShaped("of_crystaltine_trimmed_black_steel",
<extendedcrafting:trimmed:4>, trimPattern,
{ N : <extendedcrafting:material:25>, C : <metaitem:blockBlackSteel> }); //Black Steel Block
recipes.remove(<extendedcrafting:trimmed:5>);
makeShaped("of_omnium_trimmed_black_steel",
<extendedcrafting:trimmed:5>, trimPattern,
{ N : <extendedcrafting:material:33>, C : <metaitem:blockBlackSteel> }); //Black Steel Block
//Add conversion recipe
recipes.addShapeless(<avaritia:resource:3>, [<metaitem:nuggetNeutronium>]);
//Processing Array
recipes.remove(<metaitem:processing_array>);
makeShaped("of_processing_array", <metaitem:processing_array>,
["CSC",
"AHA",
"CBC"],
{ A : <metaitem:robot.arm.iv>, //Robot Arm (IV)
H : <meta_tile_entity:hull.iv>, //Machine Hull (IV)
C : <ore:circuitLuv>, //T6 Circuit
2022-01-23 23:35:02 +08:00
S : <advsolars:sunnarium>, //Sunnarium
B : <metaitem:tool.dataorb>}); //dataorb
// Titanium Ingot * 26
Update qb from #186, and update GTCEu, GCYM and AE2 (#185) * Mention how it isn't complete * Edit mode off * Finish Cobbleworks Line Also slightly rephrased Quests design. * Fix Steam Grinder quest in HM Was requesting Bronze Hulls instead of Machine Hulls. * Hide Half Ships in NM * Change Readme to Nomicoins * Mention processing lines tab in README.md * Change DML to DME * Re-organise cobbleworks chain Also deleted random blank quest * Re-organise Cobbleworks again Also made the last quest of each chain (exception, cobbleworks) not be silent, so that you can know that the whole chain is complete. * Add new tier two missions to qb * NM Stuff State clearly if a quests' task logic is 'OR' Rename GT Tools quest to GregTech Electric Tools Explain AE2 autocrafting Emphasize Hatch and Bus Mechanics Redo Naq Proc again Explain main features of JEI Utils * Update TODO list * Small Changes [Both HM and NM] Remove mention of DML in Fish Oil Quest [HM] Improve Pulsating Polymer Clay Processing Line [NM] Remove excess colour changes in new 'Setting Up Autocrafting' quest [NM] * Some changes Get ready to add PE and PVC chain Fix qb in accordance with CEu 2.5.0 Fixed some prerequisites * Seem to fix CT errors Will check again later. * Update Mods (GTCEu, GCYM, AE2) * try to fix ct scripts agan * Finally fix all ct errors Tested on both NM and HM. * 1.5 * Revert "1.5" This reverts commit 978cea98acc230dda35ca60ecfd59fe1ef2419cf. * HM Fixes Fixes HM tools quests with GTCEu 2.5 Fixes LV electrolyser description being misinformative * HM fixes fixes HM tool quests with GTCEU 2.5 and other * More HM Fixes Fixes Genesis quest, and changes towards new early game progression * Fix up Genesis quest, edit off * Ready for release Remove traces of Ethylene chain, will get it for next update * Remove final traces of PE and PVC chain * remove extra wood pulp recipe * ethylene and diode quest + minor Co-authored-by: tracer4b <61507029+tracer4b@users.noreply.github.com>
2023-01-14 16:41:32 +11:00
<recipemap:arc_furnace>.findRecipe(30, [<metaitem:processing_array>], [<liquid:oxygen> * 3102]).remove();
// Titanium Dust * 26
<recipemap:macerator>.findRecipe(8, [<metaitem:processing_array>], null).remove();
2022-01-23 23:35:02 +08:00
2022-01-27 06:26:41 +08:00
// UHV Batbufs
recipes.addShaped(<metaitem:battery_buffer.uhv.4>, [
[<metaitem:wireGtQuadrupleEuropium>, <ore:chestWood>, <metaitem:wireGtQuadrupleEuropium>],
[<metaitem:wireGtQuadrupleEuropium>, <metaitem:hull.uhv>, <metaitem:wireGtQuadrupleEuropium>]
]);
recipes.addShaped(<metaitem:battery_buffer.uhv.8>, [
[<metaitem:wireGtOctalEuropium>, <ore:chestWood>, <metaitem:wireGtOctalEuropium>],
[<metaitem:wireGtOctalEuropium>, <metaitem:hull.uhv>, <metaitem:wireGtOctalEuropium>]
]);
2022-02-05 00:52:48 +08:00
recipes.addShaped(<metaitem:battery_buffer.uhv.16>, [
[<metaitem:wireGtHexEuropium>, <ore:chestWood>, <metaitem:wireGtHexEuropium>],
[<metaitem:wireGtHexEuropium>, <metaitem:hull.uhv>, <metaitem:wireGtHexEuropium>]
]);
// UHV Turbo Charger
recipes.addShaped(<metaitem:charger.uhv>, [
[<metaitem:wireGtQuadrupleEuropium>, <ore:chestWood>, <metaitem:wireGtQuadrupleEuropium>],
[<metaitem:wireGtQuadrupleEuropium>, <metaitem:hull.uhv>, <metaitem:wireGtQuadrupleEuropium>],
[<metaitem:cableGtSingleEuropium>, <ore:circuitUhv>, <metaitem:cableGtSingleEuropium>]
2022-02-09 21:40:22 +08:00
]);
// Assembly Line
2022-02-09 21:40:22 +08:00
// ZPM Field Generator * 1
2022-02-27 21:51:24 +08:00
<recipemap:assembly_line>.findRecipe(24000, [<metaitem:frameNaquadahAlloy>, <metaitem:plateNaquadahAlloy> * 6, <metaitem:quantumstar>, <metaitem:emitter.zpm> * 2, <metaitem:circuit.quantum_mainframe> * 2, <metaitem:wireFineUraniumRhodiumDinaquadide> * 64, <metaitem:wireFineUraniumRhodiumDinaquadide> * 64, <metaitem:cableGtSingleVanadiumGallium> * 4], [<liquid:soldering_alloy> * 1152]).remove();
// Moved to Groovy
2022-02-13 19:10:18 +08:00
// Rhodium Plated Palladium
// Rhodium Plated Palladium Dust * 4
<recipemap:mixer>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 1})], null).remove();
mixer.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.circuit(1)
.outputs(<metaitem:dustRhodiumPlatedPalladium> * 6)
.duration(400)
.EUt(7680)
.buildAndRegister();
// Palladium Dust * 3
<recipemap:centrifuge>.findRecipe(30, [<metaitem:dustRhodiumPlatedPalladium> * 4], null).remove();
centrifuge.recipeBuilder()
.inputs(<metaitem:dustRhodiumPlatedPalladium> * 6)
.outputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.duration(630)
.EUt(30)
.buildAndRegister();
// Molten Rhodium Plated Palladium * 576
<recipemap:alloy_blast_smelter>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 12})], [<liquid:argon> * 200]).remove();
// Molten Rhodium Plated Palladium * 576
<recipemap:alloy_blast_smelter>.findRecipe(7680, [<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:circuit.integrated>.withTag({Configuration: 2})], null).remove();
alloy_blast_smelter.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.circuit(3)
.fluidOutputs(<liquid:molten.rhodium_plated_palladium> * 864)
.property("temperature", 4500)
.duration(3600)
.EUt(7680)
.buildAndRegister();
alloy_blast_smelter.recipeBuilder()
.inputs([<metaitem:dustPalladium> * 3, <metaitem:dustRhodium>, <metaitem:dustLumium> * 2])
.fluidInputs(<liquid:argon> * 300)
.circuit(13)
.fluidOutputs(<liquid:molten.rhodium_plated_palladium> * 864)
.property("temperature", 4500)
.duration(2412)
.EUt(7680)
2022-03-24 23:07:41 +08:00
.buildAndRegister();
2022-04-09 20:43:34 +08:00
// Trinium balance
// Trinium Sulfide Dust * 1
<recipemap:centrifuge>.findRecipe(1920, null, [<liquid:impure_enriched_naquadah_solution> * 2000]).remove();
centrifuge.recipeBuilder()
.fluidInputs(<liquid:impure_enriched_naquadah_solution> * 2000)
.outputs(<metaitem:dustTriniumSulfide> * 2, <metaitem:dustAntimonyTrifluoride> * 2)
.fluidOutputs(<liquid:enriched_naquadah_solution> * 1000)
.duration(400).EUt(1920).buildAndRegister();
2022-05-02 13:46:58 +08:00
// World Accelerators
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.lv");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.mv");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.hv");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.ev");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.iv");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.luv");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.zpm");
recipes.removeByRecipeName("gregtech:gregtech.machine.world_accelerator.uv");
2022-05-06 22:27:15 +08:00
// Mercury Barium Calcium Cuprate Ingot * 32
Update qb from #186, and update GTCEu, GCYM and AE2 (#185) * Mention how it isn't complete * Edit mode off * Finish Cobbleworks Line Also slightly rephrased Quests design. * Fix Steam Grinder quest in HM Was requesting Bronze Hulls instead of Machine Hulls. * Hide Half Ships in NM * Change Readme to Nomicoins * Mention processing lines tab in README.md * Change DML to DME * Re-organise cobbleworks chain Also deleted random blank quest * Re-organise Cobbleworks again Also made the last quest of each chain (exception, cobbleworks) not be silent, so that you can know that the whole chain is complete. * Add new tier two missions to qb * NM Stuff State clearly if a quests' task logic is 'OR' Rename GT Tools quest to GregTech Electric Tools Explain AE2 autocrafting Emphasize Hatch and Bus Mechanics Redo Naq Proc again Explain main features of JEI Utils * Update TODO list * Small Changes [Both HM and NM] Remove mention of DML in Fish Oil Quest [HM] Improve Pulsating Polymer Clay Processing Line [NM] Remove excess colour changes in new 'Setting Up Autocrafting' quest [NM] * Some changes Get ready to add PE and PVC chain Fix qb in accordance with CEu 2.5.0 Fixed some prerequisites * Seem to fix CT errors Will check again later. * Update Mods (GTCEu, GCYM, AE2) * try to fix ct scripts agan * Finally fix all ct errors Tested on both NM and HM. * 1.5 * Revert "1.5" This reverts commit 978cea98acc230dda35ca60ecfd59fe1ef2419cf. * HM Fixes Fixes HM tools quests with GTCEu 2.5 Fixes LV electrolyser description being misinformative * HM fixes fixes HM tool quests with GTCEU 2.5 and other * More HM Fixes Fixes Genesis quest, and changes towards new early game progression * Fix up Genesis quest, edit off * Ready for release Remove traces of Ethylene chain, will get it for next update * Remove final traces of PE and PVC chain * remove extra wood pulp recipe * ethylene and diode quest + minor Co-authored-by: tracer4b <61507029+tracer4b@users.noreply.github.com>
2023-01-14 16:41:32 +11:00
<recipemap:arc_furnace>.findRecipe(30, [<metaitem:world_accelerator.hv>], [<liquid:oxygen> * 3896]).remove();
2022-05-06 22:27:15 +08:00
// Mercury Barium Calcium Cuprate Dust * 32
<recipemap:macerator>.findRecipe(32, [<metaitem:world_accelerator.hv>], null).remove();
// Uranium Triplatinum Ingot * 32
Update qb from #186, and update GTCEu, GCYM and AE2 (#185) * Mention how it isn't complete * Edit mode off * Finish Cobbleworks Line Also slightly rephrased Quests design. * Fix Steam Grinder quest in HM Was requesting Bronze Hulls instead of Machine Hulls. * Hide Half Ships in NM * Change Readme to Nomicoins * Mention processing lines tab in README.md * Change DML to DME * Re-organise cobbleworks chain Also deleted random blank quest * Re-organise Cobbleworks again Also made the last quest of each chain (exception, cobbleworks) not be silent, so that you can know that the whole chain is complete. * Add new tier two missions to qb * NM Stuff State clearly if a quests' task logic is 'OR' Rename GT Tools quest to GregTech Electric Tools Explain AE2 autocrafting Emphasize Hatch and Bus Mechanics Redo Naq Proc again Explain main features of JEI Utils * Update TODO list * Small Changes [Both HM and NM] Remove mention of DML in Fish Oil Quest [HM] Improve Pulsating Polymer Clay Processing Line [NM] Remove excess colour changes in new 'Setting Up Autocrafting' quest [NM] * Some changes Get ready to add PE and PVC chain Fix qb in accordance with CEu 2.5.0 Fixed some prerequisites * Seem to fix CT errors Will check again later. * Update Mods (GTCEu, GCYM, AE2) * try to fix ct scripts agan * Finally fix all ct errors Tested on both NM and HM. * 1.5 * Revert "1.5" This reverts commit 978cea98acc230dda35ca60ecfd59fe1ef2419cf. * HM Fixes Fixes HM tools quests with GTCEu 2.5 Fixes LV electrolyser description being misinformative * HM fixes fixes HM tool quests with GTCEU 2.5 and other * More HM Fixes Fixes Genesis quest, and changes towards new early game progression * Fix up Genesis quest, edit off * Ready for release Remove traces of Ethylene chain, will get it for next update * Remove final traces of PE and PVC chain * remove extra wood pulp recipe * ethylene and diode quest + minor Co-authored-by: tracer4b <61507029+tracer4b@users.noreply.github.com>
2023-01-14 16:41:32 +11:00
<recipemap:arc_furnace>.findRecipe(30, [<metaitem:world_accelerator.ev>], [<liquid:oxygen> * 9149]).remove();
2022-05-06 22:27:15 +08:00
// Uranium Triplatinum Dust * 32
<recipemap:macerator>.findRecipe(32, [<metaitem:world_accelerator.ev>], null).remove();
// Tungstensteel Ingot * 32
Update qb from #186, and update GTCEu, GCYM and AE2 (#185) * Mention how it isn't complete * Edit mode off * Finish Cobbleworks Line Also slightly rephrased Quests design. * Fix Steam Grinder quest in HM Was requesting Bronze Hulls instead of Machine Hulls. * Hide Half Ships in NM * Change Readme to Nomicoins * Mention processing lines tab in README.md * Change DML to DME * Re-organise cobbleworks chain Also deleted random blank quest * Re-organise Cobbleworks again Also made the last quest of each chain (exception, cobbleworks) not be silent, so that you can know that the whole chain is complete. * Add new tier two missions to qb * NM Stuff State clearly if a quests' task logic is 'OR' Rename GT Tools quest to GregTech Electric Tools Explain AE2 autocrafting Emphasize Hatch and Bus Mechanics Redo Naq Proc again Explain main features of JEI Utils * Update TODO list * Small Changes [Both HM and NM] Remove mention of DML in Fish Oil Quest [HM] Improve Pulsating Polymer Clay Processing Line [NM] Remove excess colour changes in new 'Setting Up Autocrafting' quest [NM] * Some changes Get ready to add PE and PVC chain Fix qb in accordance with CEu 2.5.0 Fixed some prerequisites * Seem to fix CT errors Will check again later. * Update Mods (GTCEu, GCYM, AE2) * try to fix ct scripts agan * Finally fix all ct errors Tested on both NM and HM. * 1.5 * Revert "1.5" This reverts commit 978cea98acc230dda35ca60ecfd59fe1ef2419cf. * HM Fixes Fixes HM tools quests with GTCEu 2.5 Fixes LV electrolyser description being misinformative * HM fixes fixes HM tool quests with GTCEU 2.5 and other * More HM Fixes Fixes Genesis quest, and changes towards new early game progression * Fix up Genesis quest, edit off * Ready for release Remove traces of Ethylene chain, will get it for next update * Remove final traces of PE and PVC chain * remove extra wood pulp recipe * ethylene and diode quest + minor Co-authored-by: tracer4b <61507029+tracer4b@users.noreply.github.com>
2023-01-14 16:41:32 +11:00
<recipemap:arc_furnace>.findRecipe(30, [<metaitem:world_accelerator.iv>], [<liquid:oxygen> * 7502]).remove();
2022-05-06 22:27:15 +08:00
// Tungstensteel Dust * 32
<recipemap:macerator>.findRecipe(32, [<metaitem:world_accelerator.iv>], null).remove();
// Moved to Groovy
2022-05-06 22:27:15 +08:00
/* UHV Multis */
// Rotary Hearth Furnace
recipes.remove(<metaitem:gcym:mega_blast_furnace>);
// Moved to Groovy
2022-05-02 13:46:58 +08:00
// Bulk Blast Chiller
recipes.remove(<metaitem:gcym:mega_vacuum_freezer>);
// Moved to Groovy
2022-05-02 13:46:58 +08:00
2022-03-24 23:07:41 +08:00
// Stabilized Miners Tooltips
<contenttweaker:tieroneship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tieroneship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tieroneship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiertwoship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tiertwoship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tiertwoship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierthreeship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tierthreeship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tierthreeship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierfourship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierfourship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierfourship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierfourandhalfship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tierfourandhalfship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tierfourandhalfship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tierfiveship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tierfiveship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tierfiveship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiersixship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiersixship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiersixship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiersevenship_stabilized>.addTooltip(format.italic(
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tiersevenship_stabilized>.addTooltip(format.italic(
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tiersevenship_stabilized_matter>.addTooltip(format.italic(
format.white("It looks oddly familiar.")));
2022-03-24 23:07:41 +08:00
<contenttweaker:tiereightship_stabilized>.addTooltip(format.italic(
2022-03-24 23:07:41 +08:00
format.white("A stabilized version, injected with a Heart of a Universe.")));
<contenttweaker:tiereightship_stabilized>.addTooltip(format.italic(
2022-03-24 23:07:41 +08:00
format.white("Lasts indefinitely. Reusable. Totally not overpowered.")));
<contenttweaker:tiereightship_stabilized_matter>.addTooltip(format.italic(
2022-03-24 23:07:41 +08:00
format.white("It looks oddly familiar.")));