pre-0.18.0 update
This commit is contained in:
@@ -439,3 +439,14 @@ recipes.addShapeless(<appliedenergistics2:part:467>,
|
||||
recipes.addShapeless(<appliedenergistics2:part:469>,
|
||||
[<appliedenergistics2:part:460>, <appliedenergistics2:energy_cell>.reuse()]);
|
||||
|
||||
|
||||
|
||||
recipes.addShaped(<appliedenergistics2:material:35>*18,
|
||||
[[<minecraft:redstone>, <contenttweaker:fractal_stone>, <minecraft:redstone>],
|
||||
[<contenttweaker:fractal_stone>, <appliedenergistics2:material:22>, <contenttweaker:fractal_stone>],
|
||||
[<minecraft:redstone>, <contenttweaker:fractal_stone>, <minecraft:redstone>]]);
|
||||
|
||||
recipes.addShaped(<appliedenergistics2:material:54>*18,
|
||||
[[<minecraft:dye:4>, <contenttweaker:fractal_stone>, <minecraft:dye:4>],
|
||||
[<contenttweaker:fractal_stone>, <appliedenergistics2:material:22>, <contenttweaker:fractal_stone>],
|
||||
[<minecraft:dye:4>, <contenttweaker:fractal_stone>, <minecraft:dye:4>]]);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -100,3 +100,9 @@ mods.astralsorcery.Altar.addAttunementAltarRecipe("MeatballCraft:shaped/internal
|
||||
// //Outer Items, indices 25+
|
||||
//
|
||||
// ]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:actualized_starlight_sphere>*8,
|
||||
[[<contenttweaker:starlight_sphere>, <contenttweaker:starlight_sphere>, <contenttweaker:starlight_sphere>],
|
||||
[<contenttweaker:starlight_sphere>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:starlight_sphere>],
|
||||
[<contenttweaker:starlight_sphere>, <contenttweaker:starlight_sphere>, <contenttweaker:starlight_sphere>]]);
|
||||
|
||||
@@ -0,0 +1,173 @@
|
||||
#loader contenttweaker
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import native.erebus.entity.EntityAnimatedBlock;
|
||||
import crafttweaker.util.Position3f;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var astralinsight10 = VanillaFactory.createItem("astral_insight_10");
|
||||
astralinsight10.maxStackSize = 1;
|
||||
astralinsight10.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 2000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight10.register();
|
||||
|
||||
|
||||
var astralinsight20 = VanillaFactory.createItem("astral_insight_20");
|
||||
astralinsight20.maxStackSize = 1;
|
||||
astralinsight20.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 20000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight20.register();
|
||||
|
||||
|
||||
var astralinsight30 = VanillaFactory.createItem("astral_insight_30");
|
||||
astralinsight30.maxStackSize = 1;
|
||||
astralinsight30.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 600000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight30.register();
|
||||
|
||||
|
||||
var astralinsight40 = VanillaFactory.createItem("astral_insight_40");
|
||||
astralinsight40.maxStackSize = 1;
|
||||
astralinsight40.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 20000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight40.register();
|
||||
|
||||
var astralinsight50 = VanillaFactory.createItem("astral_insight_50");
|
||||
astralinsight50.maxStackSize = 1;
|
||||
astralinsight50.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 800000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight50.register();
|
||||
|
||||
var astralinsight60 = VanillaFactory.createItem("astral_insight_60");
|
||||
astralinsight60.maxStackSize = 1;
|
||||
astralinsight60.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 18000000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight60.register();
|
||||
|
||||
|
||||
var astralinsight70 = VanillaFactory.createItem("astral_insight_70");
|
||||
astralinsight70.maxStackSize = 1;
|
||||
astralinsight70.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 800000000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight70.register();
|
||||
|
||||
|
||||
var astralinsight80 = VanillaFactory.createItem("astral_insight_80");
|
||||
astralinsight80.maxStackSize = 1;
|
||||
astralinsight80.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 20000000000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight80.register();
|
||||
|
||||
|
||||
var astralinsight90 = VanillaFactory.createItem("astral_insight_90");
|
||||
astralinsight90.maxStackSize = 1;
|
||||
astralinsight90.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 600000000000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight90.register();
|
||||
|
||||
|
||||
var astralinsight100 = VanillaFactory.createItem("astral_insight_100");
|
||||
astralinsight100.maxStackSize = 1;
|
||||
astralinsight100.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("astralsorcery exp @p 20000000000000000", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
astralinsight100.register();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -289,17 +289,17 @@ mods.avaritia.ExtremeCrafting.addShaped("maketheultimatestewdire",
|
||||
<contenttweaker:just_jambalaya>, <contenttweaker:sausage_sandwich>, <contenttweaker:just_jambalaya>,
|
||||
<contenttweaker:bento_xxxl>, <contenttweaker:monolithic_meal>, <contenttweaker:cube_jello_cubes>],
|
||||
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "Warp Milkshake"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
<contenttweaker:dragon_egg_omelette>, <contenttweaker:strange_meatball>, <contenttweaker:dragon_egg_omelette>,
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "Warp Milkshake"})],
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"})],
|
||||
|
||||
[<contenttweaker:dried_vishroom>, <contenttweaker:really_golden_steak>, <contenttweaker:chocolate_cherry_truffle>,
|
||||
<contenttweaker:hearty_meatball>, <xreliquary:apothecary_cauldron>, <contenttweaker:hearty_meatball>,
|
||||
<contenttweaker:chocolate_cherry_truffle>, <contenttweaker:really_golden_steak>, <contenttweaker:dried_vishroom>],
|
||||
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "Warp Milkshake"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
<contenttweaker:dragon_egg_omelette>, <contenttweaker:strange_meatball>, <contenttweaker:dragon_egg_omelette>,
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "Warp Milkshake"})],
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"})],
|
||||
|
||||
[<contenttweaker:cube_jello_cubes>, <contenttweaker:monolithic_meal>, <contenttweaker:bento_xxxl>,
|
||||
<contenttweaker:just_jambalaya>, <contenttweaker:sausage_sandwich>, <contenttweaker:just_jambalaya>,
|
||||
@@ -313,3 +313,266 @@ mods.avaritia.ExtremeCrafting.addShaped("maketheultimatestewdire",
|
||||
<contenttweaker:lovely_latke>, <contenttweaker:feast_of_hell>, <contenttweaker:lovely_latke>,
|
||||
<contenttweaker:nice_clean_salad>, <contenttweaker:burned_enchanted_feather>, <contenttweaker:intense_meatball_pasta>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("maketheultimatestewdire2",
|
||||
<avaritia:ultimate_stew>*16,
|
||||
[[<contenttweaker:intense_meatball_pasta>, <contenttweaker:burned_enchanted_feather>, <contenttweaker:nice_clean_salad>,
|
||||
<contenttweaker:lovely_latke>, <contenttweaker:feast_of_hell>, <contenttweaker:lovely_latke>,
|
||||
<contenttweaker:nice_clean_salad>, <contenttweaker:burned_enchanted_feather>, <contenttweaker:intense_meatball_pasta>],
|
||||
|
||||
[<contenttweaker:addiction_cookie>, <contenttweaker:aglio_olio_peperoncino_pasta>, <contenttweaker:tasty_eye_delight>,
|
||||
<contenttweaker:big_boy_steak>, <contenttweaker:yummy_concrete>, <contenttweaker:big_boy_steak>,
|
||||
<contenttweaker:tasty_eye_delight>, <contenttweaker:aglio_olio_peperoncino_pasta>, <contenttweaker:addiction_cookie>],
|
||||
|
||||
[<contenttweaker:cube_jello_cubes>, <contenttweaker:monolithic_meal>, <contenttweaker:bento_xxxl>,
|
||||
<contenttweaker:just_jambalaya>, <contenttweaker:sausage_sandwich>, <contenttweaker:just_jambalaya>,
|
||||
<contenttweaker:bento_xxxl>, <contenttweaker:monolithic_meal>, <contenttweaker:cube_jello_cubes>],
|
||||
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
<contenttweaker:dragon_egg_omelette>, <contenttweaker:strange_meatball>, <contenttweaker:dragon_egg_omelette>,
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"})],
|
||||
|
||||
[<contenttweaker:dried_vishroom>, <contenttweaker:really_golden_steak>, <contenttweaker:chocolate_cherry_truffle>,
|
||||
<contenttweaker:hearty_meatball>, <contenttweaker:cosmic_pot>, <contenttweaker:hearty_meatball>,
|
||||
<contenttweaker:chocolate_cherry_truffle>, <contenttweaker:really_golden_steak>, <contenttweaker:dried_vishroom>],
|
||||
|
||||
[<xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"}), <contenttweaker:radioactive_nachos>, <contenttweaker:disgusting_omelette>,
|
||||
<contenttweaker:dragon_egg_omelette>, <contenttweaker:strange_meatball>, <contenttweaker:dragon_egg_omelette>,
|
||||
<contenttweaker:disgusting_omelette>, <contenttweaker:radioactive_nachos>, <xreliquary:potion>.withTag({effects: [{duration: 600, potency: 1, name: "thaumcraft:thaumarhia"}], hasPotion: 1 as byte, Name: "扭曲奶昔"})],
|
||||
|
||||
[<contenttweaker:cube_jello_cubes>, <contenttweaker:monolithic_meal>, <contenttweaker:bento_xxxl>,
|
||||
<contenttweaker:just_jambalaya>, <contenttweaker:sausage_sandwich>, <contenttweaker:just_jambalaya>,
|
||||
<contenttweaker:bento_xxxl>, <contenttweaker:monolithic_meal>, <contenttweaker:cube_jello_cubes>],
|
||||
|
||||
[<contenttweaker:addiction_cookie>, <contenttweaker:aglio_olio_peperoncino_pasta>, <contenttweaker:tasty_eye_delight>,
|
||||
<contenttweaker:big_boy_steak>, <contenttweaker:yummy_concrete>, <contenttweaker:big_boy_steak>,
|
||||
<contenttweaker:tasty_eye_delight>, <contenttweaker:aglio_olio_peperoncino_pasta>, <contenttweaker:addiction_cookie>],
|
||||
|
||||
[<contenttweaker:intense_meatball_pasta>, <contenttweaker:burned_enchanted_feather>, <contenttweaker:nice_clean_salad>,
|
||||
<contenttweaker:lovely_latke>, <contenttweaker:feast_of_hell>, <contenttweaker:lovely_latke>,
|
||||
<contenttweaker:nice_clean_salad>, <contenttweaker:burned_enchanted_feather>, <contenttweaker:intense_meatball_pasta>]]);
|
||||
|
||||
|
||||
val dragoncrucwishful = RecipeBuilder.newBuilder("dragoncrucwishful","dragonfire_crucible",100);
|
||||
dragoncrucwishful.addFluidInput(<fluid:eternal_dragon_fire>*1000000);
|
||||
dragoncrucwishful.addItemInput(<contenttweaker:wish_of_infinity>);
|
||||
dragoncrucwishful.addItemInput(<contenttweaker:actualizing_hyperuranion_ingot>);
|
||||
dragoncrucwishful.addItemInput(<contenttweaker:shard_of_the_cosmos>);
|
||||
dragoncrucwishful.addItemOutput(<contenttweaker:ingot_of_infinite_wishes>);
|
||||
dragoncrucwishful.build();
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makehoegreenearh",
|
||||
<avaritia:infinity_hoe>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <avaritia:resource:6>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, null],
|
||||
|
||||
[null, null, null,
|
||||
<avaritia:resource:6>, <contenttweaker:seal_of_freedom>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, <bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "emerald", Amount: 65336000}}), null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "diamond", Amount: 65336000}}), null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makeaxenatureruin",
|
||||
<avaritia:infinity_axe>,
|
||||
|
||||
[[<bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "tungsten", Amount: 65336000}}), null, null,
|
||||
null, null, null,
|
||||
null, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <avaritia:resource:6>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[<avaritia:matter_cluster>, <avaritia:resource:6>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <contenttweaker:seal_of_freedom>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[<bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "titanium", Amount: 65336000}}), null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <avaritia:resource:6>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makeshovelplaneteater",
|
||||
<avaritia:infinity_shovel>,
|
||||
|
||||
[[null, null, null,
|
||||
<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>,
|
||||
null, null, null],
|
||||
|
||||
[null, null, <ore:ingotFractalliteHalite>,
|
||||
<avaritia:resource:6>, <avaritia:resource:6>, <avaritia:resource:6>,
|
||||
<ore:ingotFractalliteHalite>, null, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <contenttweaker:seal_of_freedom>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <contenttweaker:ingot_of_infinite_wishes>, <avaritia:resource:6>,
|
||||
<avaritia:resource:6>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <avaritia:resource:6>,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
<avaritia:resource:6>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <bloodmagic:blood_tank:13>.withTag({Fluid: {FluidName: "constantan", Amount: 131072000}}), null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <bloodmagic:blood_tank:13>.withTag({Fluid: {FluidName: "invar", Amount: 131072000}}), null],
|
||||
|
||||
[null, <avaritia:matter_cluster>, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <avaritia:matter_cluster>, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makepickworldeater",
|
||||
<avaritia:infinity_pickaxe>,
|
||||
|
||||
[[null, <avaritia:block_resource:1>, <avaritia:block_resource:1>,
|
||||
<avaritia:block_resource:1>, <avaritia:block_resource:1>, <avaritia:block_resource:1>,
|
||||
<avaritia:block_resource:1>, <avaritia:block_resource:1>, null],
|
||||
|
||||
[<ore:ingotFractalliteHalite>, <avaritia:block_resource:1>, <avaritia:block_resource:1>,
|
||||
<avaritia:block_resource:1>, <contenttweaker:seal_of_freedom>, <avaritia:block_resource:1>,
|
||||
<avaritia:block_resource:1>, <avaritia:block_resource:1>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <bloodmagic:blood_tank:13>.withTag({Fluid: {FluidName: "enderium", Amount: 131072000}}), null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <bloodmagic:blood_tank:13>.withTag({Fluid: {FluidName: "lumium", Amount: 131072000}}), null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makeswordcosmos",
|
||||
<avaritia:infinity_sword>,
|
||||
|
||||
[[null, null, null,
|
||||
null, null, null,
|
||||
null, <avaritia:block_resource:1>, <avaritia:block_resource:1>],
|
||||
|
||||
[null, null, null,
|
||||
null, null, null,
|
||||
<avaritia:block_resource:1>, <avaritia:matter_cluster>.withTag({clusteritems: {total: 4096, items: [{item: {id: "aoa3:yellow_shyre_bricks", Count: 1, Damage: 0 as short}, count: 4096}]}}), <avaritia:block_resource:1>],
|
||||
|
||||
[null, <bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "myrmitite", Amount: 524288000}}), null,
|
||||
null, null, <avaritia:block_resource:1>,
|
||||
<avaritia:matter_cluster>.withTag({clusteritems: {total: 4096, items: [{item: {id: "botania:livingrock", Count: 1, Damage: 0 as short}, count: 4096}]}}), <avaritia:block_resource:1>, null],
|
||||
|
||||
[null, <contenttweaker:core_of_halite_definition>, null,
|
||||
null, <avaritia:block_resource:1>, <avaritia:matter_cluster>.withTag({clusteritems: {total: 4096, items: [{item: {id: "abyssalcraft:stone", Count: 1, Damage: 5 as short}, count: 4096}]}}),
|
||||
<avaritia:block_resource:1>, null, null],
|
||||
|
||||
[null, <contenttweaker:core_of_halite_definition>, null,
|
||||
<avaritia:block_resource:1>, <avaritia:matter_cluster>.withTag({clusteritems: {total: 4096, items: [{item: {id: "botania:biomestonea", Count: 1, Damage: 13 as short}, count: 4096}]}}), <avaritia:block_resource:1>,
|
||||
null, null, null],
|
||||
|
||||
[null, null, <contenttweaker:self_actualizing_warren_rift>,
|
||||
<avaritia:block_resource:1>, <avaritia:block_resource:1>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, null, <avaritiaitem:cosmic_balance>,
|
||||
<contenttweaker:self_actualizing_warren_rift>, null, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:ingot_of_infinite_wishes>, null,
|
||||
null, <contenttweaker:core_of_halite_definition>, <contenttweaker:core_of_halite_definition>,
|
||||
<bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "sednanite", Amount: 524288000}}), null, null],
|
||||
|
||||
[<minecraft:bedrock>, null, null,
|
||||
null, null, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
+651
-2
@@ -290,7 +290,7 @@ spatialphaser.itemRightClick = function(stack, world, player, hand) {
|
||||
|
||||
player.sendChat("使用更多实用设备模组的地形转化仪将群系转化为正确群系,赫尔维蒂维度将告诉你是哪一个。");
|
||||
player.sendChat("你得转化很大一块区域!");
|
||||
player.sendChat("站在改变后的群戏中使用该物品!");
|
||||
player.sendChat("站在改变后的群系中使用该物品!");
|
||||
|
||||
player.sendChat(" - - - ");
|
||||
player.sendChat("正在扫描周围区域");
|
||||
@@ -345,7 +345,7 @@ gemvoracity.itemRightClick = function(stack, world, player, hand) {
|
||||
|
||||
player.sendChat("使用更多实用设备模组的地形转化仪将群系转化为正确群系,未知维度将告诉你是哪一个。");
|
||||
player.sendChat("你得转化很大一块区域!");
|
||||
player.sendChat("站在改变后的群戏中使用该物品!");
|
||||
player.sendChat("站在改变后的群系中使用该物品!");
|
||||
|
||||
player.sendChat(" - - - ");
|
||||
player.sendChat("正在扫描周围区域");
|
||||
@@ -656,3 +656,652 @@ memoryrestorationritual.itemRightClick = function(stack, world, player, hand) {
|
||||
|
||||
};
|
||||
memoryrestorationritual.register();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var sprensummonerfaith = VanillaFactory.createItem("spren_summoner_faith");
|
||||
sprensummonerfaith.maxStackSize = 16;
|
||||
sprensummonerfaith.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Ancient Cavern" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于远古神殿(Ancient Cavern)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon ebwizardry:spectral_golem ~ ~2 ~ {CustomName:\"腐化信仰之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_restored_faith\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于远古神殿(Ancient Cavern)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerfaith.register();
|
||||
|
||||
|
||||
var sprensummonerdeath = VanillaFactory.createItem("spren_summoner_death");
|
||||
sprensummonerdeath.maxStackSize = 16;
|
||||
sprensummonerdeath.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Immortallis" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于不朽之地(Immortallis)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon aoa3:ghostly_night_reaper ~ ~2 ~ {CustomName:\"信仰之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_forgotten_fear_of_death\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于不朽之地(Immortallis)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerdeath.register();
|
||||
|
||||
|
||||
|
||||
var sprensummonerhaste = VanillaFactory.createItem("spren_summoner_haste");
|
||||
sprensummonerhaste.maxStackSize = 16;
|
||||
sprensummonerhaste.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Greckon" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于格瑞克(Greckon)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon aoa3:ghostly_charger ~ ~2 ~ {CustomName:\"急迫之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_forgiven_lost_time\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于格瑞克(Greckon)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerhaste.register();
|
||||
|
||||
|
||||
|
||||
var sprensummonerblasphemy = VanillaFactory.createItem("spren_summoner_blasphemy");
|
||||
sprensummonerblasphemy.maxStackSize = 16;
|
||||
sprensummonerblasphemy.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Dustopian Forest" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于异位森林(Dustopian Forest)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon mod_lavacow:grave_robber_ghost ~ ~2 ~ {CustomName:\"亵渎之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_rekindled_heritage\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于异位森林(Dustopian Forest)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerblasphemy.register();
|
||||
|
||||
|
||||
|
||||
var sprensummonerdarkness = VanillaFactory.createItem("spren_summoner_plot");
|
||||
sprensummonerdarkness.maxStackSize = 16;
|
||||
sprensummonerdarkness.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Outer Lands" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于外域(Outer Lands)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:eldritchguardian ~ ~2 ~ {CustomName:\"诡谋之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_no_hidden_intentions\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于外域(Outer Lands)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerdarkness.register();
|
||||
|
||||
|
||||
|
||||
var sprensummonerinjury = VanillaFactory.createItem("spren_summoner_injury");
|
||||
sprensummonerinjury.maxStackSize = 16;
|
||||
sprensummonerinjury.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Spooky Forest" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于幽魂森林(Spooky Forest)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon aoa3:ghostly_bugeye ~ ~2 ~ {CustomName:\"创痕之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_physical_healing\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于幽魂森林(Spooky Forest)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerinjury.register();
|
||||
|
||||
|
||||
var sprensummonerhelplessness = VanillaFactory.createItem("spren_summoner_inadequacy");
|
||||
sprensummonerhelplessness.maxStackSize = 16;
|
||||
sprensummonerhelplessness.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Ocean Spires" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于海上尖塔(Ocean Spires)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon mod_lavacow:ghost_swarmer ~ ~2 ~ {CustomName:\"欠损之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_realized_worth\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于海上尖塔(Ocean Spires)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerhelplessness.register();
|
||||
|
||||
|
||||
var sprensummonerloneliness = VanillaFactory.createItem("spren_summoner_loneliness");
|
||||
sprensummonerloneliness.maxStackSize = 16;
|
||||
sprensummonerloneliness.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Bog" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于泥塘(Bog)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon aoa3:ghostly_cyclops ~ ~2 ~ {CustomName:\"孤独之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_restored_relationship\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于泥塘(Bog)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerloneliness.register();
|
||||
|
||||
|
||||
var sprensummonercontrol = VanillaFactory.createItem("spren_summoner_control");
|
||||
sprensummonercontrol.maxStackSize = 16;
|
||||
sprensummonercontrol.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Mortum" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于死域(Mortum)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon abyssalcraft:dragonminion ~ ~2 ~ {CustomName:\"支配之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_surrender\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于死域(Mortum)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonercontrol.register();
|
||||
|
||||
|
||||
var sprensummonerprepotence = VanillaFactory.createItem("spren_summoner_prepotence");
|
||||
sprensummonerprepotence.maxStackSize = 16;
|
||||
sprensummonerprepotence.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Shyrelands" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于塞尔瑞(Shyrelands)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon aoa3:spectral_wizard ~ ~2 ~ {CustomName:\"霸权之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_individual_freedom\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:10000.0},{Name:generic.attackDamage, Base:10000.0}],Health:10000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于塞尔瑞(Shyrelands)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerprepotence.register();
|
||||
|
||||
|
||||
var sprensummonergluttony = VanillaFactory.createItem("spren_summoner_gluttony");
|
||||
sprensummonergluttony.maxStackSize = 16;
|
||||
sprensummonergluttony.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Nuclear Wasteland" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于核泄漏之地(Nuclear Wasteland)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon mod_lavacow:soulworm ~ ~2 ~ {CustomName:\"暴食之魂\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_individual_freedom\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:10000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于核泄漏之地(Nuclear Wasteland)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonergluttony.register();
|
||||
|
||||
|
||||
var sprensummonerarrogance = VanillaFactory.createItem("spren_summoner_arrogance");
|
||||
sprensummonerarrogance.maxStackSize = 16;
|
||||
sprensummonerarrogance.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val OceanBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val OceanBiomeName = "Storage Cell" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("需位于AE2(Storage Cell)群系");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon divinerpg:rainbour ~ ~2 ~ {CustomName:\"矜狂之灵\",HandItems:[{Count:1,id:\"contenttweaker:shard_of_individual_freedom\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:10000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:200,permshields:200}}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("需位于AE2(Storage Cell)群系");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
sprensummonerarrogance.register();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var oathoftheundeadlords = VanillaFactory.createItem("oath_of_the_seven_undead_lords");
|
||||
oathoftheundeadlords.maxStackSize = 16;
|
||||
oathoftheundeadlords.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 193) {
|
||||
player.sendChat("需位于争竞界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// obtain position under player
|
||||
var playerpos = player.position as crafttweaker.util.Position3f;
|
||||
|
||||
// locations to place biomes
|
||||
val IromineBiomeLocations = [[0,0]] as int[][];
|
||||
val BoreanBiomeLocations = [[0,0]] as int[][];
|
||||
val CeleveBiomeLocations = [[0,0]] as int[][];
|
||||
val RunandorBiomeLocations = [[0,0]] as int[][];
|
||||
val BarathosBiomeLocations = [[0,0]] as int[][];
|
||||
val MysteriumBiomeLocations = [[0,0]] as int[][];
|
||||
val IcespikesBiomeLocations = [[0,0]] as int[][];
|
||||
|
||||
// biome to pattern
|
||||
val IromineBiomeName = "Iromine" as string;
|
||||
val BoreanBiomeName = "L'Borean Ponds" as string;
|
||||
val CeleveBiomeName = "Celeve" as string;
|
||||
val RunandorBiomeName = "Runandor" as string;
|
||||
val BarathosBiomeName = "Barathos" as string;
|
||||
val MysteriumBiomeName = "Mysterium" as string;
|
||||
val IcespikesBiomeName = "Ice Plains Spikes" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val IromineMatches = checkBiomesAtPositions(IromineBiomeName, playerpos, IromineBiomeLocations, world) as int;
|
||||
val BoreanMatches = checkBiomesAtPositions(BoreanBiomeName, playerpos, BoreanBiomeLocations, world) as int;
|
||||
val CeleveMatches = checkBiomesAtPositions(CeleveBiomeName, playerpos, CeleveBiomeLocations, world) as int;
|
||||
val RunandorMatches = checkBiomesAtPositions(RunandorBiomeName, playerpos, RunandorBiomeLocations, world) as int;
|
||||
val BarathosMatches = checkBiomesAtPositions(BarathosBiomeName, playerpos, BarathosBiomeLocations, world) as int;
|
||||
val MysteriumMatches = checkBiomesAtPositions(MysteriumBiomeName, playerpos, MysteriumBiomeLocations, world) as int;
|
||||
val IcespikesMatches = checkBiomesAtPositions(IcespikesBiomeName, playerpos, IcespikesBiomeLocations, world) as int;
|
||||
|
||||
|
||||
if((IromineMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"色欲领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_lust\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((BoreanMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"傲慢领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_pride\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((CeleveMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"嫉妒领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_envy\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((RunandorMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"暴怒领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_wrath\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((BarathosMatches) == 1) {
|
||||
Commands.call("summon Item ~ ~10 ~ {Item:{id:\"contenttweaker:oath_of_the_lord_of_gluttony\",Count:1b}}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((MysteriumMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"贪婪领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_greed\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
if((IcespikesMatches) == 1) {
|
||||
Commands.call("summon thaumcraft:cultistcleric ~ ~2 ~ {CustomName:\"懒惰领主\",HandItems:[{Count:1,id:\"contenttweaker:respect_of_the_lord_of_sloth\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:400,permshields:400}},ArmorItems:[{Count:1,id:\"avaritia:infinity_boots\"},{Count:1,id:\"avaritia:infinity_pants\"},{Count:1,id:\"avaritia:infinity_chestplate\"},{Count:1,id:\"avaritia:infinity_helmet\"}]}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("没想到你居然能收到这条消息,挺厉害的嘛,为什么会想着更改争竞界的生物群系?");
|
||||
player.sendChat("嗯,这是给你的好东西");
|
||||
Commands.call("summon Item ~ ~10 ~ {Item:{id:\"contenttweaker:fading_wool\",Count:1b}}", player, world, false, true);
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
oathoftheundeadlords.register();
|
||||
@@ -45,3 +45,58 @@ recipes.addShaped(<contenttweaker:golem_core>,
|
||||
mods.bloodmagic.TartaricForge.removeRecipe([<bloodarsenal:base_item:8>,<bloodmagic:decorative_brick:2>, <minecraft:golden_apple:1>, <minecraft:nether_star>]);
|
||||
mods.bloodmagic.TartaricForge.addRecipe(<bloodarsenal:base_item:9>,[<bloodarsenal:base_item:8>, <bloodmagic:decorative_brick:2>, <avaritia:block_resource:1>, <materialpart:fractallite_halite:ingot>], 16000,16000);
|
||||
|
||||
|
||||
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "infusion"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "lava"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "water"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "cobblestone"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "felling"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "green_grove"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "interdiction"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "pump"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualSteadfastHeart"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "speed"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "grounding"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "jumping"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "placer"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualLuna"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualNaturesLeech"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualPeace"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualSol"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "suppression"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "zephyr"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "portal"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "animal_growth"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "containment"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "crushing"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "magnetism"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualEldritchWill"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "crystal_split"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "harvest"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualLifeEssenceAltar"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "full_stomach"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualLifeEssenceTank"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ward_of_sacrosanctity"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ellipsoid"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualClonedSoul"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualCulling"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "well_of_suffering"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "feathered_earth"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "feathered_knife"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "ritualUnmaking"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "crystal_harvest"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "forsaken_soul"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "regeneration"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "armour_evolve"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "expulsion"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "upgrade_remove"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "armour_downgrade"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "veil_of_evil"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "purification"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "eternal_soul"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "condor"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "altar_builder"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "meteor"}));
|
||||
mods.chisel.Carving.addVariation("ritualdivinermodes", <bloodmagic:ritual_diviner:1>.withTag({current_ritual: "blood_burner"}));
|
||||
|
||||
|
||||
@@ -367,6 +367,65 @@ addController(<modularmachinery:divine_combiner_controller>, "modularmachinery:d
|
||||
|
||||
addController(<modularmachinery:eldritch_impetus_catalyzer_controller>, "modularmachinery:eldritch_impetus_catalyzer");
|
||||
|
||||
addController(<modularmachinery:chaotic_striker_controller>, "modularmachinery:chaotic_striker");
|
||||
|
||||
addController(<modularmachinery:mythical_resource_miner_tier30_controller>, "modularmachinery:mythical_resource_miner_tier30");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_actualizing_stone_controller>, "modularmachinery:warren_extractor_actualizing_stone");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_naquadah_controller>, "modularmachinery:warren_extractor_naquadah");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_dimensional_shards_controller>, "modularmachinery:warren_extractor_dimensional_shards");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_dragonsteel_controller>, "modularmachinery:warren_extractor_dragonsteel");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_ichor_controller>, "modularmachinery:warren_extractor_ichor");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_controller>, "modularmachinery:recursive_brain_in_a_vat");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_ahkrast_korvalain_controller>, "modularmachinery:recursive_brain_in_a_vat_ahkrast_korvalain");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_donaeth_rusen_controller>, "modularmachinery:recursive_brain_in_a_vat_donaeth_rusen");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_kurald_emurlahn_controller>, "modularmachinery:recursive_brain_in_a_vat_kurald_emurlahn");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_kurald_galain_controller>, "modularmachinery:recursive_brain_in_a_vat_kurald_galain");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_kurald_thyrllan_controller>, "modularmachinery:recursive_brain_in_a_vat_kurald_thyrllan");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_omtose_phellack_controller>, "modularmachinery:recursive_brain_in_a_vat_omtose_phellack");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_starvald_demelain_controller>, "modularmachinery:recursive_brain_in_a_vat_starvald_demelain");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_tellan_controller>, "modularmachinery:recursive_brain_in_a_vat_tellan");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_thel_controller>, "modularmachinery:recursive_brain_in_a_vat_thel");
|
||||
|
||||
addController(<modularmachinery:recursive_brain_in_a_vat_verdith_anath_controller>, "modularmachinery:recursive_brain_in_a_vat_verdith_anath");
|
||||
|
||||
addController(<modularmachinery:warren_extractor_rhenia_controller>, "modularmachinery:warren_extractor_rhenia");
|
||||
|
||||
addController(<modularmachinery:dyson_extruder_controller>, "modularmachinery:dyson_extruder");
|
||||
|
||||
addController(<modularmachinery:mythic_excavation_lattice_controller>, "modularmachinery:mythic_excavation_lattice");
|
||||
|
||||
addController(<modularmachinery:orb_of_infinite_wishes_controller>, "modularmachinery:orb_of_infinite_wishes");
|
||||
|
||||
addController(<modularmachinery:catalyst_of_balance_controller>, "modularmachinery:catalyst_of_balance");
|
||||
|
||||
addController(<modularmachinery:dyson_dynamizer_controller>, "modularmachinery:dyson_dynamizer");
|
||||
|
||||
addController(<modularmachinery:dyson_scatterer_controller>, "modularmachinery:dyson_scatterer");
|
||||
|
||||
addController(<modularmachinery:dyson_revolver_controller>, "modularmachinery:dyson_revolver");
|
||||
|
||||
addController(<modularmachinery:recurrent_nightmare_synthesizer_controller>, "modularmachinery:recurrent_nightmare_synthesizer");
|
||||
|
||||
addController(<modularmachinery:dyson_abater_controller>, "modularmachinery:dyson_abater");
|
||||
|
||||
addController(<modularmachinery:black_hole_juicer_controller>, "modularmachinery:black_hole_juicer");
|
||||
|
||||
|
||||
|
||||
|
||||
// Leave this at the bottom of the file, as it depends on the oredict being filled
|
||||
|
||||
@@ -11,22 +11,22 @@ mods.extendedcrafting.TableCrafting.addShaped(<botania:altar:0>,
|
||||
mods.botania.RuneAltar.removeRecipe(<botania:rune:0>);
|
||||
|
||||
mods.botania.RuneAltar.addRecipe(<botania:rune:0>*3,
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <divinerpg:whale_fin>, <divinerpg:crab_claw>, <minecraft:fish:3>], 25);
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <divinerpg:whale_fin>, <divinerpg:crab_claw>, <minecraft:fish:3>], 150);
|
||||
|
||||
mods.botania.RuneAltar.removeRecipe(<botania:rune:1>);
|
||||
|
||||
mods.botania.RuneAltar.addRecipe(<botania:rune:1>*3,
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <divinerpg:purple_blaze>, <erebus:materials:21>, <tconstruct:ingots:2>], 25);
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <divinerpg:purple_blaze>, <erebus:materials:21>, <tconstruct:ingots:2>], 150);
|
||||
|
||||
mods.botania.RuneAltar.removeRecipe(<botania:rune:2>);
|
||||
|
||||
mods.botania.RuneAltar.addRecipe(<botania:rune:2>*3,
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <thaumcraft:vishroom>, <nuclearcraft:dry_earth>, <cyclicmagic:crystallized_obsidian>], 25);
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <thaumcraft:vishroom>, <nuclearcraft:dry_earth>, <cyclicmagic:crystallized_obsidian>], 150);
|
||||
|
||||
mods.botania.RuneAltar.removeRecipe(<botania:rune:3>);
|
||||
|
||||
mods.botania.RuneAltar.addRecipe(<botania:rune:3>*3,
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <actuallyadditions:block_smiley_cloud>, <iceandfire:stymphalian_bird_feather>, <tconstruct:edible:4>], 25);
|
||||
[<botania:manaresource:0>, <botania:manaresource:23>, <actuallyadditions:block_smiley_cloud>, <iceandfire:stymphalian_bird_feather>, <tconstruct:edible:4>], 150);
|
||||
|
||||
recipes.addShaped(<extrabotany:gildedmashedpotato>,
|
||||
[[null, <minecraft:gold_nugget>, null],
|
||||
@@ -76,4 +76,14 @@ recipes.addShaped(<extrabotany:puredaisypendant>,
|
||||
[null, <botania:specialflower>.withTag({type: "puredaisy"}), null]]);
|
||||
|
||||
recipes.addShapeless(<botania:flighttiara:9>,
|
||||
[<botania:flighttiara:*>, <avaritia:cosmic_meatballs>]);
|
||||
[<botania:flighttiara:*>, <avaritia:cosmic_meatballs>]);
|
||||
|
||||
|
||||
mods.botania.PureDaisy.addRecipe(<divinerpg:mortum_dirt>, <contenttweaker:mortum_livingrock>);
|
||||
|
||||
mods.botania.PureDaisy.addRecipe(<divinerpg:mortum_leaves>, <contenttweaker:mortum_livingwood>);
|
||||
|
||||
|
||||
mods.nuclearcraft.rock_crusher.addRecipe([<contenttweaker:mortum_livingrock>, <botania:livingrock:0>*8, <botania:livingrock:0>*4, <botania:livingrock:0>*2]);
|
||||
|
||||
mods.nuclearcraft.rock_crusher.addRecipe([<contenttweaker:mortum_livingwood>, <botania:livingwood:0>*8, <botania:livingwood:0>*4, <botania:livingwood:0>*2]);
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<contenttweaker:lunalus_callstone>.addTooltip(format.red("需在指定维度使用:[虚无]月球"));
|
||||
<contenttweaker:wildwood_callstone>.addTooltip(format.red("需在指定维度使用:原始森林"));
|
||||
<contenttweaker:skythern_callstone>.addTooltip(format.red("需在指定维度使用:空境"));
|
||||
<contenttweaker:immortallis_callstone>.addTooltip(format.red("需在指定维度使用:不朽之地"));
|
||||
<contenttweaker:immortallis_callstone>.addTooltip(format.red("需在指定维度使用:暮色森林"));
|
||||
<contenttweaker:horrific_callstone>.addTooltip(format.red("需在指定维度使用:哈托尔"));
|
||||
<contenttweaker:harbinger_callstone>.addTooltip(format.red("需在指定维度使用:暮色森林"));
|
||||
<contenttweaker:dream_callstone>.addTooltip(format.red("需在指定维度使用:梦魇世界"));
|
||||
@@ -88,4 +88,10 @@
|
||||
<contenttweaker:lucky_box_twilight_books>.addTooltip(format.red("需在指定维度使用:主世界"));
|
||||
<contenttweaker:lucky_box_twilight_weapons>.addTooltip(format.red("需在指定维度使用:主世界"));
|
||||
<contenttweaker:dread_cleansing_callstone>.addTooltip(format.red("需在指定维度使用:基岩维度"));
|
||||
<contenttweaker:rites_of_liberation>.addTooltip(format.red("需在指定维度使用:主世界"));
|
||||
<contenttweaker:guardians_of_shadesmar_callstone>.addTooltip(format.red("需在指定维度使用:卡尚"));
|
||||
<contenttweaker:trinitas_callstone>.addTooltip(format.red("需在指定维度使用:叁壹界"));
|
||||
<contenttweaker:tainted_prison_key>.addTooltip(format.red("需在指定维度使用:衰腐界"));
|
||||
<contenttweaker:mission_of_undeath_callstone>.addTooltip(format.red("需在指定维度使用:争竞界"));
|
||||
<contenttweaker:gun_devil_confrontation_callstone>.addTooltip(format.red("需在指定维度使用:争竞界"));
|
||||
<contenttweaker:universal_constellation_callstone>.addTooltip(format.red("需在指定维度使用:衰腐界"));
|
||||
<contenttweaker:ghost_of_annoyance_callstone>.addTooltip(format.red("需在指定维度使用:伽里弗雷"));
|
||||
+259
-1
@@ -4971,4 +4971,262 @@ luckyboxadventarmor.itemRightClick = function(stack, world, player, hand) {
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
luckyboxadventarmor.register();
|
||||
luckyboxadventarmor.register();
|
||||
|
||||
|
||||
var guardiansofshadesmarcallstone = VanillaFactory.createItem("guardians_of_shadesmar_callstone");
|
||||
guardiansofshadesmarcallstone.maxStackSize = 1;
|
||||
guardiansofshadesmarcallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚维度");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn kashan_structure_fourspren", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
guardiansofshadesmarcallstone.register();
|
||||
|
||||
|
||||
var sprensummonerhope = VanillaFactory.createItem("spren_summoner_hope");
|
||||
sprensummonerhope.maxStackSize = 1;
|
||||
sprensummonerhope.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚维度");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon twilightforest:raven ~ ~5 ~ {PersistenceRequired:1,Tags:[\"sprenhope\"],CustomName:\"希望之灵\"}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
sprensummonerhope.register();
|
||||
|
||||
|
||||
var sprensummonerbalance = VanillaFactory.createItem("spren_summoner_balance");
|
||||
sprensummonerbalance.maxStackSize = 1;
|
||||
sprensummonerbalance.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚维度");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon ebwizardry:spirit_wolf ~ ~5 ~ {PersistenceRequired:1,Tags:[\"sprenbalance\"],CustomName:\"平衡之灵\"}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
sprensummonerbalance.register();
|
||||
|
||||
|
||||
var sprensummonerglory = VanillaFactory.createItem("spren_summoner_glory");
|
||||
sprensummonerglory.maxStackSize = 1;
|
||||
sprensummonerglory.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚维度");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon ebwizardry:spirit_horse ~ ~5 ~ {PersistenceRequired:1,Tags:[\"sprenglory\"],CustomName:\"荣耀之灵\"}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
sprensummonerglory.register();
|
||||
|
||||
|
||||
var sprensummonerknowledge = VanillaFactory.createItem("spren_summoner_knowledge");
|
||||
sprensummonerknowledge.maxStackSize = 1;
|
||||
sprensummonerknowledge.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 190) {
|
||||
player.sendChat("需位于卡尚维度");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon aether_legacy:sheepuff ~ ~5 ~ {PersistenceRequired:1,Tags:[\"sprenknowledge\"],CustomName:\"知识之灵\"}", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
sprensummonerknowledge.register();
|
||||
|
||||
|
||||
var trinitascallstone = VanillaFactory.createItem("trinitas_callstone");
|
||||
trinitascallstone.maxStackSize = 1;
|
||||
trinitascallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 191) {
|
||||
player.sendChat("需位于叁壹界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn trinitas_structure_trinity", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
trinitascallstone.register();
|
||||
|
||||
|
||||
|
||||
var taintedprisonkey = VanillaFactory.createItem("tainted_prison_key");
|
||||
taintedprisonkey.maxStackSize = 1;
|
||||
taintedprisonkey.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 192) {
|
||||
player.sendChat("需位于衰腐界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn fuhai_structure_oldgod", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
taintedprisonkey.register();
|
||||
|
||||
|
||||
var missionofdeathcallstone = VanillaFactory.createItem("mission_of_undeath_callstone");
|
||||
missionofdeathcallstone.maxStackSize = 1;
|
||||
missionofdeathcallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 193) {
|
||||
player.sendChat("需位于争竞界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn travixte_structure_deathboss", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
missionofdeathcallstone.register();
|
||||
|
||||
|
||||
|
||||
var gundevilconfrontationcallstone = VanillaFactory.createItem("gun_devil_confrontation_callstone");
|
||||
gundevilconfrontationcallstone.maxStackSize = 1;
|
||||
gundevilconfrontationcallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 193) {
|
||||
player.sendChat("需位于争竞界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn callstone_gun_devil", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
gundevilconfrontationcallstone.register();
|
||||
|
||||
|
||||
var universalconstellationcallstone = VanillaFactory.createItem("universal_constellation_callstone");
|
||||
universalconstellationcallstone.maxStackSize = 1;
|
||||
universalconstellationcallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 192) {
|
||||
player.sendChat("需位于衰腐界");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
|
||||
Commands.call("pillar-spawn callstone_astral_bee", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
universalconstellationcallstone.register();
|
||||
|
||||
|
||||
var ghostofannoyancecallstone = VanillaFactory.createItem("ghost_of_annoyance_callstone");
|
||||
ghostofannoyancecallstone.maxStackSize = 1;
|
||||
ghostofannoyancecallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 624) {
|
||||
player.sendChat("需位于伽里弗雷");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("summon aoa3:ghostly_bugeye ~3 ~ ~ {HandItems:[{Count:1,id:\"contenttweaker:nightmare_of_annoyance\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"恼人的幽灵虫\",Attributes:[{Name:generic.maxHealth, Base:50000.0},{Name:generic.attackDamage, Base:100000.0}],Health:50000f}", player, world, false, true);
|
||||
Commands.call("summon aoa3:ghostly_bugeye ~3 ~ ~ {HandItems:[{Count:1,id:\"contenttweaker:nightmare_of_annoyance\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"恼人的幽灵虫\",Attributes:[{Name:generic.maxHealth, Base:50000.0},{Name:generic.attackDamage, Base:100000.0}],Health:50000f}", player, world, false, true);
|
||||
Commands.call("summon aoa3:ghostly_bugeye ~3 ~ ~ {HandItems:[{Count:1,id:\"contenttweaker:nightmare_of_annoyance\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"恼人的幽灵虫\",Attributes:[{Name:generic.maxHealth, Base:50000.0},{Name:generic.attackDamage, Base:100000.0}],Health:50000f}", player, world, false, true);
|
||||
Commands.call("summon aoa3:ghostly_bugeye ~3 ~ ~ {HandItems:[{Count:1,id:\"contenttweaker:nightmare_of_annoyance\"},{}],HandDropChances:[1.0f,0.0f],CustomName:\"恼人的幽灵虫\",Attributes:[{Name:generic.maxHealth, Base:50000.0},{Name:generic.attackDamage, Base:100000.0}],Health:50000f}", player, world, false, true);
|
||||
|
||||
Commands.call("pillar-spawn annoying_ghost_callstone", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
ghostofannoyancecallstone.register();
|
||||
|
||||
|
||||
|
||||
var strangestonecallstone = VanillaFactory.createItem("strange_stone_callstone");
|
||||
strangestonecallstone.maxStackSize = 1;
|
||||
strangestonecallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 624) {
|
||||
player.sendChat("需位于伽里弗雷");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("pillar-spawn callstone_strange_stone", player, world, false, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
strangestonecallstone.register();
|
||||
|
||||
@@ -263,8 +263,12 @@ mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:chaotic_egg>, <fluid:slum
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:slumbering_abyssite>*144, <fluid:shyrestone>*36, <fluid:imperial_abyssite>*144, null]);
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:chaotic_egg>, <fluid:imperial_abyssite>*144, <fluid:chaos>*14400]);
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:imperial_abyssite>*144, <fluid:flesh_world_ichor>*100, <fluid:gluttonous_abyssite>*144, null]);
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:chaotic_egg>, <fluid:gluttonous_abyssite>*12, <fluid:chaos>*14400]);
|
||||
|
||||
|
||||
mods.forestry.Squeezer.addRecipe(<fluid:purifying_fluid>*1000, [<contenttweaker:pure_egg>], 120);
|
||||
mods.nuclearcraft.melter.addRecipe([<contenttweaker:pure_egg>, <fluid:purifying_fluid>*1000]);
|
||||
|
||||
|
||||
recipes.addShaped(<chickens:spawn_egg>.withTag({ChickenType: {id: "contenttweaker:osmium_chicken"}}),
|
||||
|
||||
@@ -129,6 +129,7 @@ mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itembluepr
|
||||
mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythical_resource_miner_tier27"}));
|
||||
mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythical_resource_miner_tier28"}));
|
||||
mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythical_resource_miner_tier29"}));
|
||||
mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythical_resource_miner_tier30"}));
|
||||
mods.chisel.Carving.addVariation("mythicvoidminer", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:me_mythic_assembler"}));
|
||||
|
||||
|
||||
@@ -163,6 +164,17 @@ mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:bastion_of_flesh"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:sentient_meatball_monument"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:shrine_of_the_sentient_meatballs"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:chaotic_striker"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:dyson_extruder"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_excavation_lattice"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:orb_of_infinite_wishes"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:catalyst_of_balance"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:dyson_dynamizer"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:dyson_scatterer"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:dyson_revolver"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:dyson_abater"}));
|
||||
mods.chisel.Carving.addVariation("dysonstuff", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:black_hole_juicer"}));
|
||||
|
||||
|
||||
recipes.addShaped(<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_alloy_furnace"}),
|
||||
[[<modularmachinery:itemmodularium>,null,null],
|
||||
@@ -180,7 +192,6 @@ mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itembluep
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_gearworking_die"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_compactor"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_wiremill"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:nightmare_electrolyzer"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_furnace"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_drying_rack"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:inertial_confinement_reactor"}));
|
||||
@@ -209,3 +220,31 @@ mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itembluep
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_isotope_separator"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:quantum_condenser"}));
|
||||
mods.chisel.Carving.addVariation("mythicprocessors", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:mythic_processor_melter"}));
|
||||
|
||||
|
||||
recipes.addShaped(<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:nightmare_electrolyzer"}),
|
||||
[[<modularmachinery:itemmodularium>,<modularmachinery:itemmodularium>,<modularmachinery:itemmodularium>],
|
||||
[null,<minecraft:paper>,null],
|
||||
[<modularmachinery:itemmodularium>,<modularmachinery:itemmodularium>,<modularmachinery:itemmodularium>]]);
|
||||
|
||||
mods.chisel.Carving.addGroup("bigresourcegenerators");
|
||||
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:nightmare_electrolyzer"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recurrent_nightmare_synthesizer"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_actualizing_stone"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_naquadah"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_dimensional_shards"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_dragonsteel"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_rhenia"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:warren_extractor_ichor"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_ahkrast_korvalain"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_donaeth_rusen"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_kurald_emurlahn"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_kurald_galain"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_kurald_thyrllan"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_omtose_phellack"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_starvald_demelain"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_tellan"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_thel"}));
|
||||
mods.chisel.Carving.addVariation("bigresourcegenerators", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:recursive_brain_in_a_vat_verdith_anath"}));
|
||||
|
||||
@@ -118,6 +118,7 @@ mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:
|
||||
mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:mythical_resource_miner_tier27_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:mythical_resource_miner_tier28_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:mythical_resource_miner_tier29_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:mythical_resource_miner_tier30_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicvoidminercontroller", <modularmachinery:me_mythic_assembler_controller>);
|
||||
|
||||
|
||||
@@ -151,6 +152,16 @@ mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:altar
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:bastion_of_flesh_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:sentient_meatball_monument_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:shrine_of_the_sentient_meatballs_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:chaotic_striker_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:dyson_extruder_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:mythic_excavation_lattice_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:orb_of_infinite_wishes_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:catalyst_of_balance_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:dyson_dynamizer_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:dyson_scatterer_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:dyson_revolver_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:dyson_abater_controller>);
|
||||
mods.chisel.Carving.addVariation("dysonstuffcontroller", <modularmachinery:black_hole_juicer_controller>);
|
||||
|
||||
|
||||
|
||||
@@ -166,7 +177,6 @@ mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_muon_extractor_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_gearworking_die_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_compactor_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:nightmare_electrolyzer_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_furnace_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_drying_rack_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:inertial_confinement_reactor_controller>);
|
||||
@@ -196,3 +206,28 @@ mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_isotope_separator_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:quantum_condenser_controller>);
|
||||
mods.chisel.Carving.addVariation("mythicprocessorscontroller", <modularmachinery:mythic_processor_melter_controller>);
|
||||
|
||||
|
||||
|
||||
mods.chisel.Carving.addGroup("bigresourcegeneratorscontroller");
|
||||
|
||||
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:nightmare_electrolyzer_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recurrent_nightmare_synthesizer_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_actualizing_stone_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_naquadah_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_dimensional_shards_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_dragonsteel_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_rhenia_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:warren_extractor_ichor_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_ahkrast_korvalain_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_donaeth_rusen_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_kurald_emurlahn_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_kurald_galain_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_kurald_thyrllan_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_omtose_phellack_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_starvald_demelain_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_tellan_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_thel_controller>);
|
||||
mods.chisel.Carving.addVariation("bigresourcegeneratorscontroller", <modularmachinery:recursive_brain_in_a_vat_verdith_anath_controller>);
|
||||
|
||||
@@ -8,3 +8,110 @@ recipes.addShaped(<contenttweaker:cuendillar_primer>,
|
||||
[<extrabotany:material:5>, <thaumadditions:mithminite_ingot>, <extrabotany:material:5>],
|
||||
[<thaumictinkerer:kamiresource:3>, <extrabotany:material:8>, <thaumictinkerer:kamiresource:3>]]);
|
||||
|
||||
mods.tconstruct.Casting.addTableRecipe(<contenttweaker:infinite_plate_stamp>, <tconstruct:large_plate>.withTag({Material: "infinity_avaritia_plustic"}), <fluid:orichalcum>, 720, true, 10);
|
||||
|
||||
val chaosstrikezalchemy = RecipeBuilder.newBuilder("chaosstrikezalchemy","chaotic_striker",640);
|
||||
chaosstrikezalchemy.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezalchemy.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["parafrosynium", "barathosynium", "wrought_iron", "adamantium"]}, Traits: ["darktraveler", "runic1", "stalwart", "thunder2", "flame2", "frost2", "hailhydra", "unnamed", "sharp", "magnetic2", "toolleveling"]}));
|
||||
chaosstrikezalchemy.setChance(0.0);
|
||||
chaosstrikezalchemy.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezalchemy.setChance(0.0);
|
||||
chaosstrikezalchemy.addItemInput(<contenttweaker:alchemical_particle>);
|
||||
chaosstrikezalchemy.addItemOutput(<contenttweaker:infinite_alchemical_plate>*64);
|
||||
chaosstrikezalchemy.build();
|
||||
|
||||
val chaosstrikezalchemyup = RecipeBuilder.newBuilder("chaosstrikezalchemyup","chaotic_striker",640);
|
||||
chaosstrikezalchemyup.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezalchemyup.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["trinity", "trinity", "trinity", "trinity"]}, Traits: ["lightboost", "thunder2", "holy", "toolleveling"]}));
|
||||
chaosstrikezalchemyup.setChance(0.0);
|
||||
chaosstrikezalchemyup.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezalchemyup.setChance(0.0);
|
||||
chaosstrikezalchemyup.addItemInput(<contenttweaker:alchemical_particle>);
|
||||
chaosstrikezalchemyup.addItemOutput(<contenttweaker:infinite_alchemical_plate>*64);
|
||||
chaosstrikezalchemyup.addItemOutput(<contenttweaker:infinite_alchemical_plate>*64);
|
||||
chaosstrikezalchemyup.addItemOutput(<contenttweaker:infinite_alchemical_plate>*64);
|
||||
chaosstrikezalchemyup.addItemOutput(<contenttweaker:infinite_alchemical_plate>*64);
|
||||
chaosstrikezalchemyup.build();
|
||||
|
||||
val chaosstrikezrecursion = RecipeBuilder.newBuilder("chaosstrikezrecursion","chaotic_striker",10);
|
||||
chaosstrikezrecursion.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezrecursion.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["runandium", "orichalcum", "neutronium", "kaiyu"]}, Traits: ["evil_pressure", "apocalypse", "laced", "mind", "body", "soul1", "thunder2", "flame2", "frost2", "uplifting", "shulking", "bone_shock", "high_in_calcium", "toolleveling"]}));
|
||||
chaosstrikezrecursion.setChance(0.0);
|
||||
chaosstrikezrecursion.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezrecursion.setChance(0.0);
|
||||
chaosstrikezrecursion.addItemInput(<contenttweaker:recursium_ingot>);
|
||||
chaosstrikezrecursion.addItemOutput(<contenttweaker:infinite_recursive_plate>);
|
||||
chaosstrikezrecursion.build();
|
||||
|
||||
val chaosstrikezrecursionup = RecipeBuilder.newBuilder("chaosstrikezrecursionup","chaotic_striker",10);
|
||||
chaosstrikezrecursionup.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezrecursionup.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["worthy", "worthy", "worthy", "worthy"]}, Traits: ["overflow", "bloodymary", "toolleveling"]}));
|
||||
chaosstrikezrecursionup.setChance(0.0);
|
||||
chaosstrikezrecursionup.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezrecursionup.setChance(0.0);
|
||||
chaosstrikezrecursionup.addItemInput(<contenttweaker:recursium_ingot>);
|
||||
chaosstrikezrecursionup.addItemOutput(<contenttweaker:infinite_recursive_plate>*4);
|
||||
chaosstrikezrecursionup.build();
|
||||
|
||||
val chaosstrikezentropy = RecipeBuilder.newBuilder("chaosstrikezentropy","chaotic_striker",10);
|
||||
chaosstrikezentropy.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezentropy.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["chaotic_plustic", "infinity_avaritia_plustic", "ascended_draconic_alloy", "vibranium_alloy"]}, Traits: ["darktraveler", "global", "brownmagic", "apocalypse", "spiky", "prickly", "ghastly", "endspeed", "toolleveling"]}));
|
||||
chaosstrikezentropy.setChance(0.0);
|
||||
chaosstrikezentropy.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezentropy.setChance(0.0);
|
||||
chaosstrikezentropy.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
chaosstrikezentropy.addItemOutput(<contenttweaker:infinite_entropic_plate>);
|
||||
chaosstrikezentropy.build();
|
||||
|
||||
val chaosstrikezentropyup = RecipeBuilder.newBuilder("chaosstrikezentropyup","chaotic_striker",10);
|
||||
chaosstrikezentropyup.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikezentropyup.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["cosmic_balance", "cosmic_balance", "cosmic_balance", "cosmic_balance"]}, Traits: ["hailhydra", "vindictive", "holy", "toolleveling"]}));
|
||||
chaosstrikezentropyup.setChance(0.0);
|
||||
chaosstrikezentropyup.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikezentropyup.setChance(0.0);
|
||||
chaosstrikezentropyup.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
chaosstrikezentropyup.addItemOutput(<contenttweaker:infinite_entropic_plate>*4);
|
||||
chaosstrikezentropyup.build();
|
||||
|
||||
val chaosstrikeztaint = RecipeBuilder.newBuilder("chaosstrikeztaint","chaotic_striker",10);
|
||||
chaosstrikeztaint.addEnergyPerTickInput(1000000000);
|
||||
chaosstrikeztaint.addItemInput(<tconstruct:hammer>.withTag({TinkerData: {Materials: ["silver", "thaumium", "blood_infused_glitch", "brass"]}, Traits: ["holy", "thaumic", "overflow", "toolleveling"]}));
|
||||
chaosstrikeztaint.setChance(0.0);
|
||||
chaosstrikeztaint.addItemInput(<contenttweaker:infinite_plate_stamp>);
|
||||
chaosstrikeztaint.setChance(0.0);
|
||||
chaosstrikeztaint.addItemInput(<contenttweaker:fractallite_taint>);
|
||||
chaosstrikeztaint.addItemOutput(<contenttweaker:infinite_tainted_plate>*16);
|
||||
chaosstrikeztaint.build();
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:cuendillar_plate>,
|
||||
1000000,
|
||||
<contenttweaker:brightseel_alloy_plate>,
|
||||
[<contenttweaker:cuendillar_primer>, <careerbees:ingredients:12>,
|
||||
<contenttweaker:infinite_alchemical_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:projectile_protection>.makeEnchantment(20)), <contenttweaker:infinite_entropic_plate>,
|
||||
<contenttweaker:cuendillar_primer>, <careerbees:ingredients:11>,
|
||||
itemUtils.createEnchantedBook(<enchantment:minecraft:smite>.makeEnchantment(20)), <contenttweaker:infinite_recursive_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:unbreaking>.makeEnchantment(75))]);
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:cuendillar_plate>*10,
|
||||
1000000,
|
||||
<contenttweaker:power_wrought_brightsteel_alloy_plate>,
|
||||
[<contenttweaker:cuendillar_primer>, <careerbees:ingredients:12>,
|
||||
<contenttweaker:infinite_alchemical_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:projectile_protection>.makeEnchantment(20)), <contenttweaker:infinite_entropic_plate>,
|
||||
<contenttweaker:cuendillar_primer>, <careerbees:ingredients:11>,
|
||||
itemUtils.createEnchantedBook(<enchantment:minecraft:smite>.makeEnchantment(20)), <contenttweaker:infinite_recursive_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:unbreaking>.makeEnchantment(75))]);
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:cuendillar_plate>*40,
|
||||
1000000,
|
||||
<contenttweaker:cleansed_brightsteel_alloy_plate>,
|
||||
[<contenttweaker:cuendillar_primer>, <careerbees:ingredients:12>,
|
||||
<contenttweaker:infinite_alchemical_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:projectile_protection>.makeEnchantment(20)), <contenttweaker:infinite_entropic_plate>,
|
||||
<contenttweaker:cuendillar_primer>, <careerbees:ingredients:11>,
|
||||
itemUtils.createEnchantedBook(<enchantment:minecraft:smite>.makeEnchantment(20)), <contenttweaker:infinite_recursive_plate>, itemUtils.createEnchantedBook(<enchantment:minecraft:unbreaking>.makeEnchantment(75))]);
|
||||
|
||||
|
||||
// <tconstruct:hammer>.withTag({TinkerData: {Materials: ["parafrosynium", "barathosynium", "wrought_iron", "adamantium"]}, Traits: ["darktraveler", "runic1", "stalwart", "thunder2", "flame2", "frost2", "hailhydra", "unnamed", "sharp", "magnetic2", "toolleveling"]})
|
||||
|
||||
// <tconstruct:hammer>.withTag({TinkerData: {Materials: ["runandium", "orichalcum", "neutronium", "kaiyu"]}, Traits: ["evil_pressure", "apocalypse", "laced", "mind", "body", "soul1", "thunder2", "flame2", "frost2", "uplifting", "shulking", "bone_shock", "high_in_calcium", "toolleveling"]})
|
||||
|
||||
// <tconstruct:hammer>.withTag({TinkerData: {Materials: ["chaotic_plustic", "infinity_avaritia_plustic", "ascended_draconic_alloy", "vibranium_alloy"]}, Traits: ["darktraveler", "global", "brownmagic", "apocalypse", "spiky", "prickly", "ghastly", "endspeed", "toolleveling"]})
|
||||
|
||||
+544
-1
@@ -2125,4 +2125,547 @@ terrestrialcauldron.setBlockResistance(2.5);
|
||||
terrestrialcauldron.setToolClass("pickaxe");
|
||||
terrestrialcauldron.setBeaconBase(true);
|
||||
terrestrialcauldron.setToolLevel(3);
|
||||
terrestrialcauldron.register();
|
||||
terrestrialcauldron.register();
|
||||
|
||||
var ascendedspatialchassis = VanillaFactory.createBlock("ascended_spatial_chassis", <blockmaterial:iron>);
|
||||
ascendedspatialchassis.setBlockHardness(1.0);
|
||||
ascendedspatialchassis.setBlockResistance(2.5);
|
||||
ascendedspatialchassis.setToolClass("pickaxe");
|
||||
ascendedspatialchassis.setBeaconBase(true);
|
||||
ascendedspatialchassis.setToolLevel(3);
|
||||
ascendedspatialchassis.register();
|
||||
|
||||
var actualizingcasing = VanillaFactory.createBlock("actualizing_casing", <blockmaterial:iron>);
|
||||
actualizingcasing.setBlockHardness(1.0);
|
||||
actualizingcasing.setBlockResistance(2.5);
|
||||
actualizingcasing.setToolClass("pickaxe");
|
||||
actualizingcasing.setBeaconBase(true);
|
||||
actualizingcasing.setToolLevel(3);
|
||||
actualizingcasing.register();
|
||||
|
||||
var hyperuranionactnaq = VanillaFactory.createBlock("hyperuranion_actualizer_naquadah", <blockmaterial:iron>);
|
||||
hyperuranionactnaq.setBlockHardness(1.0);
|
||||
hyperuranionactnaq.setBlockResistance(2.5);
|
||||
hyperuranionactnaq.setToolClass("pickaxe");
|
||||
hyperuranionactnaq.setBeaconBase(true);
|
||||
hyperuranionactnaq.setToolLevel(3);
|
||||
hyperuranionactnaq.register();
|
||||
|
||||
var hyperuranionactdrag = VanillaFactory.createBlock("hyperuranion_actualizer_dragonsteel", <blockmaterial:iron>);
|
||||
hyperuranionactdrag.setBlockHardness(1.0);
|
||||
hyperuranionactdrag.setBlockResistance(2.5);
|
||||
hyperuranionactdrag.setToolClass("pickaxe");
|
||||
hyperuranionactdrag.setBeaconBase(true);
|
||||
hyperuranionactdrag.setToolLevel(3);
|
||||
hyperuranionactdrag.register();
|
||||
|
||||
var hyperuranionactdimshard = VanillaFactory.createBlock("hyperuranion_actualizer_dimshard", <blockmaterial:iron>);
|
||||
hyperuranionactdimshard.setBlockHardness(1.0);
|
||||
hyperuranionactdimshard.setBlockResistance(2.5);
|
||||
hyperuranionactdimshard.setToolClass("pickaxe");
|
||||
hyperuranionactdimshard.setBeaconBase(true);
|
||||
hyperuranionactdimshard.setToolLevel(3);
|
||||
hyperuranionactdimshard.register();
|
||||
|
||||
var hyperuranionactrhenia = VanillaFactory.createBlock("hyperuranion_actualizer_rhenia", <blockmaterial:iron>);
|
||||
hyperuranionactrhenia.setBlockHardness(1.0);
|
||||
hyperuranionactrhenia.setBlockResistance(2.5);
|
||||
hyperuranionactrhenia.setToolClass("pickaxe");
|
||||
hyperuranionactrhenia.setBeaconBase(true);
|
||||
hyperuranionactrhenia.setToolLevel(3);
|
||||
hyperuranionactrhenia.register();
|
||||
|
||||
|
||||
var recursivebrain = VanillaFactory.createBlock("recursive_brain", <blockmaterial:iron>);
|
||||
recursivebrain.setBlockHardness(1.0);
|
||||
recursivebrain.setBlockResistance(2.5);
|
||||
recursivebrain.setToolClass("pickaxe");
|
||||
recursivebrain.setBeaconBase(true);
|
||||
recursivebrain.setToolLevel(3);
|
||||
recursivebrain.register();
|
||||
|
||||
var recursivebrainplug = VanillaFactory.createBlock("recursive_brain_plug", <blockmaterial:iron>);
|
||||
recursivebrainplug.setBlockHardness(1.0);
|
||||
recursivebrainplug.setBlockResistance(2.5);
|
||||
recursivebrainplug.setToolClass("pickaxe");
|
||||
recursivebrainplug.setBeaconBase(true);
|
||||
recursivebrainplug.setToolLevel(3);
|
||||
recursivebrainplug.register();
|
||||
|
||||
var hyperuranionconduit = VanillaFactory.createBlock("hyperuranion_conduit", <blockmaterial:iron>);
|
||||
hyperuranionconduit.setBlockHardness(1.0);
|
||||
hyperuranionconduit.setBlockResistance(2.5);
|
||||
hyperuranionconduit.setToolClass("pickaxe");
|
||||
hyperuranionconduit.setBeaconBase(true);
|
||||
hyperuranionconduit.setToolLevel(3);
|
||||
hyperuranionconduit.register();
|
||||
|
||||
var hyperuranioncasing = VanillaFactory.createBlock("hyperuranion_casing", <blockmaterial:iron>);
|
||||
hyperuranioncasing.setBlockHardness(1.0);
|
||||
hyperuranioncasing.setBlockResistance(2.5);
|
||||
hyperuranioncasing.setToolClass("pickaxe");
|
||||
hyperuranioncasing.setBeaconBase(true);
|
||||
hyperuranioncasing.setToolLevel(3);
|
||||
hyperuranioncasing.register();
|
||||
|
||||
var horizonsustainer = VanillaFactory.createBlock("horizon_sustainer", <blockmaterial:iron>);
|
||||
horizonsustainer.setBlockHardness(1.0);
|
||||
horizonsustainer.setBlockResistance(2.5);
|
||||
horizonsustainer.setToolClass("pickaxe");
|
||||
horizonsustainer.setBeaconBase(true);
|
||||
horizonsustainer.setToolLevel(3);
|
||||
horizonsustainer.register();
|
||||
|
||||
var dysonextruder = VanillaFactory.createBlock("dyson_extruder", <blockmaterial:iron>);
|
||||
dysonextruder.setBlockHardness(1.0);
|
||||
dysonextruder.setBlockResistance(2.5);
|
||||
dysonextruder.setToolClass("pickaxe");
|
||||
dysonextruder.setBeaconBase(true);
|
||||
dysonextruder.setToolLevel(3);
|
||||
dysonextruder.register();
|
||||
|
||||
var relativisticabsorber = VanillaFactory.createBlock("exotic_absorber", <blockmaterial:iron>);
|
||||
relativisticabsorber.setBlockHardness(1.0);
|
||||
relativisticabsorber.setBlockResistance(2.5);
|
||||
relativisticabsorber.setToolClass("pickaxe");
|
||||
relativisticabsorber.setBeaconBase(true);
|
||||
relativisticabsorber.setToolLevel(3);
|
||||
relativisticabsorber.register();
|
||||
|
||||
var exoticdysonconduit = VanillaFactory.createBlock("exotic_dyson_conduit", <blockmaterial:iron>);
|
||||
exoticdysonconduit.setBlockHardness(1.0);
|
||||
exoticdysonconduit.setBlockResistance(2.5);
|
||||
exoticdysonconduit.setToolClass("pickaxe");
|
||||
exoticdysonconduit.setBeaconBase(true);
|
||||
exoticdysonconduit.setToolLevel(3);
|
||||
exoticdysonconduit.register();
|
||||
|
||||
var mortumlivingrock = VanillaFactory.createBlock("mortum_livingrock", <blockmaterial:iron>);
|
||||
mortumlivingrock.setBlockHardness(1.0);
|
||||
mortumlivingrock.setBlockResistance(2.5);
|
||||
mortumlivingrock.setToolClass("pickaxe");
|
||||
mortumlivingrock.setBeaconBase(true);
|
||||
mortumlivingrock.setToolLevel(3);
|
||||
mortumlivingrock.register();
|
||||
|
||||
var mortumlivingwood = VanillaFactory.createBlock("mortum_livingwood", <blockmaterial:iron>);
|
||||
mortumlivingwood.setBlockHardness(1.0);
|
||||
mortumlivingwood.setBlockResistance(2.5);
|
||||
mortumlivingwood.setToolClass("pickaxe");
|
||||
mortumlivingwood.setBeaconBase(true);
|
||||
mortumlivingwood.setToolLevel(3);
|
||||
mortumlivingwood.register();
|
||||
|
||||
var focusedplasmacollider = VanillaFactory.createBlock("focused_plasma_collider", <blockmaterial:iron>);
|
||||
focusedplasmacollider.setBlockHardness(1.0);
|
||||
focusedplasmacollider.setBlockResistance(2.5);
|
||||
focusedplasmacollider.setToolClass("pickaxe");
|
||||
focusedplasmacollider.setBeaconBase(true);
|
||||
focusedplasmacollider.setToolLevel(3);
|
||||
focusedplasmacollider.register();
|
||||
|
||||
var superfocusedplasmacollider = VanillaFactory.createBlock("superfocused_plasma_collider", <blockmaterial:iron>);
|
||||
superfocusedplasmacollider.setBlockHardness(1.0);
|
||||
superfocusedplasmacollider.setBlockResistance(2.5);
|
||||
superfocusedplasmacollider.setToolClass("pickaxe");
|
||||
superfocusedplasmacollider.setBeaconBase(true);
|
||||
superfocusedplasmacollider.setToolLevel(3);
|
||||
superfocusedplasmacollider.register();
|
||||
|
||||
var hyperfocusedplasmacollider = VanillaFactory.createBlock("hyperfocused_plasma_collider", <blockmaterial:iron>);
|
||||
hyperfocusedplasmacollider.setBlockHardness(1.0);
|
||||
hyperfocusedplasmacollider.setBlockResistance(2.5);
|
||||
hyperfocusedplasmacollider.setToolClass("pickaxe");
|
||||
hyperfocusedplasmacollider.setBeaconBase(true);
|
||||
hyperfocusedplasmacollider.setToolLevel(3);
|
||||
hyperfocusedplasmacollider.register();
|
||||
|
||||
var stormlightstone = VanillaFactory.createBlock("stormlight_stone", <blockmaterial:iron>);
|
||||
stormlightstone.setBlockHardness(1.0);
|
||||
stormlightstone.setBlockResistance(2.5);
|
||||
stormlightstone.setToolClass("pickaxe");
|
||||
stormlightstone.setBeaconBase(true);
|
||||
stormlightstone.setToolLevel(3);
|
||||
stormlightstone.register();
|
||||
|
||||
var stoneofshadesmar = VanillaFactory.createBlock("stone_of_shadesmar", <blockmaterial:iron>);
|
||||
stoneofshadesmar.setBlockHardness(1.0);
|
||||
stoneofshadesmar.setBlockResistance(2.5);
|
||||
stoneofshadesmar.setToolClass("pickaxe");
|
||||
stoneofshadesmar.setBeaconBase(true);
|
||||
stoneofshadesmar.setToolLevel(3);
|
||||
stoneofshadesmar.register();
|
||||
|
||||
|
||||
var halitecatalyst = VanillaFactory.createBlock("halite_bejewelled_ichorium_catalyst", <blockmaterial:iron>);
|
||||
halitecatalyst.setBlockHardness(1.0);
|
||||
halitecatalyst.setBlockResistance(2.5);
|
||||
halitecatalyst.setToolClass("pickaxe");
|
||||
halitecatalyst.setBeaconBase(true);
|
||||
halitecatalyst.setToolLevel(3);
|
||||
halitecatalyst.register();
|
||||
|
||||
|
||||
var catalystofthewarrens = VanillaFactory.createBlock("catalyst_of_the_warrens", <blockmaterial:iron>);
|
||||
catalystofthewarrens.setBlockHardness(1.0);
|
||||
catalystofthewarrens.setBlockResistance(2.5);
|
||||
catalystofthewarrens.setToolClass("pickaxe");
|
||||
catalystofthewarrens.setBeaconBase(true);
|
||||
catalystofthewarrens.setToolLevel(3);
|
||||
catalystofthewarrens.register();
|
||||
|
||||
var verytruerainbowgen = VanillaFactory.createBlock("absolutely_autentic_rainbowgen", <blockmaterial:iron>);
|
||||
verytruerainbowgen.setBlockHardness(1.0);
|
||||
verytruerainbowgen.setBlockResistance(2.5);
|
||||
verytruerainbowgen.setToolClass("pickaxe");
|
||||
verytruerainbowgen.setBeaconBase(true);
|
||||
verytruerainbowgen.setToolLevel(3);
|
||||
verytruerainbowgen.register();
|
||||
|
||||
var cuendillarseal = VanillaFactory.createBlock("cuendillar_seal", <blockmaterial:iron>);
|
||||
cuendillarseal.setBlockHardness(1.0);
|
||||
cuendillarseal.setBlockResistance(2.5);
|
||||
cuendillarseal.setToolClass("pickaxe");
|
||||
cuendillarseal.setBeaconBase(true);
|
||||
cuendillarseal.setToolLevel(3);
|
||||
cuendillarseal.register();
|
||||
|
||||
var fractallitestoneoflove = VanillaFactory.createBlock("fractallite_stone_of_love", <blockmaterial:iron>);
|
||||
fractallitestoneoflove.setBlockHardness(1.0);
|
||||
fractallitestoneoflove.setBlockResistance(2.5);
|
||||
fractallitestoneoflove.setToolClass("pickaxe");
|
||||
fractallitestoneoflove.setBeaconBase(true);
|
||||
fractallitestoneoflove.setToolLevel(3);
|
||||
fractallitestoneoflove.register();
|
||||
|
||||
var sealofthearbiterblacksmith = VanillaFactory.createBlock("seal_of_the_arbiter_blacksmith", <blockmaterial:iron>);
|
||||
sealofthearbiterblacksmith.setBlockHardness(1.0);
|
||||
sealofthearbiterblacksmith.setBlockResistance(2.5);
|
||||
sealofthearbiterblacksmith.setToolClass("pickaxe");
|
||||
sealofthearbiterblacksmith.setBeaconBase(true);
|
||||
sealofthearbiterblacksmith.setToolLevel(3);
|
||||
sealofthearbiterblacksmith.register();
|
||||
|
||||
var sealofthearbitergemcutter = VanillaFactory.createBlock("seal_of_the_arbiter_gemcutter", <blockmaterial:iron>);
|
||||
sealofthearbitergemcutter.setBlockHardness(1.0);
|
||||
sealofthearbitergemcutter.setBlockResistance(2.5);
|
||||
sealofthearbitergemcutter.setToolClass("pickaxe");
|
||||
sealofthearbitergemcutter.setBeaconBase(true);
|
||||
sealofthearbitergemcutter.setToolLevel(3);
|
||||
sealofthearbitergemcutter.register();
|
||||
|
||||
var sealofthearbiterhistorian = VanillaFactory.createBlock("seal_of_the_arbiter_historian", <blockmaterial:iron>);
|
||||
sealofthearbiterhistorian.setBlockHardness(1.0);
|
||||
sealofthearbiterhistorian.setBlockResistance(2.5);
|
||||
sealofthearbiterhistorian.setToolClass("pickaxe");
|
||||
sealofthearbiterhistorian.setBeaconBase(true);
|
||||
sealofthearbiterhistorian.setToolLevel(3);
|
||||
sealofthearbiterhistorian.register();
|
||||
|
||||
var sealofthearbiterphysicist = VanillaFactory.createBlock("seal_of_the_arbiter_theorist", <blockmaterial:iron>);
|
||||
sealofthearbiterphysicist.setBlockHardness(1.0);
|
||||
sealofthearbiterphysicist.setBlockResistance(2.5);
|
||||
sealofthearbiterphysicist.setToolClass("pickaxe");
|
||||
sealofthearbiterphysicist.setBeaconBase(true);
|
||||
sealofthearbiterphysicist.setToolLevel(3);
|
||||
sealofthearbiterphysicist.register();
|
||||
|
||||
var sealofthearbiterexperimentalist = VanillaFactory.createBlock("seal_of_the_arbiter_experimentalist", <blockmaterial:iron>);
|
||||
sealofthearbiterexperimentalist.setBlockHardness(1.0);
|
||||
sealofthearbiterexperimentalist.setBlockResistance(2.5);
|
||||
sealofthearbiterexperimentalist.setToolClass("pickaxe");
|
||||
sealofthearbiterexperimentalist.setBeaconBase(true);
|
||||
sealofthearbiterexperimentalist.setToolLevel(3);
|
||||
sealofthearbiterexperimentalist.register();
|
||||
|
||||
var sealofthearbiterengineer = VanillaFactory.createBlock("seal_of_the_arbiter_engineer", <blockmaterial:iron>);
|
||||
sealofthearbiterengineer.setBlockHardness(1.0);
|
||||
sealofthearbiterengineer.setBlockResistance(2.5);
|
||||
sealofthearbiterengineer.setToolClass("pickaxe");
|
||||
sealofthearbiterengineer.setBeaconBase(true);
|
||||
sealofthearbiterengineer.setToolLevel(3);
|
||||
sealofthearbiterengineer.register();
|
||||
|
||||
var sealofthearbiterdefender = VanillaFactory.createBlock("seal_of_the_arbiter_defender", <blockmaterial:iron>);
|
||||
sealofthearbiterdefender.setBlockHardness(1.0);
|
||||
sealofthearbiterdefender.setBlockResistance(2.5);
|
||||
sealofthearbiterdefender.setToolClass("pickaxe");
|
||||
sealofthearbiterdefender.setBeaconBase(true);
|
||||
sealofthearbiterdefender.setToolLevel(3);
|
||||
sealofthearbiterdefender.register();
|
||||
|
||||
var sealoffreedom = VanillaFactory.createBlock("seal_of_freedom", <blockmaterial:iron>);
|
||||
sealoffreedom.setBlockHardness(1.0);
|
||||
sealoffreedom.setBlockResistance(2.5);
|
||||
sealoffreedom.setToolClass("pickaxe");
|
||||
sealoffreedom.setBeaconBase(true);
|
||||
sealoffreedom.setToolLevel(3);
|
||||
sealoffreedom.register();
|
||||
|
||||
var balancedmachinecasing = VanillaFactory.createBlock("balanced_machine_casing", <blockmaterial:iron>);
|
||||
balancedmachinecasing.setBlockHardness(1.0);
|
||||
balancedmachinecasing.setBlockResistance(2.5);
|
||||
balancedmachinecasing.setToolClass("pickaxe");
|
||||
balancedmachinecasing.setBeaconBase(true);
|
||||
balancedmachinecasing.setToolLevel(3);
|
||||
balancedmachinecasing.register();
|
||||
|
||||
var gallifreyanneutroniumcasing = VanillaFactory.createBlock("gallifreyan_neutronium_casing", <blockmaterial:iron>);
|
||||
gallifreyanneutroniumcasing.setBlockHardness(1.0);
|
||||
gallifreyanneutroniumcasing.setBlockResistance(2.5);
|
||||
gallifreyanneutroniumcasing.setToolClass("pickaxe");
|
||||
gallifreyanneutroniumcasing.setBeaconBase(true);
|
||||
gallifreyanneutroniumcasing.setToolLevel(3);
|
||||
gallifreyanneutroniumcasing.register();
|
||||
|
||||
var quarkneutroniummodule = VanillaFactory.createBlock("quark_neutronium_module", <blockmaterial:iron>);
|
||||
quarkneutroniummodule.setBlockHardness(1.0);
|
||||
quarkneutroniummodule.setBlockResistance(2.5);
|
||||
quarkneutroniummodule.setToolClass("pickaxe");
|
||||
quarkneutroniummodule.setBeaconBase(true);
|
||||
quarkneutroniummodule.setToolLevel(3);
|
||||
quarkneutroniummodule.register();
|
||||
|
||||
var ichoriumvoidstone = VanillaFactory.createBlock("ichorium_void_stone", <blockmaterial:iron>);
|
||||
ichoriumvoidstone.setBlockHardness(1.0);
|
||||
ichoriumvoidstone.setBlockResistance(2.5);
|
||||
ichoriumvoidstone.setToolClass("pickaxe");
|
||||
ichoriumvoidstone.setBeaconBase(true);
|
||||
ichoriumvoidstone.setToolLevel(3);
|
||||
ichoriumvoidstone.register();
|
||||
|
||||
|
||||
var voidichoriumriftcap = VanillaFactory.createBlock("void_ichorium_rift_cap", <blockmaterial:iron>);
|
||||
voidichoriumriftcap.setBlockHardness(1.0);
|
||||
voidichoriumriftcap.setBlockResistance(2.5);
|
||||
voidichoriumriftcap.setToolClass("pickaxe");
|
||||
voidichoriumriftcap.setBeaconBase(true);
|
||||
voidichoriumriftcap.setToolLevel(3);
|
||||
voidichoriumriftcap.register();
|
||||
|
||||
var hyperuranionactualizerichor = VanillaFactory.createBlock("hyperuranion_actualizer_ichor", <blockmaterial:iron>);
|
||||
hyperuranionactualizerichor.setBlockHardness(1.0);
|
||||
hyperuranionactualizerichor.setBlockResistance(2.5);
|
||||
hyperuranionactualizerichor.setToolClass("pickaxe");
|
||||
hyperuranionactualizerichor.setBeaconBase(true);
|
||||
hyperuranionactualizerichor.setToolLevel(3);
|
||||
hyperuranionactualizerichor.register();
|
||||
|
||||
var undeadsoil = VanillaFactory.createBlock("undead_soil", <blockmaterial:iron>);
|
||||
undeadsoil.setBlockHardness(1.0);
|
||||
undeadsoil.setBlockResistance(2.5);
|
||||
undeadsoil.setToolClass("pickaxe");
|
||||
undeadsoil.setBeaconBase(true);
|
||||
undeadsoil.setToolLevel(3);
|
||||
undeadsoil.register();
|
||||
|
||||
var fractallitehalitestone = VanillaFactory.createBlock("fractallite_halite_stone", <blockmaterial:iron>);
|
||||
fractallitehalitestone.setBlockHardness(1.0);
|
||||
fractallitehalitestone.setBlockResistance(2.5);
|
||||
fractallitehalitestone.setToolClass("pickaxe");
|
||||
fractallitehalitestone.setBeaconBase(true);
|
||||
fractallitehalitestone.setToolLevel(3);
|
||||
fractallitehalitestone.register();
|
||||
|
||||
var catalystofbalance = VanillaFactory.createBlock("catalyst_of_balance", <blockmaterial:iron>);
|
||||
catalystofbalance.setBlockHardness(1.0);
|
||||
catalystofbalance.setBlockResistance(2.5);
|
||||
catalystofbalance.setToolClass("pickaxe");
|
||||
catalystofbalance.setBeaconBase(true);
|
||||
catalystofbalance.setToolLevel(3);
|
||||
catalystofbalance.register();
|
||||
|
||||
|
||||
var spacetimebeam = VanillaFactory.createBlock("space_time_beam", <blockmaterial:iron>);
|
||||
spacetimebeam.setBlockHardness(1.0);
|
||||
spacetimebeam.setBlockResistance(2.5);
|
||||
spacetimebeam.setToolClass("pickaxe");
|
||||
spacetimebeam.setBeaconBase(true);
|
||||
spacetimebeam.setToolLevel(3);
|
||||
spacetimebeam.register();
|
||||
|
||||
|
||||
var quasarcasing = VanillaFactory.createBlock("quasar_stabilizer", <blockmaterial:iron>);
|
||||
quasarcasing.setBlockHardness(1.0);
|
||||
quasarcasing.setBlockResistance(2.5);
|
||||
quasarcasing.setToolClass("pickaxe");
|
||||
quasarcasing.setBeaconBase(true);
|
||||
quasarcasing.setToolLevel(3);
|
||||
quasarcasing.register();
|
||||
|
||||
|
||||
var quasarabsorber = VanillaFactory.createBlock("quasar_screen", <blockmaterial:iron>);
|
||||
quasarabsorber.setBlockHardness(1.0);
|
||||
quasarabsorber.setBlockResistance(2.5);
|
||||
quasarabsorber.setToolClass("pickaxe");
|
||||
quasarabsorber.setBeaconBase(true);
|
||||
quasarabsorber.setToolLevel(3);
|
||||
quasarabsorber.register();
|
||||
|
||||
|
||||
var galaxyconduit = VanillaFactory.createBlock("galaxy_conduit", <blockmaterial:iron>);
|
||||
galaxyconduit.setBlockHardness(1.0);
|
||||
galaxyconduit.setBlockResistance(2.5);
|
||||
galaxyconduit.setToolClass("pickaxe");
|
||||
galaxyconduit.setBeaconBase(true);
|
||||
galaxyconduit.setToolLevel(3);
|
||||
galaxyconduit.register();
|
||||
|
||||
var echowarrenstone = VanillaFactory.createBlock("echo_warren_stone", <blockmaterial:iron>);
|
||||
echowarrenstone.setBlockHardness(1.0);
|
||||
echowarrenstone.setBlockResistance(2.5);
|
||||
echowarrenstone.setToolClass("pickaxe");
|
||||
echowarrenstone.setBeaconBase(true);
|
||||
echowarrenstone.setToolLevel(3);
|
||||
echowarrenstone.register();
|
||||
|
||||
|
||||
var galaxyaccelerator = VanillaFactory.createBlock("galaxy_accelerator", <blockmaterial:iron>);
|
||||
galaxyaccelerator.setBlockHardness(1.0);
|
||||
galaxyaccelerator.setBlockResistance(2.5);
|
||||
galaxyaccelerator.setToolClass("pickaxe");
|
||||
galaxyaccelerator.setBeaconBase(true);
|
||||
galaxyaccelerator.setToolLevel(3);
|
||||
galaxyaccelerator.register();
|
||||
|
||||
|
||||
var miniaturequasar = VanillaFactory.createBlock("miniature_quasar", <blockmaterial:iron>);
|
||||
miniaturequasar.setBlockHardness(1.0);
|
||||
miniaturequasar.setBlockResistance(2.5);
|
||||
miniaturequasar.setToolClass("pickaxe");
|
||||
miniaturequasar.setBeaconBase(true);
|
||||
miniaturequasar.setToolLevel(3);
|
||||
miniaturequasar.register();
|
||||
|
||||
|
||||
|
||||
|
||||
var ascendedfluixetcher = VanillaFactory.createBlock("ascended_fluix_etcher", <blockmaterial:iron>);
|
||||
ascendedfluixetcher.setBlockHardness(1.0);
|
||||
ascendedfluixetcher.setBlockResistance(2.5);
|
||||
ascendedfluixetcher.setToolClass("pickaxe");
|
||||
ascendedfluixetcher.setBeaconBase(true);
|
||||
ascendedfluixetcher.setToolLevel(3);
|
||||
ascendedfluixetcher.register();
|
||||
|
||||
|
||||
var naquadahcasing = VanillaFactory.createBlock("naquadah_casing", <blockmaterial:iron>);
|
||||
naquadahcasing.setBlockHardness(1.0);
|
||||
naquadahcasing.setBlockResistance(2.5);
|
||||
naquadahcasing.setToolClass("pickaxe");
|
||||
naquadahcasing.setBeaconBase(true);
|
||||
naquadahcasing.setToolLevel(3);
|
||||
naquadahcasing.register();
|
||||
|
||||
|
||||
var darkmatternode = VanillaFactory.createBlock("dark_matter_node", <blockmaterial:iron>);
|
||||
darkmatternode.setBlockHardness(1.0);
|
||||
darkmatternode.setBlockResistance(2.5);
|
||||
darkmatternode.setToolClass("pickaxe");
|
||||
darkmatternode.setBeaconBase(true);
|
||||
darkmatternode.setToolLevel(3);
|
||||
darkmatternode.register();
|
||||
|
||||
var cosmicbalancecoil = VanillaFactory.createBlock("cosmic_balance_coil", <blockmaterial:iron>);
|
||||
cosmicbalancecoil.setBlockHardness(1.0);
|
||||
cosmicbalancecoil.setBlockResistance(2.5);
|
||||
cosmicbalancecoil.setToolClass("pickaxe");
|
||||
cosmicbalancecoil.setBeaconBase(true);
|
||||
cosmicbalancecoil.setToolLevel(3);
|
||||
cosmicbalancecoil.register();
|
||||
|
||||
|
||||
var galaxytube = VanillaFactory.createBlock("toroid_galaxy_tube", <blockmaterial:iron>);
|
||||
galaxytube.setBlockHardness(1.0);
|
||||
galaxytube.setBlockResistance(2.5);
|
||||
galaxytube.setToolClass("pickaxe");
|
||||
galaxytube.setBeaconBase(true);
|
||||
galaxytube.setToolLevel(3);
|
||||
galaxytube.register();
|
||||
|
||||
|
||||
var stoneofworthiness = VanillaFactory.createBlock("stone_of_worthiness", <blockmaterial:iron>);
|
||||
stoneofworthiness.setBlockHardness(1.0);
|
||||
stoneofworthiness.setBlockResistance(2.5);
|
||||
stoneofworthiness.setToolClass("pickaxe");
|
||||
stoneofworthiness.setBeaconBase(true);
|
||||
stoneofworthiness.setToolLevel(3);
|
||||
stoneofworthiness.register();
|
||||
|
||||
|
||||
var recurringnighmareblock = VanillaFactory.createBlock("recurring_nightmare_block", <blockmaterial:iron>);
|
||||
recurringnighmareblock.setBlockHardness(1.0);
|
||||
recurringnighmareblock.setBlockResistance(2.5);
|
||||
recurringnighmareblock.setToolClass("pickaxe");
|
||||
recurringnighmareblock.setBeaconBase(true);
|
||||
recurringnighmareblock.setToolLevel(3);
|
||||
recurringnighmareblock.register();
|
||||
|
||||
var trinityneutroniumcasing = VanillaFactory.createBlock("trinity_neutronium_casing", <blockmaterial:iron>);
|
||||
trinityneutroniumcasing.setBlockHardness(1.0);
|
||||
trinityneutroniumcasing.setBlockResistance(2.5);
|
||||
trinityneutroniumcasing.setToolClass("pickaxe");
|
||||
trinityneutroniumcasing.setBeaconBase(true);
|
||||
trinityneutroniumcasing.setToolLevel(3);
|
||||
trinityneutroniumcasing.register();
|
||||
|
||||
var quarkcosmicmodule = VanillaFactory.createBlock("quark_cosmic_module", <blockmaterial:iron>);
|
||||
quarkcosmicmodule.setBlockHardness(1.0);
|
||||
quarkcosmicmodule.setBlockResistance(2.5);
|
||||
quarkcosmicmodule.setToolClass("pickaxe");
|
||||
quarkcosmicmodule.setBeaconBase(true);
|
||||
quarkcosmicmodule.setToolLevel(3);
|
||||
quarkcosmicmodule.register();
|
||||
|
||||
|
||||
var cosmicstringmodule = VanillaFactory.createBlock("cosmic_string_module", <blockmaterial:iron>);
|
||||
cosmicstringmodule.setBlockHardness(1.0);
|
||||
cosmicstringmodule.setBlockResistance(2.5);
|
||||
cosmicstringmodule.setToolClass("pickaxe");
|
||||
cosmicstringmodule.setBeaconBase(true);
|
||||
cosmicstringmodule.setToolLevel(3);
|
||||
cosmicstringmodule.register();
|
||||
|
||||
var tardiscasing = VanillaFactory.createBlock("tardis_casing", <blockmaterial:iron>);
|
||||
tardiscasing.setBlockHardness(1.0);
|
||||
tardiscasing.setBlockResistance(2.5);
|
||||
tardiscasing.setToolClass("pickaxe");
|
||||
tardiscasing.setBeaconBase(true);
|
||||
tardiscasing.setToolLevel(3);
|
||||
tardiscasing.register();
|
||||
|
||||
|
||||
var tardisstem = VanillaFactory.createBlock("tardis_stem", <blockmaterial:iron>);
|
||||
tardisstem.setBlockHardness(1.0);
|
||||
tardisstem.setBlockResistance(2.5);
|
||||
tardisstem.setToolClass("pickaxe");
|
||||
tardisstem.setBeaconBase(true);
|
||||
tardisstem.setToolLevel(3);
|
||||
tardisstem.register();
|
||||
|
||||
|
||||
var tardisbranch = VanillaFactory.createBlock("tardis_branch", <blockmaterial:iron>);
|
||||
tardisbranch.setBlockHardness(1.0);
|
||||
tardisbranch.setBlockResistance(2.5);
|
||||
tardisbranch.setToolClass("pickaxe");
|
||||
tardisbranch.setBeaconBase(true);
|
||||
tardisbranch.setToolLevel(3);
|
||||
tardisbranch.register();
|
||||
|
||||
|
||||
var tardispolyp = VanillaFactory.createBlock("tardis_polyp", <blockmaterial:iron>);
|
||||
tardispolyp.setBlockHardness(1.0);
|
||||
tardispolyp.setBlockResistance(2.5);
|
||||
tardispolyp.setToolClass("pickaxe");
|
||||
tardispolyp.setBeaconBase(true);
|
||||
tardispolyp.setToolLevel(3);
|
||||
tardispolyp.register();
|
||||
|
||||
|
||||
var twentyblocks = VanillaFactory.createBlock("nineteen_blocks", <blockmaterial:iron>);
|
||||
twentyblocks.setBlockHardness(1.0);
|
||||
twentyblocks.setBlockResistance(2.5);
|
||||
twentyblocks.setToolClass("pickaxe");
|
||||
twentyblocks.setBeaconBase(true);
|
||||
twentyblocks.setToolLevel(3);
|
||||
twentyblocks.register();
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
#modloaded aoa3
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
import mods.contenttweaker.Commands;
|
||||
import crafttweaker.event.PlayerInteractBlockEvent;
|
||||
import crafttweaker.block.IBlock;
|
||||
|
||||
|
||||
events.onPlayerInteractBlock(function(event as PlayerInteractBlockEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<avaritiaitem:bedrock_blaster>.definition.id)) {
|
||||
|
||||
val targetBlock as IBlock = event.block;
|
||||
if (targetBlock.definition.id != "minecraft:bedrock") {
|
||||
return;
|
||||
}
|
||||
|
||||
Commands.call("fill ~-2 ~-3 ~-2 ~2 ~2 ~2 air 0 replace bedrock 0 destroy", event.player, event.world, true, true);
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"minecraft:bedrock\",Count:1b}}", event.player, event.world, true, true);
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:fading_wool>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "bloodmagic:corrupted_sheep") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:hypercharged_wool\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
#modloaded aoa3
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
import mods.contenttweaker.Commands;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:the_ultimate_taint_gun>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if (target.definition.id != "thaumcraft:taintseedprime" || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
// [edit damage here]
|
||||
val DAMAGE = 2000000000.0f;
|
||||
// [can remove this var if reusuable]
|
||||
val oldHealth = target.health;
|
||||
// Handle kill as if by player
|
||||
if (target.health <= DAMAGE) {
|
||||
target.onDeath(IDamageSource.createPlayerDamage(event.player));
|
||||
// Allows for proper death
|
||||
target.health = 0;
|
||||
|
||||
} else {
|
||||
target.attackEntityFrom(<damagesource:OUT_OF_WORLD>, DAMAGE);
|
||||
|
||||
}
|
||||
// [remove this clause if reusuable]
|
||||
if (target.health < oldHealth) {
|
||||
// [add anything here to handle on each successful use]
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:recursion_of_taint\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
#modloaded aoa3
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
import mods.contenttweaker.Commands;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:taint_gun>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if (target.definition.id != "thaumcraft:taintaclegiant" || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
// [edit damage here]
|
||||
val DAMAGE = 2000000000.0f;
|
||||
// [can remove this var if reusuable]
|
||||
val oldHealth = target.health;
|
||||
// Handle kill as if by player
|
||||
if (target.health <= DAMAGE) {
|
||||
target.onDeath(IDamageSource.createPlayerDamage(event.player));
|
||||
// Allows for proper death
|
||||
target.health = 0;
|
||||
|
||||
} else {
|
||||
target.attackEntityFrom(<damagesource:OUT_OF_WORLD>, DAMAGE);
|
||||
|
||||
}
|
||||
// [remove this clause if reusuable]
|
||||
if (target.health < oldHealth) {
|
||||
// [add anything here to handle on each successful use]
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:shield_of_the_king_in_purple\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
#modloaded aoa3
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
import mods.contenttweaker.Commands;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:bullet_of_the_gun_devil>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if (target.definition.id != "thaumcraft:cultistknight" || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
// [edit damage here]
|
||||
val DAMAGE = 2000000000.0f;
|
||||
// [can remove this var if reusuable]
|
||||
val oldHealth = target.health;
|
||||
// Handle kill as if by player
|
||||
if (target.health <= DAMAGE) {
|
||||
target.onDeath(IDamageSource.createPlayerDamage(event.player));
|
||||
// Allows for proper death
|
||||
target.health = 0;
|
||||
|
||||
} else {
|
||||
target.attackEntityFrom(<damagesource:OUT_OF_WORLD>, DAMAGE);
|
||||
|
||||
}
|
||||
// [remove this clause if reusuable]
|
||||
if (target.health < oldHealth) {
|
||||
// [add anything here to handle on each successful use]
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:magazine_of_the_gun_devil\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -807,3 +807,201 @@ fleshworldichor.register();
|
||||
var fractallitehalite = VanillaFactory.createFluid("fractallite_halite", Color.fromHex("17c414"));
|
||||
fractallitehalite.register();
|
||||
|
||||
var actualizingfluid = VanillaFactory.createFluid("actualizing_fluid", Color.fromHex("78fffd"));
|
||||
actualizingfluid.register();
|
||||
|
||||
var ultimatefractalliteessence = VanillaFactory.createFluid("ultimate_fractallite_essence", Color.fromHex("76b38e"));
|
||||
ultimatefractalliteessence.register();
|
||||
|
||||
var actualizationbalance = VanillaFactory.createFluid("actualization_balance", Color.fromHex("7a7a7a"));
|
||||
actualizationbalance.register();
|
||||
|
||||
var actualizationhope = VanillaFactory.createFluid("actualization_hope", Color.fromHex("00ff1e"));
|
||||
actualizationhope.register();
|
||||
|
||||
var actualizationknowledge = VanillaFactory.createFluid("actualization_knowledge", Color.fromHex("30cfcf"));
|
||||
actualizationknowledge.register();
|
||||
|
||||
var actualizationglory = VanillaFactory.createFluid("actualization_glory", Color.fromHex("ffff91"));
|
||||
actualizationglory.register();
|
||||
|
||||
var recursivethinkingmatter = VanillaFactory.createFluid("recursive_computing_matter", Color.fromHex("4b6a6d"));
|
||||
recursivethinkingmatter.register();
|
||||
|
||||
var hyperuranionbinderhydrogen = VanillaFactory.createFluid("hyperuranion_binder_hydrogen", Color.fromHex("dbfcff"));
|
||||
hyperuranionbinderhydrogen.register();
|
||||
|
||||
var hyperuranionbinderoxygen = VanillaFactory.createFluid("hyperuranion_binder_oxygen", Color.fromHex("80d2d9"));
|
||||
hyperuranionbinderoxygen.register();
|
||||
|
||||
var hyperuranionbinderdeuterium = VanillaFactory.createFluid("hyperuranion_binder_deuterium", Color.fromHex("bbe9ed"));
|
||||
hyperuranionbinderdeuterium.register();
|
||||
|
||||
var hyperuranionbindertritium = VanillaFactory.createFluid("hyperuranion_binder_tritium", Color.fromHex("94d0d6"));
|
||||
hyperuranionbindertritium.register();
|
||||
|
||||
var hyperuranionbinderiron = VanillaFactory.createFluid("hyperuranion_binder_iron", Color.fromHex("5ed9e6"));
|
||||
hyperuranionbinderiron.register();
|
||||
|
||||
var hyperuranionbindernickel = VanillaFactory.createFluid("hyperuranion_binder_nickel", Color.fromHex("1d7780"));
|
||||
hyperuranionbindernickel.register();
|
||||
|
||||
var hyperuranionbinderlead = VanillaFactory.createFluid("hyperuranion_binder_lead", Color.fromHex("2f9ea8"));
|
||||
hyperuranionbinderlead.register();
|
||||
|
||||
var hyperuranionbindermercury = VanillaFactory.createFluid("hyperuranion_binder_mercury", Color.fromHex("387a80"));
|
||||
hyperuranionbindermercury.register();
|
||||
|
||||
var hyperuranionbindertin = VanillaFactory.createFluid("hyperuranion_binder_tin", Color.fromHex("5f9ea3"));
|
||||
hyperuranionbindertin.register();
|
||||
|
||||
var highentropyhyperdense = VanillaFactory.createFluid("high_entropy_hyperdense_plasma", Color.fromHex("120d06"));
|
||||
highentropyhyperdense.register();
|
||||
|
||||
var naquadahfuel = VanillaFactory.createFluid("naquadah_alloy", Color.fromHex("163d15"));
|
||||
naquadahfuel.register();
|
||||
|
||||
var essenceofsanethoughts = VanillaFactory.createFluid("essence_of_sane_thoughts", Color.fromHex("be8ebf"));
|
||||
essenceofsanethoughts.register();
|
||||
|
||||
var recursiveicedcoffee = VanillaFactory.createFluid("recursive_iced_coffee", Color.fromHex("635447"));
|
||||
recursiveicedcoffee.register();
|
||||
|
||||
var whisperofthel = VanillaFactory.createFluid("whisper_of_thel", Color.fromHex("289e47"));
|
||||
whisperofthel.register();
|
||||
|
||||
var whisperofahkrasttorvalain = VanillaFactory.createFluid("whisper_of_ahkrast_korvalain", Color.fromHex("8a0000"));
|
||||
whisperofahkrasttorvalain.register();
|
||||
|
||||
var whisperofverdithanath = VanillaFactory.createFluid("whisper_of_verdith_anath", Color.fromHex("26a679"));
|
||||
whisperofverdithanath.register();
|
||||
|
||||
var whisperofomtosephellack = VanillaFactory.createFluid("whisper_of_omtose_phellack", Color.fromHex("007d7b"));
|
||||
whisperofomtosephellack.register();
|
||||
|
||||
var whisperofdonaethrusen = VanillaFactory.createFluid("whisper_of_donaeth_rusen", Color.fromHex("002aff"));
|
||||
whisperofdonaethrusen.register();
|
||||
|
||||
var whisperoftellan = VanillaFactory.createFluid("whisper_of_tellan", Color.fromHex("ff2b5d"));
|
||||
whisperoftellan.register();
|
||||
|
||||
var whisperofkuraldthyrrlan = VanillaFactory.createFluid("whisper_of_kurald_thyrllan", Color.fromHex("ffffff"));
|
||||
whisperofkuraldthyrrlan.register();
|
||||
|
||||
var whisperofkuraldemurlahn = VanillaFactory.createFluid("whisper_of_kurald_emurlahn", Color.fromHex("878787"));
|
||||
whisperofkuraldemurlahn.register();
|
||||
|
||||
var whisperofkuraldgalain = VanillaFactory.createFluid("whisper_of_kurald_galain", Color.fromHex("000000"));
|
||||
whisperofkuraldgalain.register();
|
||||
|
||||
var whisperofstarvalddemelain = VanillaFactory.createFluid("whisper_of_starvald_demelain", Color.fromHex("6a0e78"));
|
||||
whisperofstarvalddemelain.register();
|
||||
|
||||
var gluttonousabyssite = VanillaFactory.createFluid("gluttonous_abyssite", Color.fromHex("7aad5a"));
|
||||
gluttonousabyssite.register();
|
||||
|
||||
var arcanefissilematter = VanillaFactory.createFluid("arcane_fissile_matter", Color.fromHex("8d5ab8"));
|
||||
arcanefissilematter.register();
|
||||
|
||||
var apothecaryfissilematter = VanillaFactory.createFluid("apothecary_fissile_matter", Color.fromHex("4ca66f"));
|
||||
apothecaryfissilematter.register();
|
||||
|
||||
var purifiedtitanium = VanillaFactory.createFluid("purified_titanium", Color.fromHex("cfe6e6"));
|
||||
purifiedtitanium.register();
|
||||
|
||||
var starmetalalloy = VanillaFactory.createFluid("starmetal_alloy", Color.fromHex("cfe6e6"));
|
||||
starmetalalloy.register();
|
||||
|
||||
var silvanfissilematter = VanillaFactory.createFluid("silvan_fissile_matter", Color.fromHex("b03aaa"));
|
||||
silvanfissilematter.register();
|
||||
|
||||
var innervedfissilematter = VanillaFactory.createFluid("innerved_fissile_matter", Color.fromHex("782b12"));
|
||||
innervedfissilematter.register();
|
||||
|
||||
var radiantfissilematter = VanillaFactory.createFluid("radiant_fissile_matter", Color.fromHex("cfcfcf"));
|
||||
radiantfissilematter.register();
|
||||
|
||||
var prebaryonicplasma = VanillaFactory.createFluid("pre_baryonic_plasma", Color.fromHex("ffffff"));
|
||||
prebaryonicplasma.register();
|
||||
|
||||
var purerecursion = VanillaFactory.createFluid("pure_recursion", Color.fromHex("ffffff"));
|
||||
purerecursion.register();
|
||||
|
||||
|
||||
var warrenbinderhydrogen = VanillaFactory.createFluid("warren_binder_hydrogen", Color.fromHex("dbfcff"));
|
||||
warrenbinderhydrogen.register();
|
||||
|
||||
var warrenbinderoxygen = VanillaFactory.createFluid("warren_binder_oxygen", Color.fromHex("80d2d9"));
|
||||
warrenbinderoxygen.register();
|
||||
|
||||
var warrenbinderdeuterium = VanillaFactory.createFluid("warren_binder_deuterium", Color.fromHex("bbe9ed"));
|
||||
warrenbinderdeuterium.register();
|
||||
|
||||
var warrenbindertritium = VanillaFactory.createFluid("warren_binder_tritium", Color.fromHex("94d0d6"));
|
||||
warrenbindertritium.register();
|
||||
|
||||
var warrenbinderiron = VanillaFactory.createFluid("warren_binder_iron", Color.fromHex("5ed9e6"));
|
||||
warrenbinderiron.register();
|
||||
|
||||
var warrenbindernickel = VanillaFactory.createFluid("warren_binder_nickel", Color.fromHex("1d7780"));
|
||||
warrenbindernickel.register();
|
||||
|
||||
var warrenbinderlead = VanillaFactory.createFluid("warren_binder_lead", Color.fromHex("2f9ea8"));
|
||||
warrenbinderlead.register();
|
||||
|
||||
var warrenbindermercury = VanillaFactory.createFluid("warren_binder_mercury", Color.fromHex("387a80"));
|
||||
warrenbindermercury.register();
|
||||
|
||||
var warrenbindertin = VanillaFactory.createFluid("warren_binder_tin", Color.fromHex("5f9ea3"));
|
||||
warrenbindertin.register();
|
||||
|
||||
var fractallitetaint = VanillaFactory.createFluid("fractallite_taint", Color.fromHex("663999"));
|
||||
fractallitetaint.register();
|
||||
|
||||
var hungeringfleshessence = VanillaFactory.createFluid("hungering_flesh_essence", Color.fromHex("bf5a82"));
|
||||
hungeringfleshessence.register();
|
||||
|
||||
var ascendedfluixessence = VanillaFactory.createFluid("ascended_fluix_essence", Color.fromHex("a08acf"));
|
||||
ascendedfluixessence.register();
|
||||
|
||||
var masteryofundeath = VanillaFactory.createFluid("mastery_of_undeath", Color.fromHex("362f8f"));
|
||||
masteryofundeath.register();
|
||||
|
||||
var infinitedivinewish = VanillaFactory.createFluid("infinite_divine_wish", Color.fromHex("e3df00"));
|
||||
infinitedivinewish.register();
|
||||
|
||||
var infiniteinsanewish = VanillaFactory.createFluid("infinite_insane_wish", Color.fromHex("d90b00"));
|
||||
infiniteinsanewish.register();
|
||||
|
||||
var dopedrecursion = VanillaFactory.createFluid("doped_recursion", Color.fromHex("d90b00"));
|
||||
dopedrecursion.register();
|
||||
|
||||
var weakwarrenessence = VanillaFactory.createFluid("low_grade_space_time_fuel", Color.fromHex("8dc3c4"));
|
||||
weakwarrenessence.register();
|
||||
|
||||
var quarkgluonplasma = VanillaFactory.createFluid("strange_quark_gluon_plasma", Color.fromHex("9dd194"));
|
||||
quarkgluonplasma.register();
|
||||
|
||||
var cosmicrayparticlemix = VanillaFactory.createFluid("cosmic_ray_particle_mix", Color.fromHex("899bc4"));
|
||||
cosmicrayparticlemix.register();
|
||||
|
||||
var mediumwarrenessence = VanillaFactory.createFluid("medium_grade_space_time_fuel", Color.fromHex("63a5a6"));
|
||||
mediumwarrenessence.register();
|
||||
|
||||
var strngwarrenessence = VanillaFactory.createFluid("high_grade_space_time_fuel", Color.fromHex("63a5a6"));
|
||||
strngwarrenessence.register();
|
||||
|
||||
var trinityingot = VanillaFactory.createFluid("trinity_ingot", Color.fromHex("a8ffe6"));
|
||||
trinityingot.register();
|
||||
|
||||
var galacticplasma = VanillaFactory.createFluid("galactic_plasma", Color.fromHex("a8e6da"));
|
||||
galacticplasma.register();
|
||||
|
||||
var coldplasma = VanillaFactory.createFluid("cold_plasma", Color.fromHex("9eb8a5"));
|
||||
coldplasma.register();
|
||||
|
||||
var blackholejuice = VanillaFactory.createFluid("black_hole_juice", Color.fromHex("000000"));
|
||||
blackholejuice.register();
|
||||
|
||||
|
||||
|
||||
|
||||
+30
-1
@@ -351,4 +351,33 @@ justjambalaya.saturation = 1;
|
||||
justjambalaya.onItemFoodEaten = function(stack, world, player) {
|
||||
player.sendChat("世事无常,困苦共担。");
|
||||
};
|
||||
justjambalaya.register();
|
||||
justjambalaya.register();
|
||||
|
||||
|
||||
var blackholejuice = VanillaFactory.createItemFood("black_hole_juice", 5);
|
||||
blackholejuice.saturation = 1;
|
||||
blackholejuice.onItemFoodEaten = function(stack, world, player) {
|
||||
player.sendChat("别想太多,尽享此刻,你已成功!");
|
||||
};
|
||||
blackholejuice.register();
|
||||
|
||||
var gatedarknesssashimi = VanillaFactory.createItemFood("sashimi_of_the_gate_of_darkness", 5);
|
||||
gatedarknesssashimi.saturation = 1;
|
||||
gatedarknesssashimi.onItemFoodEaten = function(stack, world, player) {
|
||||
player.sendChat("尽情享用吧,次元飞升大师!");
|
||||
};
|
||||
gatedarknesssashimi.register();
|
||||
|
||||
var callandorappleslice = VanillaFactory.createItemFood("linked_apple_slice", 5);
|
||||
callandorappleslice.saturation = 1;
|
||||
callandorappleslice.onItemFoodEaten = function(stack, world, player) {
|
||||
player.sendChat("伟大的一口");
|
||||
};
|
||||
callandorappleslice.register();
|
||||
|
||||
var cleansedcinnamonapple = VanillaFactory.createItemFood("cleansed_cinnamon_apple", 5);
|
||||
cleansedcinnamonapple.saturation = 1;
|
||||
cleansedcinnamonapple.onItemFoodEaten = function(stack, world, player) {
|
||||
player.sendChat("看哪!这就是力量之巅!");
|
||||
};
|
||||
cleansedcinnamonapple.register();
|
||||
|
||||
@@ -147,7 +147,7 @@ recipes.addShapeless(<contenttweaker:bento_xxl>,
|
||||
recipes.addShapeless(<contenttweaker:bento_xxxl>,
|
||||
[<contenttweaker:bento_xxl>, <aoa3:raw_violet_skipper>, <aoa3:raw_dark_hatchetfish>, <aoa3:raw_sapphire_strider>, <actuallyadditions:item_misc:9>]);
|
||||
|
||||
furnace.addRecipe(<contenttweaker:dragon_egg_omelette>,<iceandfire:dragonegg_sapphire>);
|
||||
furnace.addRecipe(<contenttweaker:dragon_egg_omelette>,<contenttweaker:cursed_dragon_egg>);
|
||||
|
||||
recipes.addShaped(<iceandfire:dragonegg_sapphire>,
|
||||
[[<minecraft:dragon_egg>, <draconicevolution:chaos_shard:3>, <minecraft:dragon_egg>],
|
||||
|
||||
@@ -1914,7 +1914,968 @@ diaryrealmshifter.maxStackSize = 64;
|
||||
diaryrealmshifter.beaconPayment = false;
|
||||
diaryrealmshifter.register();
|
||||
|
||||
var infiniteplatestamp = VanillaFactory.createItem("infinite_plate_stamp");
|
||||
infiniteplatestamp.maxStackSize = 64;
|
||||
infiniteplatestamp.beaconPayment = false;
|
||||
infiniteplatestamp.register();
|
||||
|
||||
var infinitealchemicalplate = VanillaFactory.createItem("infinite_alchemical_plate");
|
||||
infinitealchemicalplate.maxStackSize = 64;
|
||||
infinitealchemicalplate.beaconPayment = false;
|
||||
infinitealchemicalplate.register();
|
||||
|
||||
var infiniterecursiveplate = VanillaFactory.createItem("infinite_recursive_plate");
|
||||
infiniterecursiveplate.maxStackSize = 64;
|
||||
infiniterecursiveplate.beaconPayment = false;
|
||||
infiniterecursiveplate.register();
|
||||
|
||||
var infiniteentropicplate = VanillaFactory.createItem("infinite_entropic_plate");
|
||||
infiniteentropicplate.maxStackSize = 64;
|
||||
infiniteentropicplate.beaconPayment = false;
|
||||
infiniteentropicplate.register();
|
||||
|
||||
var cuendillarplate = VanillaFactory.createItem("cuendillar_plate");
|
||||
cuendillarplate.maxStackSize = 64;
|
||||
cuendillarplate.beaconPayment = false;
|
||||
cuendillarplate.register();
|
||||
|
||||
var fractalstonedust = VanillaFactory.createItem("fractal_stone_dust");
|
||||
fractalstonedust.maxStackSize = 64;
|
||||
fractalstonedust.beaconPayment = false;
|
||||
fractalstonedust.register();
|
||||
|
||||
var freedskystonedust = VanillaFactory.createItem("freed_sky_stone_dust");
|
||||
freedskystonedust.maxStackSize = 64;
|
||||
freedskystonedust.beaconPayment = false;
|
||||
freedskystonedust.register();
|
||||
|
||||
var spatialcompound = VanillaFactory.createItem("spatial_compound");
|
||||
spatialcompound.maxStackSize = 64;
|
||||
spatialcompound.beaconPayment = false;
|
||||
spatialcompound.register();
|
||||
|
||||
var puzzlesolfreedskystone = VanillaFactory.createItem("puzzle_solution_freedskystone");
|
||||
puzzlesolfreedskystone.maxStackSize = 64;
|
||||
puzzlesolfreedskystone.beaconPayment = false;
|
||||
puzzlesolfreedskystone.register();
|
||||
|
||||
var alchemicaldeeprock = VanillaFactory.createItem("alchemical_deep_rock");
|
||||
alchemicaldeeprock.maxStackSize = 64;
|
||||
alchemicaldeeprock.beaconPayment = false;
|
||||
alchemicaldeeprock.register();
|
||||
|
||||
var corruptedwool = VanillaFactory.createItem("hypercharged_wool");
|
||||
corruptedwool.maxStackSize = 64;
|
||||
corruptedwool.beaconPayment = false;
|
||||
corruptedwool.register();
|
||||
|
||||
var hyperchargedredstone = VanillaFactory.createItem("hypercharged_redstone");
|
||||
hyperchargedredstone.maxStackSize = 64;
|
||||
hyperchargedredstone.beaconPayment = false;
|
||||
hyperchargedredstone.register();
|
||||
|
||||
var coreofthemythicshells = VanillaFactory.createItem("core_of_the_mythic_shells");
|
||||
coreofthemythicshells.maxStackSize = 64;
|
||||
coreofthemythicshells.beaconPayment = false;
|
||||
coreofthemythicshells.register();
|
||||
|
||||
var actualizationofglory = VanillaFactory.createItem("actualization_of_glory");
|
||||
actualizationofglory.maxStackSize = 64;
|
||||
actualizationofglory.beaconPayment = false;
|
||||
actualizationofglory.register();
|
||||
|
||||
var actualizationofknowledge = VanillaFactory.createItem("actualization_of_knowledge");
|
||||
actualizationofknowledge.maxStackSize = 64;
|
||||
actualizationofknowledge.beaconPayment = false;
|
||||
actualizationofknowledge.register();
|
||||
|
||||
var actualizationofbalance = VanillaFactory.createItem("actualization_of_balance");
|
||||
actualizationofbalance.maxStackSize = 64;
|
||||
actualizationofbalance.beaconPayment = false;
|
||||
actualizationofbalance.register();
|
||||
|
||||
var actualizationofhope = VanillaFactory.createItem("actualization_of_hope");
|
||||
actualizationofhope.maxStackSize = 64;
|
||||
actualizationofhope.beaconPayment = false;
|
||||
actualizationofhope.register();
|
||||
|
||||
var unboundrecursiumfragment = VanillaFactory.createItem("unbound_recursium_fragment");
|
||||
unboundrecursiumfragment.maxStackSize = 64;
|
||||
unboundrecursiumfragment.beaconPayment = false;
|
||||
unboundrecursiumfragment.register();
|
||||
|
||||
var cosmicpot = VanillaFactory.createItem("cosmic_pot");
|
||||
cosmicpot.maxStackSize = 64;
|
||||
cosmicpot.beaconPayment = false;
|
||||
cosmicpot.register();
|
||||
|
||||
var embodimentofglory = VanillaFactory.createItem("embodiment_of_glory");
|
||||
embodimentofglory.maxStackSize = 64;
|
||||
embodimentofglory.beaconPayment = false;
|
||||
embodimentofglory.register();
|
||||
|
||||
var embodimentofbalance = VanillaFactory.createItem("embodiment_of_balance");
|
||||
embodimentofbalance.maxStackSize = 64;
|
||||
embodimentofbalance.beaconPayment = false;
|
||||
embodimentofbalance.register();
|
||||
|
||||
var embodimentofhope = VanillaFactory.createItem("embodiment_of_hope");
|
||||
embodimentofhope.maxStackSize = 64;
|
||||
embodimentofhope.beaconPayment = false;
|
||||
embodimentofhope.register();
|
||||
|
||||
var embodimentofknowledge = VanillaFactory.createItem("embodiment_of_knowledge");
|
||||
embodimentofknowledge.maxStackSize = 64;
|
||||
embodimentofknowledge.beaconPayment = false;
|
||||
embodimentofknowledge.register();
|
||||
|
||||
var shardofrestoredfaith = VanillaFactory.createItem("shard_of_restored_faith");
|
||||
shardofrestoredfaith.maxStackSize = 64;
|
||||
shardofrestoredfaith.beaconPayment = false;
|
||||
shardofrestoredfaith.register();
|
||||
|
||||
var shardoforgottenfearofdeth = VanillaFactory.createItem("shard_of_forgotten_fear_of_death");
|
||||
shardoforgottenfearofdeth.maxStackSize = 64;
|
||||
shardoforgottenfearofdeth.beaconPayment = false;
|
||||
shardoforgottenfearofdeth.register();
|
||||
|
||||
var shardoforgivenlosttime = VanillaFactory.createItem("shard_of_forgiven_lost_time");
|
||||
shardoforgivenlosttime.maxStackSize = 64;
|
||||
shardoforgivenlosttime.beaconPayment = false;
|
||||
shardoforgivenlosttime.register();
|
||||
|
||||
var shardofrekindledheritage = VanillaFactory.createItem("shard_of_rekindled_heritage");
|
||||
shardofrekindledheritage.maxStackSize = 64;
|
||||
shardofrekindledheritage.beaconPayment = false;
|
||||
shardofrekindledheritage.register();
|
||||
|
||||
var shardofnohiddenintentions = VanillaFactory.createItem("shard_of_no_hidden_intentions");
|
||||
shardofnohiddenintentions.maxStackSize = 64;
|
||||
shardofnohiddenintentions.beaconPayment = false;
|
||||
shardofnohiddenintentions.register();
|
||||
|
||||
var shardofphysicalhealing = VanillaFactory.createItem("shard_of_physical_healing");
|
||||
shardofphysicalhealing.maxStackSize = 64;
|
||||
shardofphysicalhealing.beaconPayment = false;
|
||||
shardofphysicalhealing.register();
|
||||
|
||||
var shardofrealizedworth = VanillaFactory.createItem("shard_of_realized_worth");
|
||||
shardofrealizedworth.maxStackSize = 64;
|
||||
shardofrealizedworth.beaconPayment = false;
|
||||
shardofrealizedworth.register();
|
||||
|
||||
var shardofrestoredrelationship = VanillaFactory.createItem("shard_of_restored_relationship");
|
||||
shardofrestoredrelationship.maxStackSize = 64;
|
||||
shardofrestoredrelationship.beaconPayment = false;
|
||||
shardofrestoredrelationship.register();
|
||||
|
||||
var shardofsurrender = VanillaFactory.createItem("shard_of_surrender");
|
||||
shardofsurrender.maxStackSize = 64;
|
||||
shardofsurrender.beaconPayment = false;
|
||||
shardofsurrender.register();
|
||||
|
||||
var shardofindividualfreedom = VanillaFactory.createItem("shard_of_individual_freedom");
|
||||
shardofindividualfreedom.maxStackSize = 64;
|
||||
shardofindividualfreedom.beaconPayment = false;
|
||||
shardofindividualfreedom.register();
|
||||
|
||||
var shardofcontrolledgluttony = VanillaFactory.createItem("shard_of_controlled_gluttony");
|
||||
shardofcontrolledgluttony.maxStackSize = 64;
|
||||
shardofcontrolledgluttony.beaconPayment = false;
|
||||
shardofcontrolledgluttony.register();
|
||||
|
||||
var shardofhumbleeducation = VanillaFactory.createItem("shard_of_humble_education");
|
||||
shardofhumbleeducation.maxStackSize = 64;
|
||||
shardofhumbleeducation.beaconPayment = false;
|
||||
shardofhumbleeducation.register();
|
||||
|
||||
var shardofshadesmar = VanillaFactory.createItem("living_shard_of_shadesmar");
|
||||
shardofshadesmar.maxStackSize = 64;
|
||||
shardofshadesmar.beaconPayment = false;
|
||||
shardofshadesmar.register();
|
||||
|
||||
var runeoffreedom = VanillaFactory.createItem("rune_of_freedom");
|
||||
runeoffreedom.maxStackSize = 64;
|
||||
runeoffreedom.beaconPayment = false;
|
||||
runeoffreedom.register();
|
||||
|
||||
var freedomsteelingot = VanillaFactory.createItem("freedomsteel_ingot");
|
||||
freedomsteelingot.maxStackSize = 64;
|
||||
freedomsteelingot.beaconPayment = false;
|
||||
freedomsteelingot.register();
|
||||
|
||||
var tokenofthemeatballman = VanillaFactory.createItem("token_of_the_meatball_man");
|
||||
tokenofthemeatballman.maxStackSize = 64;
|
||||
tokenofthemeatballman.beaconPayment = false;
|
||||
tokenofthemeatballman.register();
|
||||
|
||||
var finis = VanillaFactory.createItem("finis");
|
||||
finis.maxStackSize = 64;
|
||||
finis.beaconPayment = false;
|
||||
finis.register();
|
||||
|
||||
var recursivecoffeepot = VanillaFactory.createItem("recursive_iced_coffee_pot");
|
||||
recursivecoffeepot.maxStackSize = 64;
|
||||
recursivecoffeepot.beaconPayment = false;
|
||||
recursivecoffeepot.register();
|
||||
|
||||
var hiddenpowercallstonedrop = VanillaFactory.createItem("hiddenpowercallstone_loot");
|
||||
hiddenpowercallstonedrop.maxStackSize = 64;
|
||||
hiddenpowercallstonedrop.beaconPayment = false;
|
||||
hiddenpowercallstonedrop.register();
|
||||
|
||||
var warrenconfigurator = VanillaFactory.createItem("warren_configurator");
|
||||
warrenconfigurator.maxStackSize = 64;
|
||||
warrenconfigurator.beaconPayment = false;
|
||||
warrenconfigurator.register();
|
||||
|
||||
var actualizedstarlightsphere = VanillaFactory.createItem("actualized_starlight_sphere");
|
||||
actualizedstarlightsphere.maxStackSize = 64;
|
||||
actualizedstarlightsphere.beaconPayment = false;
|
||||
actualizedstarlightsphere.register();
|
||||
|
||||
|
||||
var inquiringstone = VanillaFactory.createItem("seeker_stone");
|
||||
inquiringstone.maxStackSize = 64;
|
||||
inquiringstone.beaconPayment = false;
|
||||
inquiringstone.register();
|
||||
|
||||
var warrenpebble = VanillaFactory.createItem("reality_pebble");
|
||||
warrenpebble.maxStackSize = 64;
|
||||
warrenpebble.beaconPayment = false;
|
||||
warrenpebble.register();
|
||||
|
||||
var opalescentmatter = VanillaFactory.createItem("opalescent_matter");
|
||||
opalescentmatter.maxStackSize = 64;
|
||||
opalescentmatter.beaconPayment = false;
|
||||
opalescentmatter.register();
|
||||
|
||||
|
||||
var unleashedmithril1 = VanillaFactory.createItem("unleashed_mithril_1");
|
||||
unleashedmithril1.maxStackSize = 64;
|
||||
unleashedmithril1.beaconPayment = false;
|
||||
unleashedmithril1.register();
|
||||
|
||||
var unleashedmithril2 = VanillaFactory.createItem("unleashed_mithril_2");
|
||||
unleashedmithril2.maxStackSize = 64;
|
||||
unleashedmithril2.beaconPayment = false;
|
||||
unleashedmithril2.register();
|
||||
|
||||
var unleashedmithril3 = VanillaFactory.createItem("unleashed_mithril_3");
|
||||
unleashedmithril3.maxStackSize = 64;
|
||||
unleashedmithril3.beaconPayment = false;
|
||||
unleashedmithril3.register();
|
||||
|
||||
|
||||
var echowarrenalloy = VanillaFactory.createItem("echo_warren_alloy");
|
||||
echowarrenalloy.maxStackSize = 64;
|
||||
echowarrenalloy.beaconPayment = false;
|
||||
echowarrenalloy.register();
|
||||
|
||||
var actualizedwarrenalloy = VanillaFactory.createItem("actualized_warren_alloy");
|
||||
actualizedwarrenalloy.maxStackSize = 64;
|
||||
actualizedwarrenalloy.beaconPayment = false;
|
||||
actualizedwarrenalloy.register();
|
||||
|
||||
|
||||
var bladeofthesamuraiqueen = VanillaFactory.createItem("blade_of_the_samurai_queen");
|
||||
bladeofthesamuraiqueen.maxStackSize = 64;
|
||||
bladeofthesamuraiqueen.beaconPayment = false;
|
||||
bladeofthesamuraiqueen.register();
|
||||
|
||||
|
||||
var alchemicaldust = VanillaFactory.createItem("alchemical_dust");
|
||||
alchemicaldust.maxStackSize = 64;
|
||||
alchemicaldust.beaconPayment = false;
|
||||
alchemicaldust.register();
|
||||
|
||||
var arcanefissilealloy = VanillaFactory.createItem("arcane_fissile_alloy");
|
||||
arcanefissilealloy.maxStackSize = 64;
|
||||
arcanefissilealloy.beaconPayment = false;
|
||||
arcanefissilealloy.register();
|
||||
|
||||
var depletedfissilealloy = VanillaFactory.createItem("depleted_arcane_fissile_alloy");
|
||||
depletedfissilealloy.maxStackSize = 64;
|
||||
depletedfissilealloy.beaconPayment = false;
|
||||
depletedfissilealloy.register();
|
||||
|
||||
var arcanefissiledust = VanillaFactory.createItem("arcane_fissile_dust");
|
||||
arcanefissiledust.maxStackSize = 64;
|
||||
arcanefissiledust.beaconPayment = false;
|
||||
arcanefissiledust.register();
|
||||
|
||||
var apothecaryfissilealloy = VanillaFactory.createItem("apothecary_fissile_alloy");
|
||||
apothecaryfissilealloy.maxStackSize = 64;
|
||||
apothecaryfissilealloy.beaconPayment = false;
|
||||
apothecaryfissilealloy.register();
|
||||
|
||||
|
||||
var depletedapothecaryfissilealloy = VanillaFactory.createItem("depleted_apothecary_fissile_alloy");
|
||||
depletedapothecaryfissilealloy.maxStackSize = 64;
|
||||
depletedapothecaryfissilealloy.beaconPayment = false;
|
||||
depletedapothecaryfissilealloy.register();
|
||||
|
||||
var apothecaryfissiledust = VanillaFactory.createItem("apothecary_fissile_dust");
|
||||
apothecaryfissiledust.maxStackSize = 64;
|
||||
apothecaryfissiledust.beaconPayment = false;
|
||||
apothecaryfissiledust.register();
|
||||
|
||||
var spacewarpingalloy1 = VanillaFactory.createItem("kampylotitum");
|
||||
spacewarpingalloy1.maxStackSize = 64;
|
||||
spacewarpingalloy1.beaconPayment = false;
|
||||
spacewarpingalloy1.register();
|
||||
|
||||
var spacewarpingalloy2 = VanillaFactory.createItem("elleipsinyum");
|
||||
spacewarpingalloy2.maxStackSize = 64;
|
||||
spacewarpingalloy2.beaconPayment = false;
|
||||
spacewarpingalloy2.register();
|
||||
|
||||
var spacewarpingalloy3 = VanillaFactory.createItem("ekkremesynium");
|
||||
spacewarpingalloy3.maxStackSize = 64;
|
||||
spacewarpingalloy3.beaconPayment = false;
|
||||
spacewarpingalloy3.register();
|
||||
|
||||
var silvanfissilealloy = VanillaFactory.createItem("silvan_fissile_alloy");
|
||||
silvanfissilealloy.maxStackSize = 64;
|
||||
silvanfissilealloy.beaconPayment = false;
|
||||
silvanfissilealloy.register();
|
||||
|
||||
var depsilvanfissilealloy = VanillaFactory.createItem("depleted_silvan_fissile_alloy");
|
||||
depsilvanfissilealloy.maxStackSize = 64;
|
||||
depsilvanfissilealloy.beaconPayment = false;
|
||||
depsilvanfissilealloy.register();
|
||||
|
||||
var silvanfissiledust = VanillaFactory.createItem("silvan_fissile_dust");
|
||||
silvanfissiledust.maxStackSize = 64;
|
||||
silvanfissiledust.beaconPayment = false;
|
||||
silvanfissiledust.register();
|
||||
|
||||
var innervedfissilealloy = VanillaFactory.createItem("innerved_fissile_alloy");
|
||||
innervedfissilealloy.maxStackSize = 64;
|
||||
innervedfissilealloy.beaconPayment = false;
|
||||
innervedfissilealloy.register();
|
||||
|
||||
var depinnervedfissilealloy = VanillaFactory.createItem("depleted_innerved_fissile_alloy");
|
||||
depinnervedfissilealloy.maxStackSize = 64;
|
||||
depinnervedfissilealloy.beaconPayment = false;
|
||||
depinnervedfissilealloy.register();
|
||||
|
||||
var innervedfissiledust = VanillaFactory.createItem("innerved_fissile_dust");
|
||||
innervedfissiledust.maxStackSize = 64;
|
||||
innervedfissiledust.beaconPayment = false;
|
||||
innervedfissiledust.register();
|
||||
|
||||
var radiantfissilealloy = VanillaFactory.createItem("radiant_fissile_alloy");
|
||||
radiantfissilealloy.maxStackSize = 64;
|
||||
radiantfissilealloy.beaconPayment = false;
|
||||
radiantfissilealloy.register();
|
||||
|
||||
var depradiantfissilealloy = VanillaFactory.createItem("depleted_radiant_fissile_alloy");
|
||||
depradiantfissilealloy.maxStackSize = 64;
|
||||
depradiantfissilealloy.beaconPayment = false;
|
||||
depradiantfissilealloy.register();
|
||||
|
||||
var radiantfissiledust = VanillaFactory.createItem("radiant_fissile_dust");
|
||||
radiantfissiledust.maxStackSize = 64;
|
||||
radiantfissiledust.beaconPayment = false;
|
||||
radiantfissiledust.register();
|
||||
|
||||
var soulofkashan = VanillaFactory.createItem("soul_of_kashan");
|
||||
soulofkashan.maxStackSize = 64;
|
||||
soulofkashan.beaconPayment = false;
|
||||
soulofkashan.register();
|
||||
|
||||
var puretwilightmatter = VanillaFactory.createItem("pure_twilight_matter");
|
||||
puretwilightmatter.maxStackSize = 64;
|
||||
puretwilightmatter.beaconPayment = false;
|
||||
puretwilightmatter.register();
|
||||
|
||||
var shardofthecosmos = VanillaFactory.createItem("shard_of_the_cosmos");
|
||||
shardofthecosmos.maxStackSize = 64;
|
||||
shardofthecosmos.beaconPayment = false;
|
||||
shardofthecosmos.register();
|
||||
|
||||
var fractalliteoath = VanillaFactory.createItem("true_tongue_oath");
|
||||
fractalliteoath.maxStackSize = 64;
|
||||
fractalliteoath.beaconPayment = false;
|
||||
fractalliteoath.register();
|
||||
|
||||
var trinityrunes = VanillaFactory.createItem("trinity_runes");
|
||||
trinityrunes.maxStackSize = 64;
|
||||
trinityrunes.beaconPayment = false;
|
||||
trinityrunes.register();
|
||||
|
||||
var runesofthelover = VanillaFactory.createItem("runes_of_the_lover");
|
||||
runesofthelover.maxStackSize = 1;
|
||||
runesofthelover.beaconPayment = false;
|
||||
runesofthelover.register();
|
||||
|
||||
var stoneofthelover = VanillaFactory.createItem("stone_of_the_lover");
|
||||
stoneofthelover.maxStackSize = 64;
|
||||
stoneofthelover.beaconPayment = false;
|
||||
stoneofthelover.register();
|
||||
|
||||
var callofthelover = VanillaFactory.createItem("call_of_the_lover");
|
||||
callofthelover.maxStackSize = 64;
|
||||
callofthelover.beaconPayment = false;
|
||||
callofthelover.register();
|
||||
|
||||
var recursionofthelover = VanillaFactory.createItem("recursion_of_the_lover");
|
||||
recursionofthelover.maxStackSize = 64;
|
||||
recursionofthelover.beaconPayment = false;
|
||||
recursionofthelover.register();
|
||||
|
||||
var runesoftheloved = VanillaFactory.createItem("runes_of_the_loved");
|
||||
runesoftheloved.maxStackSize = 1;
|
||||
runesoftheloved.beaconPayment = false;
|
||||
runesoftheloved.register();
|
||||
|
||||
var stoneoftheloved = VanillaFactory.createItem("stone_of_the_loved");
|
||||
stoneoftheloved.maxStackSize = 64;
|
||||
stoneoftheloved.beaconPayment = false;
|
||||
stoneoftheloved.register();
|
||||
|
||||
var calloftheloved = VanillaFactory.createItem("call_of_the_loved");
|
||||
calloftheloved.maxStackSize = 64;
|
||||
calloftheloved.beaconPayment = false;
|
||||
calloftheloved.register();
|
||||
|
||||
var recursionoftheloved = VanillaFactory.createItem("recursion_of_the_loved");
|
||||
recursionoftheloved.maxStackSize = 64;
|
||||
recursionoftheloved.beaconPayment = false;
|
||||
recursionoftheloved.register();
|
||||
|
||||
|
||||
var runesofthelove = VanillaFactory.createItem("runes_of_the_love");
|
||||
runesofthelove.maxStackSize = 1;
|
||||
runesofthelove.beaconPayment = false;
|
||||
runesofthelove.register();
|
||||
|
||||
var stoneofthelove = VanillaFactory.createItem("stone_of_the_love");
|
||||
stoneofthelove.maxStackSize = 64;
|
||||
stoneofthelove.beaconPayment = false;
|
||||
stoneofthelove.register();
|
||||
|
||||
var callofthelove = VanillaFactory.createItem("call_of_the_love");
|
||||
callofthelove.maxStackSize = 64;
|
||||
callofthelove.beaconPayment = false;
|
||||
callofthelove.register();
|
||||
|
||||
var recursionofthelove = VanillaFactory.createItem("recursion_of_the_love");
|
||||
recursionofthelove.maxStackSize = 64;
|
||||
recursionofthelove.beaconPayment = false;
|
||||
recursionofthelove.register();
|
||||
|
||||
|
||||
var puzzlesolcher = VanillaFactory.createItem("puzzle_solution_cherubim");
|
||||
puzzlesolcher.maxStackSize = 64;
|
||||
puzzlesolcher.beaconPayment = false;
|
||||
puzzlesolcher.register();
|
||||
|
||||
var unleashedtriquetra = VanillaFactory.createItem("unleashed_triquetra");
|
||||
unleashedtriquetra.maxStackSize = 64;
|
||||
unleashedtriquetra.beaconPayment = false;
|
||||
unleashedtriquetra.register();
|
||||
|
||||
var cuendillarcatalyst1 = VanillaFactory.createItem("cuendillar_catalyst_1");
|
||||
cuendillarcatalyst1.maxStackSize = 64;
|
||||
cuendillarcatalyst1.beaconPayment = false;
|
||||
cuendillarcatalyst1.register();
|
||||
|
||||
var cuendillarcatalyst2 = VanillaFactory.createItem("cuendillar_catalyst_2");
|
||||
cuendillarcatalyst2.maxStackSize = 64;
|
||||
cuendillarcatalyst2.beaconPayment = false;
|
||||
cuendillarcatalyst2.register();
|
||||
|
||||
var cuendillarcatalyst3 = VanillaFactory.createItem("cuendillar_catalyst_3");
|
||||
cuendillarcatalyst3.maxStackSize = 64;
|
||||
cuendillarcatalyst3.beaconPayment = false;
|
||||
cuendillarcatalyst3.register();
|
||||
|
||||
var singularfractal = VanillaFactory.createItem("singular_fractal");
|
||||
singularfractal.maxStackSize = 64;
|
||||
singularfractal.beaconPayment = false;
|
||||
singularfractal.register();
|
||||
|
||||
var infiniteprocessor = VanillaFactory.createItem("infinite_processor");
|
||||
infiniteprocessor.maxStackSize = 64;
|
||||
infiniteprocessor.beaconPayment = false;
|
||||
infiniteprocessor.register();
|
||||
|
||||
var recursivequantum = VanillaFactory.createItem("recursive_quantum");
|
||||
recursivequantum.maxStackSize = 64;
|
||||
recursivequantum.beaconPayment = false;
|
||||
recursivequantum.register();
|
||||
|
||||
var fractallitequantum = VanillaFactory.createItem("fractallite_quantum");
|
||||
fractallitequantum.maxStackSize = 64;
|
||||
fractallitequantum.beaconPayment = false;
|
||||
fractallitequantum.register();
|
||||
|
||||
var plateclumprecursive = VanillaFactory.createItem("plate_clump_recursive");
|
||||
plateclumprecursive.maxStackSize = 64;
|
||||
plateclumprecursive.beaconPayment = false;
|
||||
plateclumprecursive.register();
|
||||
|
||||
var plateclumpfractal = VanillaFactory.createItem("plate_clump_fractal");
|
||||
plateclumpfractal.maxStackSize = 64;
|
||||
plateclumpfractal.beaconPayment = false;
|
||||
plateclumpfractal.register();
|
||||
|
||||
var slightlydensepebble = VanillaFactory.createItem("slightly_dense_pebble");
|
||||
slightlydensepebble.maxStackSize = 64;
|
||||
slightlydensepebble.beaconPayment = false;
|
||||
slightlydensepebble.register();
|
||||
|
||||
var standardoftheshyreempire = VanillaFactory.createItem("standard_of_the_shyre_empire");
|
||||
standardoftheshyreempire.maxStackSize = 64;
|
||||
standardoftheshyreempire.beaconPayment = false;
|
||||
standardoftheshyreempire.register();
|
||||
|
||||
var spooderglasses = VanillaFactory.createItem("spooder_glasses");
|
||||
spooderglasses.maxStackSize = 64;
|
||||
spooderglasses.beaconPayment = false;
|
||||
spooderglasses.register();
|
||||
|
||||
var massiveboomboom = VanillaFactory.createItem("massive_boomboom");
|
||||
massiveboomboom.maxStackSize = 64;
|
||||
massiveboomboom.beaconPayment = false;
|
||||
massiveboomboom.register();
|
||||
|
||||
var emccrown = VanillaFactory.createItem("emc_crown");
|
||||
emccrown.maxStackSize = 64;
|
||||
emccrown.beaconPayment = false;
|
||||
emccrown.register();
|
||||
|
||||
var atomicglasses = VanillaFactory.createItem("atomic_glasses");
|
||||
atomicglasses.maxStackSize = 64;
|
||||
atomicglasses.beaconPayment = false;
|
||||
atomicglasses.register();
|
||||
|
||||
var coolwalkingstick = VanillaFactory.createItem("cool_walking_stick");
|
||||
coolwalkingstick.maxStackSize = 64;
|
||||
coolwalkingstick.beaconPayment = false;
|
||||
coolwalkingstick.register();
|
||||
|
||||
var horribleuneditedfanfic = VanillaFactory.createItem("horrible_unedited_fanfiction");
|
||||
horribleuneditedfanfic.maxStackSize = 64;
|
||||
horribleuneditedfanfic.beaconPayment = false;
|
||||
horribleuneditedfanfic.register();
|
||||
|
||||
var nullpointer = VanillaFactory.createItem("null_pointer");
|
||||
nullpointer.maxStackSize = 64;
|
||||
nullpointer.beaconPayment = false;
|
||||
nullpointer.register();
|
||||
|
||||
var redishwhitehat = VanillaFactory.createItem("p0rtals_redish_white_hat");
|
||||
redishwhitehat.maxStackSize = 64;
|
||||
redishwhitehat.beaconPayment = false;
|
||||
redishwhitehat.register();
|
||||
|
||||
var collarbells = VanillaFactory.createItem("collar_bells");
|
||||
collarbells.maxStackSize = 64;
|
||||
collarbells.beaconPayment = false;
|
||||
collarbells.register();
|
||||
|
||||
var shieldofthearbiter = VanillaFactory.createItem("shield_of_the_arbiter");
|
||||
shieldofthearbiter.maxStackSize = 64;
|
||||
shieldofthearbiter.beaconPayment = false;
|
||||
shieldofthearbiter.register();
|
||||
|
||||
var trinityingot = VanillaFactory.createItem("trinity_ingot");
|
||||
trinityingot.maxStackSize = 64;
|
||||
trinityingot.beaconPayment = false;
|
||||
trinityingot.register();
|
||||
|
||||
var bigbangmatter = VanillaFactory.createItem("big_bang_matter");
|
||||
bigbangmatter.maxStackSize = 64;
|
||||
bigbangmatter.beaconPayment = false;
|
||||
bigbangmatter.register();
|
||||
|
||||
var ascendedgallifreyanalloy = VanillaFactory.createItem("ascended_gallifreyan_alloy");
|
||||
ascendedgallifreyanalloy.maxStackSize = 64;
|
||||
ascendedgallifreyanalloy.beaconPayment = false;
|
||||
ascendedgallifreyanalloy.register();
|
||||
|
||||
var tokenofpeace = VanillaFactory.createItem("token_of_forgiveness");
|
||||
tokenofpeace.maxStackSize = 64;
|
||||
tokenofpeace.beaconPayment = false;
|
||||
tokenofpeace.register();
|
||||
|
||||
var tokenofforgiveness = VanillaFactory.createItem("offer_of_restored_balance");
|
||||
tokenofforgiveness.maxStackSize = 64;
|
||||
tokenofforgiveness.beaconPayment = false;
|
||||
tokenofforgiveness.register();
|
||||
|
||||
var gemofpuretaint = VanillaFactory.createItem("gem_of_pure_taint");
|
||||
gemofpuretaint.maxStackSize = 64;
|
||||
gemofpuretaint.beaconPayment = false;
|
||||
gemofpuretaint.register();
|
||||
|
||||
var taintedclaw = VanillaFactory.createItem("tainted_claw");
|
||||
taintedclaw.maxStackSize = 64;
|
||||
taintedclaw.beaconPayment = false;
|
||||
taintedclaw.register();
|
||||
|
||||
var voidchains = VanillaFactory.createItem("void_chains");
|
||||
voidchains.maxStackSize = 64;
|
||||
voidchains.beaconPayment = false;
|
||||
voidchains.register();
|
||||
|
||||
var voidichoriumgem = VanillaFactory.createItem("void_ichorium_gem");
|
||||
voidichoriumgem.maxStackSize = 64;
|
||||
voidichoriumgem.beaconPayment = false;
|
||||
voidichoriumgem.register();
|
||||
|
||||
var charmofthefallingtower = VanillaFactory.createItem("charm_of_the_falling_tower");
|
||||
charmofthefallingtower.maxStackSize = 64;
|
||||
charmofthefallingtower.beaconPayment = false;
|
||||
charmofthefallingtower.register();
|
||||
|
||||
var multiblockinputswapping = VanillaFactory.createItem("multiblock_input_swapping");
|
||||
multiblockinputswapping.maxStackSize = 64;
|
||||
multiblockinputswapping.beaconPayment = false;
|
||||
multiblockinputswapping.register();
|
||||
|
||||
var curseddragonegg = VanillaFactory.createItem("cursed_dragon_egg");
|
||||
curseddragonegg.maxStackSize = 64;
|
||||
curseddragonegg.beaconPayment = false;
|
||||
curseddragonegg.register();
|
||||
|
||||
var taintedalchemiccatalyst = VanillaFactory.createItem("tainted_alchemic_catalyst");
|
||||
taintedalchemiccatalyst.maxStackSize = 64;
|
||||
taintedalchemiccatalyst.beaconPayment = false;
|
||||
taintedalchemiccatalyst.register();
|
||||
|
||||
var recursionoftaint = VanillaFactory.createItem("recursion_of_taint");
|
||||
recursionoftaint.maxStackSize = 64;
|
||||
recursionoftaint.beaconPayment = false;
|
||||
recursionoftaint.register();
|
||||
|
||||
var shieldofthekinginpurple = VanillaFactory.createItem("shield_of_the_king_in_purple");
|
||||
shieldofthekinginpurple.maxStackSize = 64;
|
||||
shieldofthekinginpurple.beaconPayment = false;
|
||||
shieldofthekinginpurple.register();
|
||||
|
||||
var taintshield = VanillaFactory.createItem("taint_shield");
|
||||
taintshield.maxStackSize = 64;
|
||||
taintshield.beaconPayment = false;
|
||||
taintshield.register();
|
||||
|
||||
var taintgun = VanillaFactory.createItem("taint_gun");
|
||||
taintgun.maxStackSize = 64;
|
||||
taintgun.beaconPayment = false;
|
||||
taintgun.register();
|
||||
|
||||
var ultimatetaintgun = VanillaFactory.createItem("the_ultimate_taint_gun");
|
||||
ultimatetaintgun.maxStackSize = 64;
|
||||
ultimatetaintgun.beaconPayment = false;
|
||||
ultimatetaintgun.register();
|
||||
|
||||
var uncannyvoidcluster = VanillaFactory.createItem("uncanny_void_cluster");
|
||||
uncannyvoidcluster.maxStackSize = 64;
|
||||
uncannyvoidcluster.beaconPayment = false;
|
||||
uncannyvoidcluster.register();
|
||||
|
||||
var puzzlesolundeadsoil = VanillaFactory.createItem("puzzle_solution_undeadsoil");
|
||||
puzzlesolundeadsoil.maxStackSize = 64;
|
||||
puzzlesolundeadsoil.beaconPayment = false;
|
||||
puzzlesolundeadsoil.register();
|
||||
|
||||
var respectofthelordoflust = VanillaFactory.createItem("respect_of_the_lord_of_lust");
|
||||
respectofthelordoflust.maxStackSize = 64;
|
||||
respectofthelordoflust.beaconPayment = false;
|
||||
respectofthelordoflust.register();
|
||||
|
||||
var respectofthelordofpride = VanillaFactory.createItem("respect_of_the_lord_of_pride");
|
||||
respectofthelordofpride.maxStackSize = 64;
|
||||
respectofthelordofpride.beaconPayment = false;
|
||||
respectofthelordofpride.register();
|
||||
|
||||
var respectofthelordofenvy = VanillaFactory.createItem("respect_of_the_lord_of_envy");
|
||||
respectofthelordofenvy.maxStackSize = 64;
|
||||
respectofthelordofenvy.beaconPayment = false;
|
||||
respectofthelordofenvy.register();
|
||||
|
||||
var respectofthelordofgreed = VanillaFactory.createItem("respect_of_the_lord_of_greed");
|
||||
respectofthelordofgreed.maxStackSize = 64;
|
||||
respectofthelordofgreed.beaconPayment = false;
|
||||
respectofthelordofgreed.register();
|
||||
|
||||
var respectofthelordofwrath = VanillaFactory.createItem("respect_of_the_lord_of_wrath");
|
||||
respectofthelordofwrath.maxStackSize = 64;
|
||||
respectofthelordofwrath.beaconPayment = false;
|
||||
respectofthelordofwrath.register();
|
||||
|
||||
var respectofthelordofsloth = VanillaFactory.createItem("respect_of_the_lord_of_sloth");
|
||||
respectofthelordofsloth.maxStackSize = 64;
|
||||
respectofthelordofsloth.beaconPayment = false;
|
||||
respectofthelordofsloth.register();
|
||||
|
||||
var oathofthelordofgluttony = VanillaFactory.createItem("oath_of_the_lord_of_gluttony");
|
||||
oathofthelordofgluttony.maxStackSize = 64;
|
||||
oathofthelordofgluttony.beaconPayment = false;
|
||||
oathofthelordofgluttony.register();
|
||||
|
||||
var respectofdeath = VanillaFactory.createItem("respect_of_death");
|
||||
respectofdeath.maxStackSize = 64;
|
||||
respectofdeath.beaconPayment = false;
|
||||
respectofdeath.register();
|
||||
|
||||
var puzzlesolvaowdeath = VanillaFactory.createItem("puzzle_solution_vowtodeath");
|
||||
puzzlesolvaowdeath.maxStackSize = 64;
|
||||
puzzlesolvaowdeath.beaconPayment = false;
|
||||
puzzlesolvaowdeath.register();
|
||||
|
||||
var fractallitetaint = VanillaFactory.createItem("fractallite_taint");
|
||||
fractallitetaint.maxStackSize = 64;
|
||||
fractallitetaint.beaconPayment = false;
|
||||
fractallitetaint.register();
|
||||
|
||||
var recursionofgluttony = VanillaFactory.createItem("recursion_of_gluttony");
|
||||
recursionofgluttony.maxStackSize = 64;
|
||||
recursionofgluttony.beaconPayment = false;
|
||||
recursionofgluttony.register();
|
||||
|
||||
var wishofinfinity = VanillaFactory.createItem("wish_of_infinity");
|
||||
wishofinfinity.maxStackSize = 64;
|
||||
wishofinfinity.beaconPayment = false;
|
||||
wishofinfinity.register();
|
||||
|
||||
var ingotofinfinitewishes = VanillaFactory.createItem("ingot_of_infinite_wishes");
|
||||
ingotofinfinitewishes.maxStackSize = 64;
|
||||
ingotofinfinitewishes.beaconPayment = false;
|
||||
ingotofinfinitewishes.register();
|
||||
|
||||
var gundevillimb = VanillaFactory.createItem("gun_devil_limb");
|
||||
gundevillimb.maxStackSize = 64;
|
||||
gundevillimb.beaconPayment = false;
|
||||
gundevillimb.register();
|
||||
|
||||
var bulletofthegundevil = VanillaFactory.createItem("bullet_of_the_gun_devil");
|
||||
bulletofthegundevil.maxStackSize = 64;
|
||||
bulletofthegundevil.beaconPayment = false;
|
||||
bulletofthegundevil.register();
|
||||
|
||||
var magazineofthegundevil = VanillaFactory.createItem("magazine_of_the_gun_devil");
|
||||
magazineofthegundevil.maxStackSize = 64;
|
||||
magazineofthegundevil.beaconPayment = false;
|
||||
magazineofthegundevil.register();
|
||||
|
||||
var universalconstellation = VanillaFactory.createItem("universal_constellation");
|
||||
universalconstellation.maxStackSize = 64;
|
||||
universalconstellation.beaconPayment = false;
|
||||
universalconstellation.register();
|
||||
|
||||
var dustofinfinitewishes = VanillaFactory.createItem("dust_of_infinite_wishes");
|
||||
dustofinfinitewishes.maxStackSize = 64;
|
||||
dustofinfinitewishes.beaconPayment = false;
|
||||
dustofinfinitewishes.register();
|
||||
|
||||
var eleintstone = VanillaFactory.createItem("eleint_stone");
|
||||
eleintstone.maxStackSize = 64;
|
||||
eleintstone.beaconPayment = false;
|
||||
eleintstone.register();
|
||||
|
||||
var gemofdimensionalascension = VanillaFactory.createItem("gem_of_dimensional_ascension");
|
||||
gemofdimensionalascension.maxStackSize = 64;
|
||||
gemofdimensionalascension.beaconPayment = false;
|
||||
gemofdimensionalascension.register();
|
||||
|
||||
var puzzlesoldimensionalascension = VanillaFactory.createItem("puzzle_solution_dimensionalascension");
|
||||
puzzlesoldimensionalascension.maxStackSize = 64;
|
||||
puzzlesoldimensionalascension.beaconPayment = false;
|
||||
puzzlesoldimensionalascension.register();
|
||||
|
||||
var recursionofdimensionalascension = VanillaFactory.createItem("recursion_of_dimensional_ascension");
|
||||
recursionofdimensionalascension.maxStackSize = 64;
|
||||
recursionofdimensionalascension.beaconPayment = false;
|
||||
recursionofdimensionalascension.register();
|
||||
|
||||
var infinitetaintedplate = VanillaFactory.createItem("infinite_tainted_plate");
|
||||
infinitetaintedplate.maxStackSize = 64;
|
||||
infinitetaintedplate.beaconPayment = false;
|
||||
infinitetaintedplate.register();
|
||||
|
||||
var fieryrecursionfragment = VanillaFactory.createItem("fiery_recursion_fragment");
|
||||
fieryrecursionfragment.maxStackSize = 64;
|
||||
fieryrecursionfragment.beaconPayment = false;
|
||||
fieryrecursionfragment.register();
|
||||
|
||||
var everburningdust = VanillaFactory.createItem("everburning_dust");
|
||||
everburningdust.maxStackSize = 64;
|
||||
everburningdust.beaconPayment = false;
|
||||
everburningdust.register();
|
||||
|
||||
var everburningrecursionfragment = VanillaFactory.createItem("everburning_recursion_fragment");
|
||||
everburningrecursionfragment.maxStackSize = 64;
|
||||
everburningrecursionfragment.beaconPayment = false;
|
||||
everburningrecursionfragment.register();
|
||||
|
||||
|
||||
var everburningplating = VanillaFactory.createItem("everburning_plating");
|
||||
everburningplating.maxStackSize = 64;
|
||||
everburningplating.beaconPayment = false;
|
||||
everburningplating.register();
|
||||
|
||||
var quasarchargedgem = VanillaFactory.createItem("quasar_charged_gem");
|
||||
quasarchargedgem.maxStackSize = 64;
|
||||
quasarchargedgem.beaconPayment = false;
|
||||
quasarchargedgem.register();
|
||||
|
||||
var gravitationaltimecrystal = VanillaFactory.createItem("gravitational_time_crystal");
|
||||
gravitationaltimecrystal.maxStackSize = 64;
|
||||
gravitationaltimecrystal.beaconPayment = false;
|
||||
gravitationaltimecrystal.register();
|
||||
|
||||
var warrenplate = VanillaFactory.createItem("warren_plate");
|
||||
warrenplate.maxStackSize = 64;
|
||||
warrenplate.beaconPayment = false;
|
||||
warrenplate.register();
|
||||
|
||||
var powerwroughtbrightsteelalloyplate = VanillaFactory.createItem("power_wrought_brightsteel_alloy_plate");
|
||||
powerwroughtbrightsteelalloyplate.maxStackSize = 64;
|
||||
powerwroughtbrightsteelalloyplate.beaconPayment = false;
|
||||
powerwroughtbrightsteelalloyplate.register();
|
||||
|
||||
var quasarchargeddust = VanillaFactory.createItem("quasar_charged_dust");
|
||||
quasarchargeddust.maxStackSize = 64;
|
||||
quasarchargeddust.beaconPayment = false;
|
||||
quasarchargeddust.register();
|
||||
|
||||
var cleansedbrightsteelalloyplate = VanillaFactory.createItem("cleansed_brightsteel_alloy_plate");
|
||||
cleansedbrightsteelalloyplate.maxStackSize = 64;
|
||||
cleansedbrightsteelalloyplate.beaconPayment = false;
|
||||
cleansedbrightsteelalloyplate.register();
|
||||
|
||||
var dimensionallyascendedgarnet = VanillaFactory.createItem("dimensionally_ascended_garnet");
|
||||
dimensionallyascendedgarnet.maxStackSize = 64;
|
||||
dimensionallyascendedgarnet.beaconPayment = false;
|
||||
dimensionallyascendedgarnet.register();
|
||||
|
||||
var alchemicallyhyperactivecrystal = VanillaFactory.createItem("alchemically_hyperactive_crystal");
|
||||
alchemicallyhyperactivecrystal.maxStackSize = 64;
|
||||
alchemicallyhyperactivecrystal.beaconPayment = false;
|
||||
alchemicallyhyperactivecrystal.register();
|
||||
|
||||
var darkmatterscatteringelement = VanillaFactory.createItem("dark_matter_scattering_element");
|
||||
darkmatterscatteringelement.maxStackSize = 64;
|
||||
darkmatterscatteringelement.beaconPayment = false;
|
||||
darkmatterscatteringelement.register();
|
||||
|
||||
var fractalstoneclump = VanillaFactory.createItem("fractal_metal_clump");
|
||||
fractalstoneclump.maxStackSize = 64;
|
||||
fractalstoneclump.beaconPayment = false;
|
||||
fractalstoneclump.register();
|
||||
|
||||
var fractalmetalplate = VanillaFactory.createItem("fractal_metal_plate");
|
||||
fractalmetalplate.maxStackSize = 64;
|
||||
fractalmetalplate.beaconPayment = false;
|
||||
fractalmetalplate.register();
|
||||
|
||||
var trinitynugget = VanillaFactory.createItem("trinity_nugget");
|
||||
trinitynugget.maxStackSize = 64;
|
||||
trinitynugget.beaconPayment = false;
|
||||
trinitynugget.register();
|
||||
|
||||
var echowarrenbar = VanillaFactory.createItem("echo_warren_bar");
|
||||
echowarrenbar.maxStackSize = 64;
|
||||
echowarrenbar.beaconPayment = false;
|
||||
echowarrenbar.register();
|
||||
|
||||
var timecrystallattice = VanillaFactory.createItem("time_crystal_lattice");
|
||||
timecrystallattice.maxStackSize = 64;
|
||||
timecrystallattice.beaconPayment = false;
|
||||
timecrystallattice.register();
|
||||
|
||||
var galaxysuperconductor = VanillaFactory.createItem("galaxy_superconductor");
|
||||
galaxysuperconductor.maxStackSize = 64;
|
||||
galaxysuperconductor.beaconPayment = false;
|
||||
galaxysuperconductor.register();
|
||||
|
||||
var fractallitefocuslens = VanillaFactory.createItem("fractallite_focus_lens");
|
||||
fractallitefocuslens.maxStackSize = 64;
|
||||
fractallitefocuslens.beaconPayment = false;
|
||||
fractallitefocuslens.register();
|
||||
|
||||
var spacetimeshapeprimer = VanillaFactory.createItem("cosmic_string_primer");
|
||||
spacetimeshapeprimer.maxStackSize = 64;
|
||||
spacetimeshapeprimer.beaconPayment = false;
|
||||
spacetimeshapeprimer.register();
|
||||
|
||||
var spacetimeshape = VanillaFactory.createItem("cosmic_string");
|
||||
spacetimeshape.maxStackSize = 64;
|
||||
spacetimeshape.beaconPayment = false;
|
||||
spacetimeshape.register();
|
||||
|
||||
var nightmareofannoyance = VanillaFactory.createItem("nightmare_of_annoyance");
|
||||
nightmareofannoyance.maxStackSize = 64;
|
||||
nightmareofannoyance.beaconPayment = false;
|
||||
nightmareofannoyance.register();
|
||||
|
||||
var strangestoneessence = VanillaFactory.createItem("strange_stone_essence");
|
||||
strangestoneessence.maxStackSize = 64;
|
||||
strangestoneessence.beaconPayment = false;
|
||||
strangestoneessence.register();
|
||||
|
||||
var neutroniumpearl = VanillaFactory.createItem("neutronium_pearl");
|
||||
neutroniumpearl.maxStackSize = 64;
|
||||
neutroniumpearl.beaconPayment = false;
|
||||
neutroniumpearl.register();
|
||||
|
||||
var mixedmetalshard = VanillaFactory.createItem("mixed_metal_shard");
|
||||
mixedmetalshard.maxStackSize = 64;
|
||||
mixedmetalshard.beaconPayment = false;
|
||||
mixedmetalshard.register();
|
||||
|
||||
var blackholealloy = VanillaFactory.createItem("black_hole_alloy_clump");
|
||||
blackholealloy.maxStackSize = 64;
|
||||
blackholealloy.beaconPayment = false;
|
||||
blackholealloy.register();
|
||||
|
||||
var softenedblackholealloy = VanillaFactory.createItem("softened_black_hole_alloy_clump");
|
||||
softenedblackholealloy.maxStackSize = 64;
|
||||
softenedblackholealloy.beaconPayment = false;
|
||||
softenedblackholealloy.register();
|
||||
|
||||
var drawnblackholealloy = VanillaFactory.createItem("drawn_black_hole_alloy_clump");
|
||||
drawnblackholealloy.maxStackSize = 64;
|
||||
drawnblackholealloy.beaconPayment = false;
|
||||
drawnblackholealloy.register();
|
||||
|
||||
var quenchedblackholealloy = VanillaFactory.createItem("quenched_black_hole_alloy_clump");
|
||||
quenchedblackholealloy.maxStackSize = 64;
|
||||
quenchedblackholealloy.beaconPayment = false;
|
||||
quenchedblackholealloy.register();
|
||||
|
||||
var blackholealloyingot = VanillaFactory.createItem("black_hole_alloy_ingot");
|
||||
blackholealloyingot.maxStackSize = 64;
|
||||
blackholealloyingot.beaconPayment = false;
|
||||
blackholealloyingot.register();
|
||||
|
||||
var galacticcore = VanillaFactory.createItem("galactic_core");
|
||||
galacticcore.maxStackSize = 64;
|
||||
galacticcore.beaconPayment = false;
|
||||
galacticcore.register();
|
||||
|
||||
var galacticpowerunit = VanillaFactory.createItem("galactic_power_unit");
|
||||
galacticpowerunit.maxStackSize = 64;
|
||||
galacticpowerunit.beaconPayment = false;
|
||||
galacticpowerunit.register();
|
||||
|
||||
var cosmicstringconduit = VanillaFactory.createItem("cosmic_string_conduit");
|
||||
cosmicstringconduit.maxStackSize = 64;
|
||||
cosmicstringconduit.beaconPayment = false;
|
||||
cosmicstringconduit.register();
|
||||
|
||||
var eyeofharmonypowerunit = VanillaFactory.createItem("eye_of_harmony_power_unit");
|
||||
eyeofharmonypowerunit.maxStackSize = 64;
|
||||
eyeofharmonypowerunit.beaconPayment = false;
|
||||
eyeofharmonypowerunit.register();
|
||||
|
||||
var definedbar = VanillaFactory.createItem("defined_bar");
|
||||
definedbar.maxStackSize = 64;
|
||||
definedbar.beaconPayment = false;
|
||||
definedbar.register();
|
||||
|
||||
|
||||
|
||||
@@ -55,3 +55,88 @@ AvaritiaItemBuilder.registerItem("self_actualizing_stone", 1, "self_actualizing_
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
|
||||
|
||||
AvaritiaItemBuilder.registerItem("cosmic_balance", 64, "cosmic_balance")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("cosmic_balance_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
|
||||
AvaritiaItemBuilder.registerItem("bedrock_blaster", 64, "bedrock_blaster")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("bedrock_blaster_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
|
||||
|
||||
AvaritiaItemBuilder.registerItem("cosmic_fractal_catalyzer", 64, "cosmic_fractal_catalyzer")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("cosmic_fractal_catalyzer_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
|
||||
AvaritiaItemBuilder.registerItem("cosmic_halite_cluster", 64, "cosmic_halite_cluster")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("cosmic_halite_cluster_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
|
||||
AvaritiaItemBuilder.registerItem("cosmic_fractal_harmonizer", 64, "cosmic_fractal_harmonizer")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("cosmic_fractal_harmonizer_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
|
||||
AvaritiaItemBuilder.registerItem("univocal_halite_cluster", 64, "univocal_halite_cluster")
|
||||
// The following effects can be freely combined; you decide which effects are needed and which are not
|
||||
.shouldDrawHalo(true) // Whether to display the halo
|
||||
.haloSize(8) // Required if shouldDrawHalo. Halo size (1-16)
|
||||
.haloColour("808080") // Optional if displaying halo. Halo color in hexadecimal
|
||||
// .haloTextures("halo_image") // Optional if displaying halo. Custom halo image, only the name without suffix is needed. The transparency needs to be adjusted using an image editor. If not set, the default Avaritia halo will be used. Place the image in the ./minecraft/resources/avaritiaitem/textures/items folder.
|
||||
.shouldDrawCosmic(true) // Whether to render the cosmic background
|
||||
.mask("univocal_halite_cluster_mask") // Required if the above is true. Image for the area to render the cosmic background. Place it in the same folder as the halo image. Must completely cover the original image, with black pixels (#000000) covering the areas not to be displayed and gray pixels (the leftmost column in the RGB color picker in an image editor) covering the areas to be displayed.
|
||||
.maskOpacity(1.0f) // Cosmic background opacity. Recommended value is 1.0f
|
||||
// .shouldDrawPulse(true) // Whether to display the pulse effect (i.e., the shaking effect of the Infinity Catalyst)
|
||||
// .colorfulName(true) // Whether to add a dynamic rainbow effect to the item name
|
||||
.create();
|
||||
@@ -90,6 +90,14 @@ val polarursa = LootTweaker.getTable("aoa3:entities/mobs/overworld/polar_ursa");
|
||||
val polarursaroll = polarursa.addPool("polarursaroll", 1, 1, 0, 0);
|
||||
polarursaroll.addItemEntry(<aoa3:rosite_ingot>, 5);
|
||||
|
||||
val deepcase = LootTweaker.getTable("aoa3:blocks/deep_case");
|
||||
val deepcasemain = deepcase.getPool("main");
|
||||
deepcasemain.addItemEntry(<contenttweaker:alchemical_deep_rock>*4, 20);
|
||||
deepcasemain.addItemEntry(<projecte:item.pe_fuel:2>*64, 20);
|
||||
deepcasemain.addItemEntry(<contenttweaker:botanic_alchemic_catalyst>*16, 20);
|
||||
deepcasemain.addItemEntry(<extrabees:honey_comb:11>*64, 30);
|
||||
|
||||
|
||||
val dimdoordungeon = LootTweaker.getTable("dimdoors:dungeon_chest");
|
||||
val dimdoorsdungeonroll = dimdoordungeon.addPool("dimdoorsdungeonroll", 1, 1, 0, 0);
|
||||
dimdoorsdungeonroll.addItemEntry(<ebwizardry:grand_crystal>, 5);
|
||||
@@ -581,6 +589,7 @@ magicbeanslootingots.addItemEntry(<techreborn:ingot:15>, 3);
|
||||
magicbeanslootingots.addItemEntry(<techreborn:ingot:3>, 3);
|
||||
magicbeanslootingots.addItemEntry(<thermalfoundation:material:135>, 3);
|
||||
magicbeanslootingots.addItemEntry(<thermalfoundation:material:134>, 3);
|
||||
magicbeanslootingots.addItemEntry(<thermalfoundation:material:134>, 3);
|
||||
|
||||
val pinkslime = LootTweaker.getTable("industrialforegoing:entities/pink_slime");
|
||||
val pinkslimeextraroll = pinkslime.addPool("pinkslimeextraroll", 1, 1, 0, 0);
|
||||
|
||||
@@ -29,3 +29,10 @@ miniatureblackhole.setToolClass("pickaxe");
|
||||
miniatureblackhole.setToolLevel(3);
|
||||
miniatureblackhole.register();
|
||||
|
||||
|
||||
var miniaturewhitehole = VanillaFactory.createBlock("miniature_white_hole", <blockmaterial:iron>);
|
||||
miniaturewhitehole.setBlockHardness(0.7);
|
||||
miniaturewhitehole.setBlockResistance(2.5);
|
||||
miniaturewhitehole.setToolClass("pickaxe");
|
||||
miniaturewhitehole.setToolLevel(3);
|
||||
miniaturewhitehole.register();
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:runes_of_the_lover>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:stone_of_the_lover>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:call_of_the_lover\",Count:4b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:runes_of_the_loved>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:stone_of_the_loved>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:call_of_the_loved\",Count:4b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.entity.IEntityEquipmentSlot;
|
||||
|
||||
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:runes_of_the_love>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:stone_of_the_love>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:call_of_the_love\",Count:4b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -540,3 +540,62 @@ darkmatter.addMaterialTrait("magical_modifier");
|
||||
darkmatter.itemLocalizer = function(thisMaterial, itemName){return "暗物质 " + itemName;};
|
||||
darkmatter.localizedName = "暗物质";
|
||||
darkmatter.register();
|
||||
|
||||
|
||||
val cosmicbalance = mods.contenttweaker.tconstruct.MaterialBuilder.create("cosmic_balance");
|
||||
cosmicbalance.color = 0x577d91;
|
||||
cosmicbalance.craftable = true;
|
||||
// abyssalflesh.liquid = <fluid:molten_barathosynium>;
|
||||
cosmicbalance.castable = false;
|
||||
cosmicbalance.addItem(<item:avaritiaitem:cosmic_balance>,1,144);
|
||||
cosmicbalance.representativeItem = <item:avaritiaitem:cosmic_balance>;
|
||||
cosmicbalance.addHeadMaterialStats(1, 1.62f, 1.04f, 1);
|
||||
cosmicbalance.addHandleMaterialStats(1.03, 1);
|
||||
cosmicbalance.addExtraMaterialStats(1);
|
||||
cosmicbalance.addProjectileMaterialStats();
|
||||
cosmicbalance.addBowMaterialStats(0.53, 1.54, 1);
|
||||
cosmicbalance.addMaterialTrait("hailhydra");
|
||||
cosmicbalance.addMaterialTrait("vindictive");
|
||||
cosmicbalance.addMaterialTrait("holy");
|
||||
cosmicbalance.itemLocalizer = function(thisMaterial, itemName){return "寰宇平衡 " + itemName;};
|
||||
cosmicbalance.localizedName = "寰宇平衡";
|
||||
cosmicbalance.register();
|
||||
|
||||
|
||||
val trinity = mods.contenttweaker.tconstruct.MaterialBuilder.create("trinity");
|
||||
trinity.color = 0xa8ffe6;
|
||||
trinity.craftable = false;
|
||||
trinity.liquid = <fluid:trinity_ingot>;
|
||||
trinity.castable = true;
|
||||
trinity.addItem(<item:contenttweaker:trinity_ingot>,1,144);
|
||||
trinity.representativeItem = <item:contenttweaker:trinity_ingot>;
|
||||
trinity.addHeadMaterialStats(10000, 100.62f, 100000.04f, 100);
|
||||
trinity.addHandleMaterialStats(10.03, 10000);
|
||||
trinity.addExtraMaterialStats(10);
|
||||
trinity.addProjectileMaterialStats();
|
||||
trinity.addBowMaterialStats(0.53, 1.54, 1);
|
||||
trinity.addMaterialTrait("lightboost");
|
||||
trinity.addMaterialTrait("thunder2");
|
||||
trinity.addMaterialTrait("holy");
|
||||
trinity.itemLocalizer = function(thisMaterial, itemName){return "三一 " + itemName;};
|
||||
trinity.localizedName = "三一";
|
||||
trinity.register();
|
||||
|
||||
|
||||
val worthy = mods.contenttweaker.tconstruct.MaterialBuilder.create("worthy");
|
||||
worthy.color = 0x3f1266;
|
||||
worthy.craftable = true;
|
||||
// abyssalflesh.liquid = <fluid:molten_barathosynium>;
|
||||
worthy.castable = false;
|
||||
worthy.addItem(<item:contenttweaker:stone_of_worthiness>,1,144);
|
||||
worthy.representativeItem = <item:contenttweaker:stone_of_worthiness>;
|
||||
worthy.addHeadMaterialStats(100, 1.62f, 6000.04f, 1);
|
||||
worthy.addHandleMaterialStats(1.03, 100);
|
||||
worthy.addExtraMaterialStats(4);
|
||||
worthy.addProjectileMaterialStats();
|
||||
worthy.addBowMaterialStats(0.53, 1.54, 1);
|
||||
worthy.addMaterialTrait("overflow");
|
||||
worthy.addMaterialTrait("bloodymary");
|
||||
worthy.itemLocalizer = function(thisMaterial, itemName){return "尊铸 " + itemName;};
|
||||
worthy.localizedName = "尊铸";
|
||||
worthy.register();
|
||||
|
||||
@@ -272,3 +272,7 @@ mods.tconstruct.Casting.addTableRecipe(<contenttweaker:hihi_irokane>, <tconstruc
|
||||
|
||||
mods.tconstruct.Melting.addRecipe(<liquid:orichalcum> * 144,<contenttweaker:orichalcum>);
|
||||
mods.tconstruct.Casting.addTableRecipe(<contenttweaker:orichalcum>, <tconstruct:cast_custom:0>, <liquid:orichalcum>, 144, false, 80);
|
||||
|
||||
|
||||
mods.tconstruct.Melting.addRecipe(<liquid:trinity_ingot> * 144,<contenttweaker:trinity_ingot>);
|
||||
mods.tconstruct.Casting.addTableRecipe(<contenttweaker:trinity_ingot>, <tconstruct:cast_custom:0>, <liquid:trinity_ingot>, 144, false, 80);
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.entity.IEntityEquipmentSlot;
|
||||
|
||||
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:true_tongue_oath>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:recursion_of_the_love>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:cuendillar_catalyst_1\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.entity.IEntityEquipmentSlot;
|
||||
|
||||
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:true_tongue_oath>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:recursion_of_the_lover>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:cuendillar_catalyst_2\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
#modloaded iceandfire
|
||||
|
||||
import crafttweaker.damage.IDamageSource;
|
||||
import crafttweaker.entity.IEntityLivingBase;
|
||||
import crafttweaker.event.PlayerInteractEntityEvent;
|
||||
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.entity.IEntityEquipmentSlot;
|
||||
|
||||
|
||||
|
||||
events.onPlayerInteractEntity(function(event as PlayerInteractEntityEvent) {
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
val heldItem = event.item;
|
||||
// [edit item name in the bracket handler]
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:true_tongue_oath>.definition.id)) {
|
||||
if (!event.target instanceof IEntityLivingBase) {
|
||||
return;
|
||||
}
|
||||
val target as IEntityLivingBase = event.target;
|
||||
if ((target.definition.id != "aoa3:realmshifter") || !target.isAlive()) {
|
||||
return;
|
||||
}
|
||||
if (!(target.mainHandHeldItem.matches(<contenttweaker:recursion_of_the_loved>))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Commands.call("summon Item ~ ~ ~ {Item:{id:\"contenttweaker:cuendillar_catalyst_3\",Count:1b}}", event.player, event.world, true, true);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,603 @@
|
||||
#loader contenttweaker
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.IItemRightClick;
|
||||
import mods.contenttweaker.Commands;
|
||||
import mods.contenttweaker.ItemFood;
|
||||
import mods.contenttweaker.IItemFoodEaten;
|
||||
import mods.contenttweaker.MutableItemStack;
|
||||
import mods.contenttweaker.Hand;
|
||||
import mods.contenttweaker.World;
|
||||
import mods.contenttweaker.IItemUpdate;
|
||||
import mods.contenttweaker.Player;
|
||||
import crafttweaker.player.IPlayer;
|
||||
import crafttweaker.block.IBlock;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.util.Position3f;
|
||||
import crafttweaker.block.IBlockState;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function getBlockMatchAtPosition(blockTargetID as string, playerPos as crafttweaker.util.Position3f, blockLocation as int [], world as crafttweaker.world.IWorld) as int{
|
||||
// 1 if block matches, 0 if not
|
||||
var match = 0 as int;
|
||||
// get block position from relative to world coordinates
|
||||
var checkPos as crafttweaker.util.Position3f;
|
||||
checkPos = crafttweaker.util.Position3f.create(playerPos.x + blockLocation[0], playerPos.y + blockLocation[1], playerPos.z + blockLocation[2]);
|
||||
// get block id at coordinates
|
||||
val state = world.getBlock(checkPos);
|
||||
val blockID = state.definition.id as string;
|
||||
val blockMeta = state.meta;
|
||||
val fullBlockID = blockMeta == 0 ? blockID : blockID + ":" + blockMeta;
|
||||
// check if block id matches
|
||||
if (fullBlockID == blockTargetID){
|
||||
match = 1;
|
||||
}
|
||||
return match;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var stoneofdimensionalascension = VanillaFactory.createItem("stone_of_dimensional_ascension");
|
||||
stoneofdimensionalascension.maxStackSize = 1;
|
||||
stoneofdimensionalascension.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
player.sendChat("需要建造一个大型“结构”来使用该物品");
|
||||
player.sendChat("若渲染距离设置过低,可能需要加载周围区块以确保物品正常工作");
|
||||
player.sendChat("====================================================");
|
||||
player.sendChat("你需要在周围放置一系列方块");
|
||||
player.sendChat("最初的几个会非常明显,但剩余的放置模式就需要你自己探索了");
|
||||
player.sendChat("如有疑问,任务书可能会有所帮助,只需确保已将其更新至整合包最新版本");
|
||||
player.sendChat("使用 < /bq_admin default load > 命令来确保任务书为最新版本");
|
||||
player.sendChat("====================================================");
|
||||
player.sendChat("在虚空世界中找一大块空地来执行操作,与其他建筑间至少要留出200格空间");
|
||||
player.sendChat("使用两种不同颜色的方块搭建棋盘状的平台,也许能帮助确定方块位置和距离");
|
||||
player.sendChat("每次放置一个所需方块,并使用该物品进行检查;就算你提前知道了放置方法,还是建议这样来避免出错");
|
||||
player.sendChat("====================================================");
|
||||
player.sendChat("正在扫描周围方块");
|
||||
player.sendChat(" ");
|
||||
|
||||
if(player.getDimension() != 43) {
|
||||
player.sendChat("在虚空世界中找一大块空地来执行操作,与其他建筑间至少要留出200格空间");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// counter for fails or successes
|
||||
var matchGen = 0 as int;
|
||||
|
||||
// player position
|
||||
var playerPos = player.position.asPosition3f();
|
||||
playerPos.x = playerPos.x;
|
||||
playerPos.y = playerPos.y - 1;
|
||||
playerPos.z = playerPos.z;
|
||||
|
||||
// go through all blocks in the momument
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:grass", playerPos, [0,0,0], world) == 0) {
|
||||
player.sendChat("放置一个草方块,然后站在上面");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("tardis:telos_sand", playerPos, [0,0,-2], world) == 0) {
|
||||
player.sendChat("在草方块的北侧,间隔一格放置一个泰洛斯沙子 [0,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
if (getBlockMatchAtPosition("dimdoors:fabric:15", playerPos, [0,0,2], world) == 0) {
|
||||
player.sendChat("在草方块的南侧,间隔一格放置一个现实之壁 [0,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
if (getBlockMatchAtPosition("minecraft:netherrack", playerPos, [2,0,0], world) == 0) {
|
||||
player.sendChat("在草方块的东侧,间隔一格放置一个地狱岩 [2,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
if (getBlockMatchAtPosition("minecraft:end_stone", playerPos, [4,0,2], world) == 0) {
|
||||
player.sendChat("在地狱岩的东南侧,沿对角线间隔一格放置一个末地石 [4,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aether_legacy:aether_grass", playerPos, [4,0,4], world) == 0) {
|
||||
player.sendChat("在末地石的南侧,间隔一格放置一个空叶草方块 [4,0,4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("erebus:umberstone", playerPos, [4,0,6], world) == 0) {
|
||||
player.sendChat("在空叶草方块的南侧,间隔一格放置一个棕石 [4,0,6]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("extrautils2:compressedcobblestone:7", playerPos, [4,0,8], world) == 0) {
|
||||
player.sendChat("在棕石的南侧,间隔一格放置一个八重压缩圆石 [4,0,8]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:frozen_grass", playerPos, [4,0,10], world) == 0) {
|
||||
player.sendChat("在八重压缩圆石的南侧,间隔一格放置一个冰冻草方块 [4,0,10]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:arcanium_block", playerPos, [4,0,12], world) == 0) {
|
||||
player.sendChat("在冰冻草方块的南侧,间隔一格放置一个秘金块 [4,0,12]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("thebetweenlands:pitstone", playerPos, [4,0,14], world) == 0) {
|
||||
player.sendChat("在秘金块的南侧,间隔一格放置一个麻纹石 [4,0,14]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("twilightforest:aurora_block", playerPos, [4,0,16], world) == 0) {
|
||||
player.sendChat("在麻纹石的南侧,间隔一格放置一个极光方块 [4,0,16]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("thaumicaugmentation:stone:2", playerPos, [4,0,18], world) == 0) {
|
||||
player.sendChat("在极光方块的南侧,间隔一格放置一个腐化虚空石壤 [4,0,18]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("thaumictinkerer:ichor_block", playerPos, [4,0,20], world) == 0) {
|
||||
player.sendChat("在腐化虚空石壤的南侧,间隔一格放置一个神灵精华块 [4,0,20]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("abyssalcraft:fusedabyssalsand", playerPos, [4,0,22], world) == 0) {
|
||||
player.sendChat("在神灵精华块的南侧,间隔一格放置一个深渊熔沙 [4,0,22]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("abyssalcraft:dreadgrass", playerPos, [6,0,22], world) == 0) {
|
||||
player.sendChat("在深渊熔沙的东侧,间隔一格放置一个恐惧之地草方块 [6,0,22]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("abyssalcraft:stone:6", playerPos, [8,0,22], world) == 0) {
|
||||
player.sendChat("看来你开始上道了,下一个方块需要放置在恐惧之地草方块的东侧 [8,0,22],奥穆索没有草方块,但是有石头");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("tile.stone.name", playerPos, [10,0,22], world) == 0) {
|
||||
player.sendChat("干得不错,深渊国度模组还有一个被某种暗色方块覆盖的维度,我知道你能弄明白放置在哪的");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("enderio:block_reinforced_obsidian", playerPos, [4,0,-2], world) == 0) {
|
||||
player.sendChat("嗯,这次我会给你明确指示,在地狱岩的东北侧,对角线间隔一格放置一个强化黑曜石 [4,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("biomesoplenty:grass:4", playerPos, [4,0,-4], world) == 0) {
|
||||
player.sendChat("还记得地平界的凋灵吗?它们是我给你准备的惊喜,希望你杀得开心");
|
||||
player.sendChat("那之后的下一个跃迁器是地方界,在强化黑曜石的北侧,间隔一格放置一个那里地面的草方块 [4,0,-4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("appliedenergistics2:fluix_block", playerPos, [4,0,-6], world) == 0) {
|
||||
player.sendChat("确实,那时候的跃迁器实在是有点混乱,但也有别样的魅力不是么。会发射激光的鸡,非常幽默");
|
||||
player.sendChat("下一个方块是福鲁伊克斯块,它对地盘界挺重要的,将其与另外两个与跃迁器相关的方块保持相同方向放置,我相信你能搞明白的");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("advancedrocketry:moonturf", playerPos, [6,0,0], world) == 0) {
|
||||
player.sendChat("第3章没有更多跃迁器了,是时候上太空了!");
|
||||
player.sendChat("这次我会给你明确提示,在地狱岩的东侧,间隔三格放置一个月面土 [6,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:mycelium", playerPos, [8,0,2], world) == 0) {
|
||||
player.sendChat("如果你现在已经摸清了放置规律,我知道部分距离可能难以确定");
|
||||
player.sendChat("别担心,我会尽量明确给出那些特殊距离");
|
||||
player.sendChat("在月面土的东南侧,间隔一格放置一个菌丝 [8,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("advancedrocketry:hotturf", playerPos, [8,0,4], world) == 0) {
|
||||
player.sendChat("空间站虽说bug挺多,但看起来很酷!");
|
||||
player.sendChat("如果你是蜜蜂星门用户,我还是建议你至少玩一次跃迁引擎");
|
||||
player.sendChat("下一个方块放置在菌丝的南侧,间隔一格 [8,0,4],这方块是橙色的,覆盖了奥西里斯的部分地表");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:obsidian", playerPos, [8,0,6], world) == 0) {
|
||||
player.sendChat("蜜蜂谜题怎么样?或许随机的结构生成不是那么友好,但我希望你能喜欢这些到处隐藏的宝藏!");
|
||||
player.sendChat("下一个方块在氧化铁砂的南侧,间隔一格 [8,0,6],没错,这方块和普塔有关。");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:sand:1", playerPos, [8,0,8], world) == 0) {
|
||||
player.sendChat("你知道在很长一段时间里,信标光束完全不显示吗?谢天谢地,我们(当然,我绝对、绝对有参与贡献)成功修复了这个问题。");
|
||||
player.sendChat("到现在为止,我认为你应该已经看出规律了。下一个方块位于黑曜石的南侧,间隔一格 [8,0,8]。");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:packed_ice", playerPos, [8,0,10], world) == 0) {
|
||||
player.sendChat("在alpha测试阶段的很长一段时间里,第三章的星球都相当空旷。我很高兴它们现在变得更加生机勃勃了!");
|
||||
player.sendChat("下一个方块在红沙的南侧,间隔一格 [8,0,10].");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("nuclearcraft:dry_earth", playerPos, [8,0,12], world) == 0) {
|
||||
player.sendChat("我知道低能见度的单色维度算不上稀奇独特,不过嘛,我觉得它挺酷的!");
|
||||
player.sendChat("下一个方块在浮冰的南侧,间隔一格 [8,0,12].");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:emerald_block:8", playerPos, [8,0,14], world) == 0) {
|
||||
player.sendChat("老实说,辐射机制蛮有意思的。虽然肯定不是所有人都好这口,但我很欣赏它能迫使玩家采取某种基地建造策略");
|
||||
player.sendChat("至于下一个方块,我甚至不打算多说什么,相信你自己能搞定接下来的几个步骤。");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("tconstruct:slime_congealed:3", playerPos, [8,0,16], world) == 0) {
|
||||
player.sendChat("蜜蜂掌控宇宙,是不是很巧妙!");
|
||||
player.sendChat("看吧!我就知道你能行的!这一列还差最后一个方块,完成后我会继续给提示的!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("advancedrocketry:crystal:1", playerPos, [10,0,0], world) == 0) {
|
||||
player.sendChat("冷知识:本整合包本来没打算分章节,但架不住Discord里有太多人在求助和分享技巧时搞混了。");
|
||||
player.sendChat("没错,下一个方块与塞德娜有关,在月面土的东侧,间隔三格 [10,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:eden_grass", playerPos, [12,0,-2], world) == 0) {
|
||||
player.sendChat("没错!获得第一块塞德娜金属的感觉很棒吧?第四章开始才是真正的挑战,不是吗?");
|
||||
player.sendChat("现在我们要前往伊甸,下一个方块在黑曜石晶体的东北侧,间隔一格 [12,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:precasia_grass", playerPos, [12,0,2], world) == 0) {
|
||||
player.sendChat("神圣RPG是我玩过的第一个有高难度怪物的模组。当时游戏版本还是1.4.6呢!");
|
||||
player.sendChat("是时候进入第一神话叠壳的传说维度了,下一个方块在黑曜石晶体的东南侧,间隔一格 [12,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:baron_ground", playerPos, [12,0,4], world) == 0) {
|
||||
player.sendChat("第一次玩虚无世界时,我觉得它真是太惊艳了,但可惜当时没人把它放进科技包里……");
|
||||
player.sendChat("完美,现在我们要深入第一神话叠壳,相信接下来直到深渊之前的部分,你都可以独自完成");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:lelyetia_grass", playerPos, [12,0,6], world) == 0) {
|
||||
player.sendChat("必须指出,我觉得MC模组亟需更多的谜题。那些RPG模组和整合包作者们,眼里只有地牢和Boss,但没有解谜的地牢体验,我个人总感觉少了点灵魂");
|
||||
player.sendChat("相信接下来直到深渊之前的部分,你都可以独自完成");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:creeponia_grass", playerPos, [12,0,8], world) == 0) {
|
||||
player.sendChat("赫尔维蒂很酷,不是吗?据我所知,没有其他模组像这样处理重力!");
|
||||
player.sendChat("相信接下来直到深渊之前的部分,你都可以独自完成");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:deeplands_stone", playerPos, [12,0,10], world) == 0) {
|
||||
player.sendChat("我认为虚无世界模组中特殊入侵事件的设计很巧妙,能让玩家提前窥探到后续维度中要面对的怪物。不过遗憾的是,这些事件极其卡顿,所以我不得不将其禁用。作为替代,加入了可使用的递归之卷。");
|
||||
player.sendChat("相信接下来直到深渊之前的部分,你都可以独自完成,不过当心,不是所有维度都得用对应的草方块");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:abyss_grass", playerPos, [12,0,12], world) == 0) {
|
||||
player.sendChat("不得不说,世界生成的随机性有时候确实挺烦人的。我真的很喜欢通过探索玩法来了解一个世界及其故事,但当某个解谜所需的最后一个建筑就是刷不出来时,这种感觉实在太糟了。");
|
||||
player.sendChat("不错啊,你都快完成第一个神话叠壳了!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("thaumadditions:taintwood_planks", playerPos, [10,0,-4], world) == 0) {
|
||||
player.sendChat("为什么这个整合包有这么多RPG内容?嗯,我确实喜欢待在基地里搓机器,不过时间久了总会有点无聊,所以也会想出去四处探索。这就是为什么科技和RPG内容会交错出现!");
|
||||
player.sendChat("继续折腾跃迁器吧!谐律界的方块需放在伊甸草方块的西北侧,间隔一格 [10,0,-4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:ender_dolomite", playerPos, [14,0,-4], world) == 0) {
|
||||
player.sendChat("谐律界可以说是我做过的最喜欢的维度之一。我特别喜欢这种我自己构思出来的利用神秘时代腐化来推进进程的设计!");
|
||||
player.sendChat("末结地就在谐律界之后解锁,它的方块在伊甸草方块的东北侧,间隔一格 [14,0,-4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("projectred-exploration:stone", playerPos, [14,0,0], world) == 0) {
|
||||
player.sendChat("末结地有*一点点*卡,但我实在忍不住不在整个维度里塞满激光鸡!");
|
||||
player.sendChat("接下来是铼界,其方块在末影白云石的东侧,间隔三格 [14,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("advancedrocketry:alienwood", playerPos, [16,0,0], world) == 0) {
|
||||
player.sendChat("平衡各种模组中过于强力的物品有时会显得有点不好搞,但我觉得最终效果还是不错的");
|
||||
player.sendChat("紧接在铼界之后就是恐蚁界!还是在东侧!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:wildwood_grass", playerPos, [18,0,-2], world) == 0) {
|
||||
player.sendChat("恐蚁界里的冰火传说模组生物很酷,就是有点卡。所以我为它们只做了专属维度来参与到流程中,算是某种程度上的妥协。");
|
||||
player.sendChat("现在我们要前往原始森林了,下一个方块在轻树原木的东北侧,间隔一格 [18,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:aqua_cotton_candy", playerPos, [18,0,2], world) == 0 || getBlockMatchAtPosition("aoa3:pink_cotton_candy", playerPos, [18,0,2], world) == 0) {
|
||||
player.sendChat("我发现神圣RPG模组的维度看起来有点千篇一律,希望添加的自定义结构能带来一些多样性。");
|
||||
player.sendChat("第二神话叠壳!从轻树原木的东南侧开始,间隔一格 [18,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:gardencia_grass", playerPos, [18,0,4], world) == 0) {
|
||||
player.sendChat("不管别人怎么说,糖果巨人绝对是MC模组界设计最不公平的Boss,没有之一!");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:celeve_grass", playerPos, [18,0,6], world) == 0) {
|
||||
player.sendChat("花园维度的解密可能有点乏味,但我在某些方面做了些不同的尝试,翻找大量箱子感觉像是一种有趣的机制");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:crystevia_stone", playerPos, [18,0,8], world) == 0) {
|
||||
player.sendChat("我们当然可以争论执行方面的问题,但疯狂小丑维度这个概念真的很酷!");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:haven_grass", playerPos, [18,0,10], world) == 0) {
|
||||
player.sendChat("晶体维度或许存在一些随机生成方面的问题,真希望1.12版本能有个支持Pillar模组的结构搜索工具。");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:iromine_stone", playerPos, [18,0,12], world) == 0) {
|
||||
player.sendChat("你知道吗?虚无世界的作者还参与过神圣PRG的开发。所以天堂维度才会是这种画风。这波真是经典复刻啊!");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:mysterium_grass", playerPos, [18,0,14], world) == 0) {
|
||||
player.sendChat("我超爱黄金维度的美学风格,所以那里的怪物非常强!我就是想让它们深深烙印在你的记忆中!");
|
||||
player.sendChat("没错,继续推进第二神话叠壳!一直到未知维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:toxic_grass", playerPos, [18,0,16], world) == 0) {
|
||||
player.sendChat("个人认为魔菇王的设计酷毙了……");
|
||||
player.sendChat("快完成第二神话叠壳了,只差最后一个方块!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:red_sandstone", playerPos, [18,0,-4], world) == 0) {
|
||||
player.sendChat("现在回想起来,当初设计神话叠壳的方式确实不是最优方案。第二叠壳的流程有些单调乏味,而第三叠壳又没什么亮点。之所以这样安排,是因为虚无世界模组本身存在等级体系,同等级维度被归入了同一神话叠壳。");
|
||||
player.sendChat("现在我们要前往共鸣界,它的方块在原始森林草方块的北侧,间隔一格 [18,0,-4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("bewitchment:scorned_bricks", playerPos, [20,0,0], world) == 0) {
|
||||
player.sendChat("在制作共鸣界时,我突然意识到:许多在原版自定义冒险地图中通过命令方块实现的效果,同样可以运用在模组包里!自那以后,我开始在各个自定义结构中大规模使用命令方块!");
|
||||
player.sendChat("下一站是光精界,其方块在轻树原木的东侧,间隔三格 [20,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:apalachia_grass", playerPos, [22,0,-2], world) == 0) {
|
||||
player.sendChat("光精界的设计同样充满乐趣。从那时起,我开始构思如何制作体型庞大且实力强劲的怪物,即便面对强力武器,它们也能屹立不倒!");
|
||||
player.sendChat("现在我们要前往附魔山脉,下一个方块在鄙夷方砖的东北侧,间隔一格 [22,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:borean_grass", playerPos, [22,0,2], world) == 0) {
|
||||
player.sendChat("我很喜欢用星域玻璃作为建筑方块,可惜大规模使用会很卡。");
|
||||
player.sendChat("第三神话质壳时间!从鄙夷方砖的东南侧开始,间隔一格 [22,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:runic_grass", playerPos, [22,0,4], world) == 0) {
|
||||
player.sendChat("暴风维度超酷的,让我想起来克苏鲁神话,我尝试在自定义结构中复现这种美学风格。");
|
||||
player.sendChat("符境方块放在南侧!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:lunasole_grass", playerPos, [22,0,6], world) == 0) {
|
||||
player.sendChat("我是真的喜欢虚无世界的骑士模型。可惜功能太基础,既不能装备物品也无法穿戴盔甲,导致我在设计自定义Boss战时很难充分利用它们。");
|
||||
player.sendChat("已经到[虚无]月球了!第三神话叠壳的流程不长!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("appliedenergistics2:spatial_pylon", playerPos, [22,0,0], world) == 0) {
|
||||
player.sendChat("希望月球有更多的囚犯生物,我太喜欢这种太空监狱的风格了");
|
||||
player.sendChat("下一个是封闭空间,方块在附魔山脉草方块和暴风草方块之间");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:unidentified_body", playerPos, [24,0,0], world) == 0) {
|
||||
player.sendChat("现在想来,若能把封闭空间整合成自动化工具确实会很酷,但最终我还是把它设计成了解谜工具");
|
||||
player.sendChat("下一个维度是比邻星,其方块在空间塔的东侧,间隔一格 [24,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:skythern_grass", playerPos, [26,0,-2], world) == 0) {
|
||||
player.sendChat("虽然比邻星的bug很难顶,但我真心钟爱这种小行星世界类型,如果能将其应用于其他维度一定会非常惊艳。");
|
||||
player.sendChat("现在我们将前往空境,下一个方块在未定义物体的东北侧,间隔一格 [26,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:ancient_rock", playerPos, [26,0,2], world) == 0) {
|
||||
player.sendChat("空境的自定义结构是最早一批加入整合包中的,我知道神圣RPG模组的维度有些单调,所以想着让你动动脑子也许能缓解乏味感。");
|
||||
player.sendChat("与其他神话叠壳一样,第四个方块放在南侧!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("chisel:gold:5", playerPos, [26,0,4], world) == 0) {
|
||||
player.sendChat("我有些希望虚无世界的祝福系统能有更多的可自定义程度……");
|
||||
player.sendChat("没错,继续推进第四神话叠壳!一直到异位维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:greckon_grass", playerPos, [26,0,6], world) == 0) {
|
||||
player.sendChat("不朽之地的生物平衡花的时间比预计的要长得多……");
|
||||
player.sendChat("没错,继续推进第四神话叠壳!一直到异位维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:dustopia_grass", playerPos, [26,0,8], world) == 0) {
|
||||
player.sendChat("格瑞克维度看起来棒极了,为此我特意加入了一些激光鸡,让它更显得独特 :)");
|
||||
player.sendChat("就剩一个了!异位维度!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:dream_grass", playerPos, [28,0,0], world) == 0) {
|
||||
player.sendChat("早在alpha测试阶段,当第四神话叠壳还在开发时,我就开始构思整合包的终局内容了,但真正实现却耗费了相当漫长的过程。");
|
||||
player.sendChat("梦魇世界的方块在未定义物体的东侧,间隔三格 [28,0,0]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:mossy_cobblestone", playerPos, [30,0,-2], world) == 0) {
|
||||
player.sendChat("梦魇世界的流程经历了无数次重构,我本希望通过自定义内容为这个维度增添特色,但不管怎么调整,最终都显得冗长乏味。因此如果你愿意多刷点材料的话,这个维度其实是可以跳过的。");
|
||||
player.sendChat("强能界时间!茕踽界的方块在美梦草方块的东北侧,间隔一格 [30,0,-2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("biomesoplenty:mud", playerPos, [30,0,-4], world) == 0) {
|
||||
player.sendChat("茕踽界的设计灵感来自星际穿越,真希望有办法能还原电影里的巨浪。");
|
||||
player.sendChat("强能界时间!孤寂界的方块在苔石的北侧,间隔一格 [30,0,-4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:dirt", playerPos, [30,0,2], world) == 0) {
|
||||
player.sendChat("孤寂界有点另类,随着整合包开发,我在不同美学风格之间反复切换,导致它的辨识度不如其他维度那么鲜明。");
|
||||
player.sendChat("强能界时间!晦暗界的方块在美梦草方块的东南侧,间隔一格 [30,0,2]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:pumpkin", playerPos, [30,0,4], world) == 0) {
|
||||
player.sendChat("晦暗界的制作过程十分有趣,我沉迷于血腥邪教的美术风格,他们值得拥有专属维度!");
|
||||
player.sendChat("强能界时间!惧惮界的方块在泥土的南侧,间隔一格 [30,0,4]");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:mortum_grass", playerPos, [32,0,2], world) == 0) {
|
||||
player.sendChat("惧惮界的开发也很有趣,我原本打算让暮色森林的怪物自然生成以营造危险氛围,可惜自定义刷怪规则最终会导致严重卡顿");
|
||||
player.sendChat("死域,在晦暗界的东侧!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("aoa3:shyrelands_grass", playerPos, [32,0,-2], world) == 0) {
|
||||
player.sendChat("神话叠壳的设计灵感来源于神圣RPG模组。既然这些维度看起来都差不多,以某种形式将它们串联起来便显得合情合理了。");
|
||||
player.sendChat("塞尔瑞,在茕踽界的东侧!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:white_fuel", playerPos, [34,0,0], world) == 0) {
|
||||
player.sendChat("塞尔瑞维度的概念很有意思,真希望虚无世界模组骑士的自定义程度能更高点");
|
||||
player.sendChat("从炼金界到叁壹界,一路向东!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("tardis:gallifreyan_grass", playerPos, [36,0,0], world) == 0) {
|
||||
player.sendChat("我曾考虑将炼金界作为整合包的结尾,将能量蜜蜂作为最终奖励。但后来我又有了定义和岩晶系列的构想。");
|
||||
player.sendChat("从炼金界到叁壹界,一路向东!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("minecraft:grass", playerPos, [38,0,0], world) == 0) {
|
||||
player.sendChat("伽里弗雷可太有意思了!由于这个阶段的玩家已经强到逆天,我可以放开手脚设计强度爆表的怪物和Boss。");
|
||||
player.sendChat("从炼金界到叁壹界,一路向东!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("rftoolsdim:dimensional_blank_block", playerPos, [40,0,0], world) == 0) {
|
||||
player.sendChat("肉丸人这个角色的创意可以说是自然而然形成的,我对最终呈现的效果非常满意!");
|
||||
player.sendChat("从炼金界到叁壹界,一路向东!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:arcanite_grass", playerPos, [42,0,0], world) == 0) {
|
||||
player.sendChat("创建自定义维度感觉是为这个以维度为核心的整合包画上完美句号的最佳方式,感谢RFTools Dimensions模组的存在 :)");
|
||||
player.sendChat("从炼金界到叁壹界,一路向东!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("thaumicaugmentation:stone", playerPos, [40,0,-2], world) == 0) {
|
||||
player.sendChat("每个人都值得被原谅,这就是我的信条");
|
||||
player.sendChat("衰腐界和争竞界,位于卡尚两侧");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("abyssalcraft:ethaxiumbrick", playerPos, [40,0,2], world) == 0) {
|
||||
player.sendChat("好吧,不加点额外Boss总觉得这整合包不够完整");
|
||||
player.sendChat("衰腐界和争竞界,位于卡尚两侧");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:frozen_dirt", playerPos, [4,-1,10], world) == 0) {
|
||||
player.sendChat("哇哦,看看你让我做了什么,我竟然开始自言自语了!");
|
||||
player.sendChat("该死,我甚至打破了第四面墙……");
|
||||
player.sendChat("你把我耍得够呛,对吧?");
|
||||
player.sendChat("你知道在某个冰霜维度中,有种异常寒冷的地表方块,在其下方放置对应的泥土方块");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("tardis:gallifreyan_dirt", playerPos, [36,-1,0], world) == 0) {
|
||||
player.sendChat("你知道吗,我玩游戏时总有个预感:自己很可能根本不会通关……");
|
||||
player.sendChat("所以你现在才会在这儿,和我聊天,摆放方块……");
|
||||
player.sendChat("你真的该停手了……");
|
||||
player.sendChat("和冰晶雪原的冰冻草方块和冰冻泥土一样,但这次对应方块所处维度的黑洞与其他维度都不一样……");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:seal_of_freedom", playerPos, [0,-1,0], world) == 0) {
|
||||
player.sendChat("至少你玩得挺开心对吧?");
|
||||
player.sendChat("你该不会只是为了满足虚荣心才来的吧?");
|
||||
player.sendChat("因为要是这样的话,我可太乐意亲手粉碎你的骄傲了……");
|
||||
player.sendChat("要达成本整合包的正统结局,你需要用某种特定方块制作一些东西,将这种方块放置在整个结构的起点方块下方");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:halite_bejewelled_ichorium_catalyst", playerPos, [40,-1,0], world) == 0) {
|
||||
player.sendChat("不过既然你都进行到这一步了,很可能你其实很享受我试图击垮你的过程。");
|
||||
player.sendChat("好吧……");
|
||||
player.sendChat("无尽维度之维度,岩晶与灵液素合二为一,放置在下方");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:recursive_stone", playerPos, [4,-1,2], world) == 0) {
|
||||
player.sendChat("不管怎么说,我既然花时间写下了这些,说明我内心还是希望你能成功的。");
|
||||
player.sendChat("玩得开心,大概吧……");
|
||||
player.sendChat("还记得你在哪用的递归监狱钥匙吗?没错,如果你是咒法主宰,也许能尝试破坏那里的某种方块,然后将其放置在对应维度方块的下方");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("contenttweaker:hypercapacitor_discharger_x1024", playerPos, [34,-1,0], world) == 0) {
|
||||
player.sendChat("之前的Boss战你肯定作弊了,对吧?");
|
||||
player.sendChat("把怪物困起来,偷偷用生物粉碎机……");
|
||||
player.sendChat("生物捕捉工具、幻影链印记……");
|
||||
player.sendChat("让使用者操作强力武器……");
|
||||
player.sendChat("不过,如果要想打败我,你可能真的会想作弊……");
|
||||
player.sendChat("获得能量蜂后的地方,那里有特定的超电容释能器,将其放置在某个方块下方(我想你知道是哪个)");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if (getBlockMatchAtPosition("divinerpg:dream_dirt", playerPos, [28,-1,0], world) == 0) {
|
||||
player.sendChat("我想我们已经谈得够久了。我向来不擅长这种反派演讲——在演讲中透露阻止我所需要的一切信息……");
|
||||
player.sendChat("哦对了,还有件事没说!下一个方块的位置,你可以在那里准备好陷阱……");
|
||||
player.sendChat("泥土、草方块,我想你明白是哪种。简单得就像是美梦!");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
player.sendChat("嗯,既然你坚持要这么做,那我只好奉陪了……");
|
||||
player.sendChat("希望你准备好了,毕竟这护盾数量可不少……");
|
||||
Commands.call("summon abyssalcraft:antiplayer ~28 ~2 ~0 {CustomName:\"Sainagh,闹脾气的整合包作者\",HandItems:[{Count:1,id:\"contenttweaker:gem_of_dimensional_ascension\"},{}],HandDropChances:[1.0f,0.0f],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:1000000.0}],Health:1000000f,ForgeCaps:{\"twilightforest:cap_shield\":{tempshields:5000,permshields:5000}},ArmorItems:[{Count:1,id:\"contenttweaker:fractallite_halite_feet\"},{Count:1,id:\"contenttweaker:fractallite_halite_legs\"},{Count:1,id:\"contenttweaker:fractallite_halite_chest\"},{Count:1,id:\"contenttweaker:fractallite_halite_head\"}]}", player, world, true, true);
|
||||
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
stoneofdimensionalascension.register();
|
||||
|
||||
+107
-2
@@ -46,6 +46,9 @@ recipes.addShapeless(<contenttweaker:ayeraco_scale>,
|
||||
recipes.addShapeless(<contenttweaker:soul_of_the_grand_wizard>,
|
||||
[<contenttweaker:boss_drop>, <iceandfire:dread_key>, <contenttweaker:staff_of_iceika>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:nightmare_of_annoyance>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:ghost_of_annoyance_callstone>]);
|
||||
|
||||
recipes.addShapeless(<mowziesmobs:ice_crystal>,
|
||||
[<contenttweaker:boss_drop>, <divinerpg:snow_globe>]);
|
||||
|
||||
@@ -89,8 +92,8 @@ true,
|
||||
<minecraft:structure_void>,
|
||||
[<minecraft:gold_ingot>,<minecraft:gold_ingot>,<minecraft:gold_ingot>,<minecraft:gold_ingot>,
|
||||
<abyssalcraft:transmutationgem>,<minecraft:enchanting_table>,<forge:bucketfilled>.withTag({FluidName: "liquidcoralium", Amount: 1000}),<minecraft:structure_void>]);
|
||||
game.setLocalization("ac.ritual.ritiualsleeperwiki", "沉睡者仪式");
|
||||
game.setLocalization("ac.ritual.ritiualsleeperwiki.desc", "用以查看如何进行仪式");
|
||||
game.setLocalization("ac.ritual.ritiualsleeperwiki", "Ritual of the Sleeper");
|
||||
game.setLocalization("ac.ritual.ritiualsleeperwiki.desc", "To see how it's done");
|
||||
|
||||
|
||||
recipes.addShapeless(<abyssalcraft:dreadkey>,
|
||||
@@ -856,6 +859,9 @@ recipes.addShapeless(<contenttweaker:starlight_sphere>,
|
||||
recipes.addShapeless(<contenttweaker:celestial_shield_fragment>,
|
||||
[<contenttweaker:master_of_spellcraft>, <aoa3:gold_coin>, <thaumicaugmentation:gauntlet:1>, <projectex:matter:0>, <twilightforest:magic_beans>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:cursed_dragon_egg>,
|
||||
[<contenttweaker:master_of_spellcraft>, <aoa3:gold_coin>, <thaumicaugmentation:gauntlet:1>, <projectex:matter:0>, <twilightforest:magic_beans>]);
|
||||
|
||||
recipes.addShapeless(<avaritia:resource:0>,
|
||||
[<contenttweaker:gamestage_recipe>, <contenttweaker:ancient_elven_knowledge>]);
|
||||
|
||||
@@ -1046,6 +1052,8 @@ recipes.addShapeless(<contenttweaker:recursive_paper_illager>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
recipes.addShapeless(<contenttweaker:recursive_paper_abyssal>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
recipes.addShapeless(<contenttweaker:recursive_paper_buggy>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
|
||||
recipes.addShapeless(<erebus:materials:0>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
@@ -1118,6 +1126,14 @@ recipes.addShapeless(<contenttweaker:lightning_dragonsteel_ore>,
|
||||
recipes.addShapeless(<contenttweaker:dense_dimensional_shard_ore>,
|
||||
[<contenttweaker:custom_dimensions>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:rhenium_ore>,
|
||||
[<contenttweaker:custom_dimensions>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:holographic_ore>,
|
||||
[<contenttweaker:custom_dimensions>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:ichor>,
|
||||
[<contenttweaker:custom_dimensions>]);
|
||||
|
||||
|
||||
|
||||
@@ -1155,3 +1171,92 @@ recipes.addShapeless(<mod_lavacow:foul_bristle>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
recipes.addShapeless(<mod_lavacow:ectoplasm>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:battle_tower>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:embodiment_of_balance>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:guardians_of_shadesmar_callstone>, <contenttweaker:spren_summoner_balance>]);
|
||||
recipes.addShapeless(<contenttweaker:embodiment_of_hope>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:guardians_of_shadesmar_callstone>, <contenttweaker:spren_summoner_hope>]);
|
||||
recipes.addShapeless(<contenttweaker:embodiment_of_glory>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:guardians_of_shadesmar_callstone>, <contenttweaker:spren_summoner_glory>]);
|
||||
recipes.addShapeless(<contenttweaker:embodiment_of_knowledge>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:guardians_of_shadesmar_callstone>, <contenttweaker:spren_summoner_knowledge>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:shard_of_restored_faith>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_faith>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_forgotten_fear_of_death>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_death>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_forgiven_lost_time>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_haste>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_rekindled_heritage>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_blasphemy>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_no_hidden_intentions>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_plot>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_physical_healing>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_injury>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_realized_worth>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_inadequacy>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_restored_relationship>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_loneliness>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_surrender>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_control>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_individual_freedom>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_prepotence>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_controlled_gluttony>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:shard_of_humble_education>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:spren_summoner_arrogance>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:trinity_runes>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:call_to_mission>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:cuendillar_catalyst_1>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:trinitas_callstone>]);
|
||||
recipes.addShapeless(<contenttweaker:cuendillar_catalyst_2>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:trinitas_callstone>]);
|
||||
recipes.addShapeless(<contenttweaker:cuendillar_catalyst_3>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:trinitas_callstone>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:tainted_claw>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:void_ichorium_rift>]);
|
||||
recipes.addShapeless(<contenttweaker:void_chains>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:void_ichorium_rift>]);
|
||||
recipes.addShapeless(<contenttweaker:void_ichorium_gem>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:void_ichorium_rift>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:gem_of_pure_taint>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:void_ichorium_jewel>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:recursion_of_taint>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:tainted_prison_key>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_envy>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_pride>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_sloth>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_wrath>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_lust>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
recipes.addShapeless(<contenttweaker:respect_of_the_lord_of_greed>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:respect_of_death>,
|
||||
[<contenttweaker:boss_drop>, <contenttweaker:mission_of_undeath_callstone>, <contenttweaker:vow_to_death>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:strange_stone_essence>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:strange_stone_callstone>]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -2,237 +2,359 @@
|
||||
|
||||
import mods.contenttweaker.VanillaFactory;
|
||||
import mods.contenttweaker.Item;
|
||||
import mods.contenttweaker.ResourceLocation;
|
||||
|
||||
|
||||
var instanceTEX = mods.contenttweaker.ResourceLocation.create("contenttweaker:textures/items/enchdesc_allofthem.png");
|
||||
|
||||
|
||||
|
||||
var enchdesc_coralium = VanillaFactory.createItem("enchdesc_coralium");
|
||||
enchdesc_coralium.textureLocation = instanceTEX;
|
||||
enchdesc_coralium.register();
|
||||
var enchdesc_dread = VanillaFactory.createItem("enchdesc_dread");
|
||||
enchdesc_dread.textureLocation = instanceTEX;
|
||||
enchdesc_dread.register();
|
||||
var enchdesc_iron_wall = VanillaFactory.createItem("enchdesc_iron_wall");
|
||||
enchdesc_iron_wall.textureLocation = instanceTEX;
|
||||
enchdesc_iron_wall.register();
|
||||
var enchdesc_light_pierce = VanillaFactory.createItem("enchdesc_light_pierce");
|
||||
enchdesc_light_pierce.textureLocation = instanceTEX;
|
||||
enchdesc_light_pierce.register();
|
||||
var enchdesc_multi_rend = VanillaFactory.createItem("enchdesc_multi_rend");
|
||||
enchdesc_multi_rend.textureLocation = instanceTEX;
|
||||
enchdesc_multi_rend.register();
|
||||
var enchdesc_sapping = VanillaFactory.createItem("enchdesc_sapping");
|
||||
enchdesc_sapping.textureLocation = instanceTEX;
|
||||
enchdesc_sapping.register();
|
||||
var enchdesc_airtight_seal = VanillaFactory.createItem("enchdesc_airtight_seal");
|
||||
enchdesc_airtight_seal.textureLocation = instanceTEX;
|
||||
enchdesc_airtight_seal.register();
|
||||
var enchdesc_archmage = VanillaFactory.createItem("enchdesc_archmage");
|
||||
enchdesc_archmage.textureLocation = instanceTEX;
|
||||
enchdesc_archmage.register();
|
||||
var enchdesc_brace = VanillaFactory.createItem("enchdesc_brace");
|
||||
enchdesc_brace.textureLocation = instanceTEX;
|
||||
enchdesc_brace.register();
|
||||
var enchdesc_control = VanillaFactory.createItem("enchdesc_control");
|
||||
enchdesc_control.textureLocation = instanceTEX;
|
||||
enchdesc_control.register();
|
||||
var enchdesc_crush = VanillaFactory.createItem("enchdesc_crush");
|
||||
enchdesc_crush.textureLocation = instanceTEX;
|
||||
enchdesc_crush.register();
|
||||
var enchdesc_curse_of_greed = VanillaFactory.createItem("enchdesc_curse_of_greed");
|
||||
enchdesc_curse_of_greed.textureLocation = instanceTEX;
|
||||
enchdesc_curse_of_greed.register();
|
||||
var enchdesc_form = VanillaFactory.createItem("enchdesc_form");
|
||||
enchdesc_form.textureLocation = instanceTEX;
|
||||
enchdesc_form.register();
|
||||
var enchdesc_intervention = VanillaFactory.createItem("enchdesc_intervention");
|
||||
enchdesc_intervention.textureLocation = instanceTEX;
|
||||
enchdesc_intervention.register();
|
||||
var enchdesc_recharge = VanillaFactory.createItem("enchdesc_recharge");
|
||||
enchdesc_recharge.textureLocation = instanceTEX;
|
||||
enchdesc_recharge.register();
|
||||
var enchdesc_sever = VanillaFactory.createItem("enchdesc_sever");
|
||||
enchdesc_sever.textureLocation = instanceTEX;
|
||||
enchdesc_sever.register();
|
||||
var enchdesc_shell = VanillaFactory.createItem("enchdesc_shell");
|
||||
enchdesc_shell.textureLocation = instanceTEX;
|
||||
enchdesc_shell.register();
|
||||
var enchdesc_night_vision = VanillaFactory.createItem("enchdesc_night_vision");
|
||||
enchdesc_night_vision.textureLocation = instanceTEX;
|
||||
enchdesc_night_vision.register();
|
||||
var enchdesc_scorching_heat = VanillaFactory.createItem("enchdesc_scorching_heat");
|
||||
enchdesc_scorching_heat.textureLocation = instanceTEX;
|
||||
enchdesc_scorching_heat.register();
|
||||
var enchdesc_magic_protection_bewitchment = VanillaFactory.createItem("enchdesc_magic_protection_bewitchment");
|
||||
enchdesc_magic_protection_bewitchment.textureLocation = instanceTEX;
|
||||
enchdesc_magic_protection_bewitchment.register();
|
||||
var enchdesc_eternal_compass = VanillaFactory.createItem("enchdesc_eternal_compass");
|
||||
enchdesc_eternal_compass.textureLocation = instanceTEX;
|
||||
enchdesc_eternal_compass.register();
|
||||
var enchdesc_reading = VanillaFactory.createItem("enchdesc_reading");
|
||||
enchdesc_reading.textureLocation = instanceTEX;
|
||||
enchdesc_reading.register();
|
||||
var enchdesc_holding = VanillaFactory.createItem("enchdesc_holding");
|
||||
enchdesc_holding.textureLocation = instanceTEX;
|
||||
enchdesc_holding.register();
|
||||
var enchdesc_insight = VanillaFactory.createItem("enchdesc_insight");
|
||||
enchdesc_insight.textureLocation = instanceTEX;
|
||||
enchdesc_insight.register();
|
||||
var enchdesc_leech = VanillaFactory.createItem("enchdesc_leech");
|
||||
enchdesc_leech.textureLocation = instanceTEX;
|
||||
enchdesc_leech.register();
|
||||
var enchdesc_multishot = VanillaFactory.createItem("enchdesc_multishot");
|
||||
enchdesc_multishot.textureLocation = instanceTEX;
|
||||
enchdesc_multishot.register();
|
||||
var enchdesc_smashing = VanillaFactory.createItem("enchdesc_smashing");
|
||||
enchdesc_smashing.textureLocation = instanceTEX;
|
||||
enchdesc_smashing.register();
|
||||
var enchdesc_smelting = VanillaFactory.createItem("enchdesc_smelting");
|
||||
enchdesc_smelting.textureLocation = instanceTEX;
|
||||
enchdesc_smelting.register();
|
||||
var enchdesc_soulbound = VanillaFactory.createItem("enchdesc_soulbound");
|
||||
enchdesc_soulbound.textureLocation = instanceTEX;
|
||||
enchdesc_soulbound.register();
|
||||
var enchdesc_vorpal = VanillaFactory.createItem("enchdesc_vorpal");
|
||||
enchdesc_vorpal.textureLocation = instanceTEX;
|
||||
enchdesc_vorpal.register();
|
||||
var enchdesc_magic_siphon = VanillaFactory.createItem("enchdesc_magic_siphon");
|
||||
enchdesc_magic_siphon.textureLocation = instanceTEX;
|
||||
enchdesc_magic_siphon.register();
|
||||
var enchdesc_plague_bringer = VanillaFactory.createItem("enchdesc_plague_bringer");
|
||||
enchdesc_plague_bringer.textureLocation = instanceTEX;
|
||||
enchdesc_plague_bringer.register();
|
||||
var enchdesc_shadow_step = VanillaFactory.createItem("enchdesc_shadow_step");
|
||||
enchdesc_shadow_step.textureLocation = instanceTEX;
|
||||
enchdesc_shadow_step.register();
|
||||
var enchdesc_soulbound_corail_tombstone = VanillaFactory.createItem("enchdesc_soulbound_corail_tombstone");
|
||||
enchdesc_soulbound_corail_tombstone.textureLocation = instanceTEX;
|
||||
enchdesc_soulbound_corail_tombstone.register();
|
||||
var enchdesc_autosmelt = VanillaFactory.createItem("enchdesc_autosmelt");
|
||||
enchdesc_autosmelt.textureLocation = instanceTEX;
|
||||
enchdesc_autosmelt.register();
|
||||
var enchdesc_excavation = VanillaFactory.createItem("enchdesc_excavation");
|
||||
enchdesc_excavation.textureLocation = instanceTEX;
|
||||
enchdesc_excavation.register();
|
||||
var enchdesc_experience_boost = VanillaFactory.createItem("enchdesc_experience_boost");
|
||||
enchdesc_experience_boost.textureLocation = instanceTEX;
|
||||
enchdesc_experience_boost.register();
|
||||
var enchdesc_lifeleech = VanillaFactory.createItem("enchdesc_lifeleech");
|
||||
enchdesc_lifeleech.textureLocation = instanceTEX;
|
||||
enchdesc_lifeleech.register();
|
||||
var enchdesc_magnet = VanillaFactory.createItem("enchdesc_magnet");
|
||||
enchdesc_magnet.textureLocation = instanceTEX;
|
||||
enchdesc_magnet.register();
|
||||
var enchdesc_multijump = VanillaFactory.createItem("enchdesc_multijump");
|
||||
enchdesc_multijump.textureLocation = instanceTEX;
|
||||
enchdesc_multijump.register();
|
||||
var enchdesc_multishot_cyclic = VanillaFactory.createItem("enchdesc_multishot_cyclic");
|
||||
enchdesc_multishot_cyclic.textureLocation = instanceTEX;
|
||||
enchdesc_multishot_cyclic.register();
|
||||
var enchdesc_quickdraw = VanillaFactory.createItem("enchdesc_quickdraw");
|
||||
enchdesc_quickdraw.textureLocation = instanceTEX;
|
||||
enchdesc_quickdraw.register();
|
||||
var enchdesc_reach = VanillaFactory.createItem("enchdesc_reach");
|
||||
enchdesc_reach.textureLocation = instanceTEX;
|
||||
enchdesc_reach.register();
|
||||
var enchdesc_venom = VanillaFactory.createItem("enchdesc_venom");
|
||||
enchdesc_venom.textureLocation = instanceTEX;
|
||||
enchdesc_venom.register();
|
||||
var enchdesc_waterwalking = VanillaFactory.createItem("enchdesc_waterwalking");
|
||||
enchdesc_waterwalking.textureLocation = instanceTEX;
|
||||
enchdesc_waterwalking.register();
|
||||
var enchdesc_aftershock = VanillaFactory.createItem("enchdesc_aftershock");
|
||||
enchdesc_aftershock.textureLocation = instanceTEX;
|
||||
enchdesc_aftershock.register();
|
||||
var enchdesc_rive = VanillaFactory.createItem("enchdesc_rive");
|
||||
enchdesc_rive.textureLocation = instanceTEX;
|
||||
enchdesc_rive.register();
|
||||
var enchdesc_reaper = VanillaFactory.createItem("enchdesc_reaper");
|
||||
enchdesc_reaper.textureLocation = instanceTEX;
|
||||
enchdesc_reaper.register();
|
||||
var enchdesc_fire_imbuement = VanillaFactory.createItem("enchdesc_fire_imbuement");
|
||||
enchdesc_fire_imbuement.textureLocation = instanceTEX;
|
||||
enchdesc_fire_imbuement.register();
|
||||
var enchdesc_frost_imbuement = VanillaFactory.createItem("enchdesc_frost_imbuement");
|
||||
enchdesc_frost_imbuement.textureLocation = instanceTEX;
|
||||
enchdesc_frost_imbuement.register();
|
||||
var enchdesc_frost_protection = VanillaFactory.createItem("enchdesc_frost_protection");
|
||||
enchdesc_frost_protection.textureLocation = instanceTEX;
|
||||
enchdesc_frost_protection.register();
|
||||
var enchdesc_imbuement = VanillaFactory.createItem("enchdesc_imbuement");
|
||||
enchdesc_imbuement.textureLocation = instanceTEX;
|
||||
enchdesc_imbuement.register();
|
||||
var enchdesc_magic_protection = VanillaFactory.createItem("enchdesc_magic_protection");
|
||||
enchdesc_magic_protection.textureLocation = instanceTEX;
|
||||
enchdesc_magic_protection.register();
|
||||
var enchdesc_shock_protection = VanillaFactory.createItem("enchdesc_shock_protection");
|
||||
enchdesc_shock_protection.textureLocation = instanceTEX;
|
||||
enchdesc_shock_protection.register();
|
||||
var enchdesc_decay = VanillaFactory.createItem("enchdesc_decay");
|
||||
enchdesc_decay.textureLocation = instanceTEX;
|
||||
enchdesc_decay.register();
|
||||
var enchdesc_repellent = VanillaFactory.createItem("enchdesc_repellent");
|
||||
enchdesc_repellent.textureLocation = instanceTEX;
|
||||
enchdesc_repellent.register();
|
||||
var enchdesc_shimmer = VanillaFactory.createItem("enchdesc_shimmer");
|
||||
enchdesc_shimmer.textureLocation = instanceTEX;
|
||||
enchdesc_shimmer.register();
|
||||
var enchdesc_soulbound_ender_io = VanillaFactory.createItem("enchdesc_soulbound_ender_io");
|
||||
enchdesc_soulbound_ender_io.textureLocation = instanceTEX;
|
||||
enchdesc_soulbound_ender_io.register();
|
||||
var enchdesc_withering = VanillaFactory.createItem("enchdesc_withering");
|
||||
enchdesc_withering.textureLocation = instanceTEX;
|
||||
enchdesc_withering.register();
|
||||
var enchdesc_autosmelt_endercore = VanillaFactory.createItem("enchdesc_autosmelt_endercore");
|
||||
enchdesc_autosmelt_endercore.textureLocation = instanceTEX;
|
||||
enchdesc_autosmelt_endercore.register();
|
||||
var enchdesc_xp_boost = VanillaFactory.createItem("enchdesc_xp_boost");
|
||||
enchdesc_xp_boost.textureLocation = instanceTEX;
|
||||
enchdesc_xp_boost.register();
|
||||
var enchdesc_kaboomerang = VanillaFactory.createItem("enchdesc_kaboomerang");
|
||||
enchdesc_kaboomerang.textureLocation = instanceTEX;
|
||||
enchdesc_kaboomerang.register();
|
||||
var enchdesc_zoomerang = VanillaFactory.createItem("enchdesc_zoomerang");
|
||||
enchdesc_zoomerang.textureLocation = instanceTEX;
|
||||
enchdesc_zoomerang.register();
|
||||
var enchdesc_burnerang = VanillaFactory.createItem("enchdesc_burnerang");
|
||||
enchdesc_burnerang.textureLocation = instanceTEX;
|
||||
enchdesc_burnerang.register();
|
||||
var enchdesc_bladerang = VanillaFactory.createItem("enchdesc_bladerang");
|
||||
enchdesc_bladerang.textureLocation = instanceTEX;
|
||||
enchdesc_bladerang.register();
|
||||
var enchdesc_boomereaperang = VanillaFactory.createItem("enchdesc_boomereaperang");
|
||||
enchdesc_boomereaperang.textureLocation = instanceTEX;
|
||||
enchdesc_boomereaperang.register();
|
||||
var enchdesc_corrosive = VanillaFactory.createItem("enchdesc_corrosive");
|
||||
enchdesc_corrosive.textureLocation = instanceTEX;
|
||||
enchdesc_corrosive.register();
|
||||
var enchdesc_lifesteal = VanillaFactory.createItem("enchdesc_lifesteal");
|
||||
enchdesc_lifesteal.textureLocation = instanceTEX;
|
||||
enchdesc_lifesteal.register();
|
||||
var enchdesc_poisonous = VanillaFactory.createItem("enchdesc_poisonous");
|
||||
enchdesc_poisonous.textureLocation = instanceTEX;
|
||||
enchdesc_poisonous.register();
|
||||
var enchdesc_flim_flam = VanillaFactory.createItem("enchdesc_flim_flam");
|
||||
enchdesc_flim_flam.textureLocation = instanceTEX;
|
||||
enchdesc_flim_flam.register();
|
||||
var enchdesc_last_stand = VanillaFactory.createItem("enchdesc_last_stand");
|
||||
enchdesc_last_stand.textureLocation = instanceTEX;
|
||||
enchdesc_last_stand.register();
|
||||
var enchdesc_unstable = VanillaFactory.createItem("enchdesc_unstable");
|
||||
enchdesc_unstable.textureLocation = instanceTEX;
|
||||
enchdesc_unstable.register();
|
||||
var enchdesc_electric_efficiency = VanillaFactory.createItem("enchdesc_electric_efficiency");
|
||||
enchdesc_electric_efficiency.textureLocation = instanceTEX;
|
||||
enchdesc_electric_efficiency.register();
|
||||
var enchdesc_destruction = VanillaFactory.createItem("enchdesc_destruction");
|
||||
enchdesc_destruction.textureLocation = instanceTEX;
|
||||
enchdesc_destruction.register();
|
||||
var enchdesc_implosion = VanillaFactory.createItem("enchdesc_implosion");
|
||||
enchdesc_implosion.textureLocation = instanceTEX;
|
||||
enchdesc_implosion.register();
|
||||
var enchdesc_smack = VanillaFactory.createItem("enchdesc_smack");
|
||||
enchdesc_smack.textureLocation = instanceTEX;
|
||||
enchdesc_smack.register();
|
||||
var enchdesc_wrecking = VanillaFactory.createItem("enchdesc_wrecking");
|
||||
enchdesc_wrecking.textureLocation = instanceTEX;
|
||||
enchdesc_wrecking.register();
|
||||
var enchdesc_magnetic = VanillaFactory.createItem("enchdesc_magnetic");
|
||||
enchdesc_magnetic.textureLocation = instanceTEX;
|
||||
enchdesc_magnetic.register();
|
||||
var enchdesc_fuel_efficiency = VanillaFactory.createItem("enchdesc_fuel_efficiency");
|
||||
enchdesc_fuel_efficiency.textureLocation = instanceTEX;
|
||||
enchdesc_fuel_efficiency.register();
|
||||
var enchdesc_soul_stealer = VanillaFactory.createItem("enchdesc_soul_stealer");
|
||||
enchdesc_soul_stealer.textureLocation = instanceTEX;
|
||||
enchdesc_soul_stealer.register();
|
||||
var enchdesc_aqua_affinity = VanillaFactory.createItem("enchdesc_aqua_affinity");
|
||||
enchdesc_aqua_affinity.textureLocation = instanceTEX;
|
||||
enchdesc_aqua_affinity.register();
|
||||
var enchdesc_bane_of_arthropods = VanillaFactory.createItem("enchdesc_bane_of_arthropods");
|
||||
enchdesc_bane_of_arthropods.textureLocation = instanceTEX;
|
||||
enchdesc_bane_of_arthropods.register();
|
||||
var enchdesc_blast_protection = VanillaFactory.createItem("enchdesc_blast_protection");
|
||||
enchdesc_blast_protection.textureLocation = instanceTEX;
|
||||
enchdesc_blast_protection.register();
|
||||
var enchdesc_curse_of_binding = VanillaFactory.createItem("enchdesc_curse_of_binding");
|
||||
enchdesc_curse_of_binding.textureLocation = instanceTEX;
|
||||
enchdesc_curse_of_binding.register();
|
||||
var enchdesc_depth_strider = VanillaFactory.createItem("enchdesc_depth_strider");
|
||||
enchdesc_depth_strider.textureLocation = instanceTEX;
|
||||
enchdesc_depth_strider.register();
|
||||
var enchdesc_efficiency = VanillaFactory.createItem("enchdesc_efficiency");
|
||||
enchdesc_efficiency.textureLocation = instanceTEX;
|
||||
enchdesc_efficiency.register();
|
||||
var enchdesc_feather_falling = VanillaFactory.createItem("enchdesc_feather_falling");
|
||||
enchdesc_feather_falling.textureLocation = instanceTEX;
|
||||
enchdesc_feather_falling.register();
|
||||
var enchdesc_fire_aspect = VanillaFactory.createItem("enchdesc_fire_aspect");
|
||||
enchdesc_fire_aspect.textureLocation = instanceTEX;
|
||||
enchdesc_fire_aspect.register();
|
||||
var enchdesc_fire_protection = VanillaFactory.createItem("enchdesc_fire_protection");
|
||||
enchdesc_fire_protection.textureLocation = instanceTEX;
|
||||
enchdesc_fire_protection.register();
|
||||
var enchdesc_flame = VanillaFactory.createItem("enchdesc_flame");
|
||||
enchdesc_flame.textureLocation = instanceTEX;
|
||||
enchdesc_flame.register();
|
||||
var enchdesc_fortune = VanillaFactory.createItem("enchdesc_fortune");
|
||||
enchdesc_fortune.textureLocation = instanceTEX;
|
||||
enchdesc_fortune.register();
|
||||
var enchdesc_frost_walker = VanillaFactory.createItem("enchdesc_frost_walker");
|
||||
enchdesc_frost_walker.textureLocation = instanceTEX;
|
||||
enchdesc_frost_walker.register();
|
||||
var enchdesc_infinity = VanillaFactory.createItem("enchdesc_infinity");
|
||||
enchdesc_infinity.textureLocation = instanceTEX;
|
||||
enchdesc_infinity.register();
|
||||
var enchdesc_knockback = VanillaFactory.createItem("enchdesc_knockback");
|
||||
enchdesc_knockback.textureLocation = instanceTEX;
|
||||
enchdesc_knockback.register();
|
||||
var enchdesc_looting = VanillaFactory.createItem("enchdesc_looting");
|
||||
enchdesc_looting.textureLocation = instanceTEX;
|
||||
enchdesc_looting.register();
|
||||
var enchdesc_luck_of_the_sea = VanillaFactory.createItem("enchdesc_luck_of_the_sea");
|
||||
enchdesc_luck_of_the_sea.textureLocation = instanceTEX;
|
||||
enchdesc_luck_of_the_sea.register();
|
||||
var enchdesc_lure = VanillaFactory.createItem("enchdesc_lure");
|
||||
enchdesc_lure.textureLocation = instanceTEX;
|
||||
enchdesc_lure.register();
|
||||
var enchdesc_mending = VanillaFactory.createItem("enchdesc_mending");
|
||||
enchdesc_mending.textureLocation = instanceTEX;
|
||||
enchdesc_mending.register();
|
||||
var enchdesc_power = VanillaFactory.createItem("enchdesc_power");
|
||||
enchdesc_power.textureLocation = instanceTEX;
|
||||
enchdesc_power.register();
|
||||
var enchdesc_projectile_protection = VanillaFactory.createItem("enchdesc_projectile_protection");
|
||||
enchdesc_projectile_protection.textureLocation = instanceTEX;
|
||||
enchdesc_projectile_protection.register();
|
||||
var enchdesc_protection = VanillaFactory.createItem("enchdesc_protection");
|
||||
enchdesc_protection.textureLocation = instanceTEX;
|
||||
enchdesc_protection.register();
|
||||
var enchdesc_punch = VanillaFactory.createItem("enchdesc_punch");
|
||||
enchdesc_punch.textureLocation = instanceTEX;
|
||||
enchdesc_punch.register();
|
||||
var enchdesc_respiration = VanillaFactory.createItem("enchdesc_respiration");
|
||||
enchdesc_respiration.textureLocation = instanceTEX;
|
||||
enchdesc_respiration.register();
|
||||
var enchdesc_sharpness = VanillaFactory.createItem("enchdesc_sharpness");
|
||||
enchdesc_sharpness.textureLocation = instanceTEX;
|
||||
enchdesc_sharpness.register();
|
||||
var enchdesc_silk_touch = VanillaFactory.createItem("enchdesc_silk_touch");
|
||||
enchdesc_silk_touch.textureLocation = instanceTEX;
|
||||
enchdesc_silk_touch.register();
|
||||
var enchdesc_smite = VanillaFactory.createItem("enchdesc_smite");
|
||||
enchdesc_smite.textureLocation = instanceTEX;
|
||||
enchdesc_smite.register();
|
||||
var enchdesc_sweeping_edge = VanillaFactory.createItem("enchdesc_sweeping_edge");
|
||||
enchdesc_sweeping_edge.textureLocation = instanceTEX;
|
||||
enchdesc_sweeping_edge.register();
|
||||
var enchdesc_thorns = VanillaFactory.createItem("enchdesc_thorns");
|
||||
enchdesc_thorns.textureLocation = instanceTEX;
|
||||
enchdesc_thorns.register();
|
||||
var enchdesc_unbreaking = VanillaFactory.createItem("enchdesc_unbreaking");
|
||||
enchdesc_unbreaking.textureLocation = instanceTEX;
|
||||
enchdesc_unbreaking.register();
|
||||
var enchdesc_curse_of_vanishing = VanillaFactory.createItem("enchdesc_curse_of_vanishing");
|
||||
enchdesc_curse_of_vanishing.textureLocation = instanceTEX;
|
||||
enchdesc_curse_of_vanishing.register();
|
||||
var enchdesc_manabound = VanillaFactory.createItem("enchdesc_manabound");
|
||||
enchdesc_manabound.textureLocation = instanceTEX;
|
||||
enchdesc_manabound.register();
|
||||
var enchdesc_headhunter = VanillaFactory.createItem("enchdesc_headhunter");
|
||||
enchdesc_headhunter.textureLocation = instanceTEX;
|
||||
enchdesc_headhunter.register();
|
||||
var enchdesc_aerial_affinity = VanillaFactory.createItem("enchdesc_aerial_affinity");
|
||||
enchdesc_aerial_affinity.textureLocation = instanceTEX;
|
||||
enchdesc_aerial_affinity.register();
|
||||
var enchdesc_blessing = VanillaFactory.createItem("enchdesc_blessing");
|
||||
enchdesc_blessing.textureLocation = instanceTEX;
|
||||
enchdesc_blessing.register();
|
||||
var enchdesc_curse_bones = VanillaFactory.createItem("enchdesc_curse_bones");
|
||||
enchdesc_curse_bones.textureLocation = instanceTEX;
|
||||
enchdesc_curse_bones.register();
|
||||
|
||||
var enchdesc_flaming_touch = VanillaFactory.createItem("enchdesc_flaming_touch");
|
||||
enchdesc_flaming_touch.textureLocation = instanceTEX;
|
||||
enchdesc_flaming_touch.register();
|
||||
|
||||
@@ -23,7 +23,7 @@ recipes.addShapeless(
|
||||
var updatedTag as IData = {
|
||||
display: {Lore: ["§d§o超限附魔§r"]}
|
||||
};
|
||||
return ins.mark.updateTag(inpuTag += updatedTag);
|
||||
return ins.mark.updateTag(inpuTag += updatedTag).withAmount(1);
|
||||
},
|
||||
null
|
||||
);
|
||||
|
||||
@@ -220,3 +220,6 @@ recipes.addShaped(<extrautils2:opinium:0>,
|
||||
[<contenttweaker:better_red_coal>, <ore:blockIron>, <contenttweaker:better_red_coal>],
|
||||
[null, <contenttweaker:better_red_coal>, null]]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:absolutely_autentic_rainbowgen>,
|
||||
[<extrautils2:rainbowgenerator:1>, <extrautils2:rainbowgenerator:2>]);
|
||||
|
||||
@@ -5,13 +5,13 @@ mods.extendedcrafting.TableCrafting.addShaped(<forestry:sturdy_machine>,
|
||||
[<divinerpg:realmite_ingot>, <thermalfoundation:material:512>, <divinerpg:realmite_ingot>],
|
||||
[<thermalfoundation:material:291>, <divinerpg:realmite_ingot>, <thermalfoundation:material:291>]]);
|
||||
|
||||
recipes.remove(<forestry:arboretum:0>);
|
||||
recipes.remove(<forestry:farm_crops:0>);
|
||||
recipes.remove(<forestry:farm_mushroom:0>);
|
||||
recipes.remove(<forestry:farm_gourd:0>);
|
||||
recipes.remove(<forestry:farm_nether:0>);
|
||||
recipes.remove(<forestry:farm_ender:0>);
|
||||
recipes.remove(<forestry:peat_bog:0>);
|
||||
// recipes.remove(<forestry:arboretum:0>);
|
||||
// recipes.remove(<forestry:farm_crops:0>);
|
||||
// recipes.remove(<forestry:farm_mushroom:0>);
|
||||
// recipes.remove(<forestry:farm_gourd:0>);
|
||||
// recipes.remove(<forestry:farm_nether:0>);
|
||||
// recipes.remove(<forestry:farm_ender:0>);
|
||||
// recipes.remove(<forestry:peat_bog:0>);
|
||||
|
||||
recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "bewitchment:ghost"}}),
|
||||
[[<bewitchment:frostflower>, <bewitchment:bottled_hellfire>, <bewitchment:bottled_hellfire>],
|
||||
|
||||
@@ -0,0 +1,229 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.appliedenergistics2.Inscriber;
|
||||
import crafttweaker.data.IData;
|
||||
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infvoidichoriumriftitem", "",
|
||||
<contenttweaker:void_ichorium_rift>, 10,
|
||||
[<aspect:vitium>*2048, <aspect:victus>*1024, <aspect:mortuus>*1024],
|
||||
<contenttweaker:self_actualizing_warren_rift>,
|
||||
[<extendedcrafting:singularity_custom:628>, <contenttweaker:shard_of_the_cosmos>, <thaumadditions:void_seed>, <contenttweaker:wormhole_catalyst>,
|
||||
<extendedcrafting:singularity_custom:628>, <ore:ingotIchorium>, <thaumadditions:void_seed>, <contenttweaker:wormhole_catalyst>,
|
||||
<extendedcrafting:singularity_custom:628>, <contenttweaker:shard_of_the_cosmos>, <thaumadditions:void_seed>, <contenttweaker:wormhole_catalyst>,
|
||||
<extendedcrafting:singularity_custom:628>, <ore:ingotIchorium>, <thaumadditions:void_seed>, <contenttweaker:wormhole_catalyst>]);
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infvoidichoriumriftcap", "",
|
||||
<contenttweaker:void_ichorium_rift_cap>*4, 10,
|
||||
[<aspect:vitium>*4096],
|
||||
<contenttweaker:halite_bejewelled_ichorium_catalyst>,
|
||||
[<contenttweaker:meteoric_draconic_stone>, <thaumcraft:metal_void>, <contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:meteoric_draconic_stone>, <thaumcraft:metal_void>, <contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:meteoric_draconic_stone>, <thaumcraft:metal_void>, <contenttweaker:shard_of_the_cosmos>]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:tainted_alchemic_catalyst>,
|
||||
[[<contenttweaker:botanic_alchemic_catalyst>, <projectex:matter:11>, <contenttweaker:botanic_alchemic_catalyst>],
|
||||
[<projectex:matter:11>, <thaumicwonders:flux_capacitor>.withTag({charge: 10}), <projectex:matter:11>],
|
||||
[<contenttweaker:botanic_alchemic_catalyst>, <projectex:matter:11>, <contenttweaker:botanic_alchemic_catalyst>]]);
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infvoidichoriumjewel", "",
|
||||
<contenttweaker:void_ichorium_jewel>*4, 10,
|
||||
[<aspect:instrumentum>*2000, <aspect:aversio>*1500, <aspect:praecantatio>*1000, <aspect:vacuos>*500],
|
||||
<contenttweaker:void_ichorium_gem>,
|
||||
[<contenttweaker:void_chains>, <contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:tainted_claw>,
|
||||
<contenttweaker:void_chains>, <contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:tainted_claw>,
|
||||
<contenttweaker:void_chains>, <contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:tainted_claw>,
|
||||
<contenttweaker:void_chains>, <contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:tainted_claw>]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:taint_gun>,
|
||||
[[<contenttweaker:taint_shield>, <contenttweaker:taint_shield>, <contenttweaker:taint_shield>],
|
||||
[<contenttweaker:taint_shield>, <plustic:laser_gun>, <contenttweaker:taint_shield>],
|
||||
[<contenttweaker:taint_shield>, <contenttweaker:taint_shield>, <contenttweaker:taint_shield>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:the_ultimate_taint_gun>,
|
||||
[[<contenttweaker:shield_of_the_king_in_purple>, <contenttweaker:taint_gun>, <contenttweaker:shield_of_the_king_in_purple>],
|
||||
[<contenttweaker:taint_gun>, <contenttweaker:ichorium_catalyst>, <contenttweaker:taint_gun>],
|
||||
[<contenttweaker:shield_of_the_king_in_purple>, <contenttweaker:taint_gun>, <contenttweaker:shield_of_the_king_in_purple>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:uncanny_void_cluster>,
|
||||
[[<thaumicwonders:eldritch_cluster:8>, <thaumicwonders:eldritch_cluster:8>, <thaumicwonders:eldritch_cluster:8>],
|
||||
[<thaumicwonders:eldritch_cluster:8>, <bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "thaumium", Amount: 65336000}}), <thaumicwonders:eldritch_cluster:8>],
|
||||
[<thaumicwonders:eldritch_cluster:8>, <thaumicwonders:eldritch_cluster:8>, <thaumicwonders:eldritch_cluster:8>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("inftaintedprisonkey", "",
|
||||
<contenttweaker:tainted_prison_key>, 10,
|
||||
[<aspect:vitium>*10000],
|
||||
<contenttweaker:gem_of_pure_taint>,
|
||||
[<contenttweaker:uncanny_void_cluster>, <contenttweaker:void_ichorium_rift_cap>,
|
||||
<contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:void_ichorium_rift_cap>,
|
||||
<contenttweaker:tainted_alchemic_catalyst>, <contenttweaker:void_ichorium_rift_cap>,
|
||||
<contenttweaker:uncanny_void_cluster>, <contenttweaker:void_ichorium_rift_cap>]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:recursion_of_taint>*2,
|
||||
[[<contenttweaker:meteoric_draconic_stone>, <thaumicwonders:eldritch_cluster:8>, <contenttweaker:meteoric_draconic_stone>],
|
||||
[<thaumicwonders:eldritch_cluster:8>, <contenttweaker:recursion_of_taint>, <thaumicwonders:eldritch_cluster:8>],
|
||||
[<contenttweaker:meteoric_draconic_stone>, <thaumicwonders:eldritch_cluster:8>, <contenttweaker:meteoric_draconic_stone>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:fractallite_taint>*4,
|
||||
[[<contenttweaker:fifth_order_mythic_fractal>, <contenttweaker:meteoric_draconic_stone>, <contenttweaker:fifth_order_mythic_fractal>],
|
||||
[<contenttweaker:meteoric_draconic_stone>, <contenttweaker:recursion_of_taint>, <contenttweaker:meteoric_draconic_stone>],
|
||||
[<contenttweaker:fifth_order_mythic_fractal>, <contenttweaker:meteoric_draconic_stone>, <contenttweaker:fifth_order_mythic_fractal>]]);
|
||||
|
||||
|
||||
val forgewyvfractaint = RecipeBuilder.newBuilder("forgewyvfractaint","forge_of_the_wyvern",2);
|
||||
forgewyvfractaint.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvfractaint.setChance(0.0);
|
||||
forgewyvfractaint.addItemInput(<contenttweaker:fractallite_taint>);
|
||||
forgewyvfractaint.addFluidOutput(<fluid:fractallite_taint>*1000);
|
||||
forgewyvfractaint.build();
|
||||
|
||||
val forgewyvhungerflesh = RecipeBuilder.newBuilder("forgewyvhungerflesh","forge_of_the_wyvern",2);
|
||||
forgewyvhungerflesh.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvhungerflesh.setChance(0.0);
|
||||
forgewyvhungerflesh.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
forgewyvhungerflesh.addFluidOutput(<fluid:hungering_flesh_essence>*144);
|
||||
forgewyvhungerflesh.build();
|
||||
|
||||
val forgewyvascendedfluix = RecipeBuilder.newBuilder("forgewyvascendedfluix","forge_of_the_wyvern",2);
|
||||
forgewyvascendedfluix.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvascendedfluix.setChance(0.0);
|
||||
forgewyvascendedfluix.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
forgewyvascendedfluix.addFluidOutput(<fluid:ascended_fluix_essence>*250);
|
||||
forgewyvascendedfluix.build();
|
||||
|
||||
|
||||
|
||||
val infinitewishesrecipe = RecipeBuilder.newBuilder("infinitewishesrecipe","orb_of_infinite_wishes",40);
|
||||
infinitewishesrecipe.addEnergyPerTickInput(2000000000);
|
||||
infinitewishesrecipe.addLifeEssenceInput(1000000, false);
|
||||
infinitewishesrecipe.addWillInput("DEFAULT", 30,1,2000000);
|
||||
infinitewishesrecipe.addWillInput("CORROSIVE", 30,1,2000000);
|
||||
infinitewishesrecipe.addWillInput("DESTRUCTIVE", 30,1,2000000);
|
||||
infinitewishesrecipe.addWillInput("VENGEFUL", 30,1,2000000);
|
||||
infinitewishesrecipe.addWillInput("STEADFAST", 30,1,2000000);
|
||||
infinitewishesrecipe.addAspectInput("vitium",100);
|
||||
infinitewishesrecipe.addAspectInput("coralos",100);
|
||||
infinitewishesrecipe.addAspectInput("praecantatio",100);
|
||||
infinitewishesrecipe.addAspectInput("draco",100);
|
||||
infinitewishesrecipe.addManaInput(10000, false);
|
||||
infinitewishesrecipe.addStarlightInput(5000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:darkstarlight>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:pristine_aura>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:sacrificial_essence>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:stormlight>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:hungering_flesh_essence>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:ascended_fluix_essence>*7000);
|
||||
infinitewishesrecipe.addFluidInput(<fluid:mastery_of_undeath>*7000);
|
||||
infinitewishesrecipe.addItemInput(<tombstone:crafting_ingredient:3>*7);
|
||||
infinitewishesrecipe.addItemInput(<mod_lavacow:holy_sludge>*7);
|
||||
infinitewishesrecipe.addItemInput(<ebwizardry:grand_crystal>*7);
|
||||
infinitewishesrecipe.addItemInput(<contenttweaker:swirl_depths_bottle>*7);
|
||||
infinitewishesrecipe.addItemInput(<abyssalcraft:psdl>*7);
|
||||
infinitewishesrecipe.addItemInput(<draconicevolution:chaos_shard:0>*7);
|
||||
infinitewishesrecipe.addItemInput(<aoa3:radiant_infusion_stone>*7);
|
||||
infinitewishesrecipe.addItemOutput(<contenttweaker:wish_of_infinity>);
|
||||
infinitewishesrecipe.build();
|
||||
|
||||
|
||||
mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/altar/trinitaswarper",
|
||||
<contenttweaker:universal_constellation_callstone>,
|
||||
5000, 500,
|
||||
[
|
||||
<ore:ingotFractalliteHalite>, <contenttweaker:ingot_of_infinite_wishes>, <ore:ingotFractalliteHalite>,
|
||||
<contenttweaker:ingot_of_infinite_wishes>, <contenttweaker:self_actualizing_warren_rift>, <contenttweaker:ingot_of_infinite_wishes>,
|
||||
<ore:ingotFractalliteHalite>, <contenttweaker:ingot_of_infinite_wishes>, <ore:ingotFractalliteHalite>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:trinity_ingot>, <contenttweaker:trinity_ingot>, <contenttweaker:trinity_ingot>,
|
||||
<minecraft:bedrock>, <minecraft:bedrock>,
|
||||
<minecraft:bedrock>, <minecraft:bedrock>,
|
||||
<minecraft:bedrock>, <minecraft:bedrock>,
|
||||
<minecraft:bedrock>, <minecraft:bedrock>,
|
||||
<contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>,
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.bootes"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.mineralis"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.lucerna"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.vicio"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.armara"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.vorux"}}),
|
||||
<astralsorcery:itemconstellationpaper>.withTag({astralsorcery: {constellationName: "astralsorcery.constellation.ulteria"}})
|
||||
],
|
||||
"astralsorcery.constellation.aevitas");
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_10>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<astralsorcery:itemcraftingcomponent:5>, <contenttweaker:starlight_sphere>, <astralsorcery:itemcraftingcomponent:5>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_20>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_10>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_10>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_30>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_20>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_20>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_40>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_30>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_30>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_50>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_40>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_40>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_60>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_50>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_50>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_70>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_60>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_60>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_80>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_70>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_70>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_90>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_80>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_80>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:astral_insight_100>,
|
||||
[[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>],
|
||||
[<contenttweaker:astral_insight_90>, <contenttweaker:starlight_sphere>, <contenttweaker:astral_insight_90>],
|
||||
[<contenttweaker:universal_constellation>, <ore:ingotFractalliteHalite>, <contenttweaker:universal_constellation>]]);
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("inftaintedprisonkey", "",
|
||||
<contenttweaker:astral_mastery_tome>, 10,
|
||||
[<aspect:stellae>*10000],
|
||||
<minecraft:book>,
|
||||
[<contenttweaker:astral_insight_60>, <avaritiaitem:cosmic_fractal_catalyzer>,
|
||||
<contenttweaker:astral_insight_60>, <avaritiaitem:cosmic_fractal_catalyzer>,
|
||||
<contenttweaker:astral_insight_60>, <avaritiaitem:cosmic_fractal_catalyzer>,
|
||||
<contenttweaker:astral_insight_60>, <avaritiaitem:cosmic_fractal_catalyzer>]);
|
||||
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:seal_of_freedom>, <fluid:whisper_of_starvald_demelain>*1000, <contenttweaker:eleint_stone>]);
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import crafttweaker.data.IData;
|
||||
|
||||
|
||||
|
||||
@@ -220,6 +221,43 @@ fractallitefurnacealloy.addItemInput(<contenttweaker:essence_of_creation>);
|
||||
fractallitefurnacealloy.addItemOutput(<contenttweaker:perfected_gallifreyan_alloy>);
|
||||
fractallitefurnacealloy.build();
|
||||
|
||||
var unfulfilleddata as IData = {
|
||||
display: {Lore:["§d§o原初未锻§r"]}
|
||||
};
|
||||
|
||||
var livelydata as IData = {
|
||||
display: {Lore:["§d§o活态跃动§r"]}
|
||||
};
|
||||
|
||||
var brimmingdata as IData = {
|
||||
display: {Lore:["§d§o充盈溢界§r"]}
|
||||
};
|
||||
|
||||
var energicdata as IData = {
|
||||
display: {Lore:["§d§o激能涌动§r"]}
|
||||
};
|
||||
|
||||
var fulfilleddata as IData = {
|
||||
display: {Lore:["§d§o终锻完满§r"]}
|
||||
};
|
||||
|
||||
val fractallitefurnacetrinity = RecipeBuilder.newBuilder("fractallitefurnacetrinity","fractallite_furnace",10);
|
||||
fractallitefurnacetrinity.addFluidInput(<fluid:aeternalis_fuel>*1000);
|
||||
fractallitefurnacetrinity.addItemInput(<contenttweaker:perfected_gallifreyan_alloy>);
|
||||
fractallitefurnacetrinity.addItemInput(<contenttweaker:trinity_ingot>);
|
||||
fractallitefurnacetrinity.addItemInput(<ore:ingotMithril>*32);
|
||||
fractallitefurnacetrinity.addItemOutput(<contenttweaker:ascended_gallifreyan_alloy>.withTag(unfulfilleddata)*32);
|
||||
fractallitefurnacetrinity.build();
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:ascended_gallifreyan_alloy>.withTag(unfulfilleddata), <fluid:vityte>*288, <contenttweaker:ascended_gallifreyan_alloy>.withTag(livelydata)]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:ascended_gallifreyan_alloy>.withTag(livelydata), <fluid:candyte>*288, <contenttweaker:ascended_gallifreyan_alloy>.withTag(brimmingdata)]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:ascended_gallifreyan_alloy>.withTag(brimmingdata), <fluid:brightsteel_alloy>*288, <contenttweaker:ascended_gallifreyan_alloy>.withTag(energicdata)]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:ascended_gallifreyan_alloy>.withTag(energicdata), <fluid:infinity>*288, <contenttweaker:ascended_gallifreyan_alloy>.withTag(fulfilleddata)]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:matter_digitalization_fabrial>,
|
||||
[[<appliedenergistics2:part:140>, <contenttweaker:recursion_of_clarity>, <appliedenergistics2:part:140>],
|
||||
[<contenttweaker:recursion_of_clarity>, <contenttweaker:fluix_microcontroller>, <contenttweaker:recursion_of_clarity>],
|
||||
@@ -416,6 +454,20 @@ bastionofflesh.addFluidInput(<fluid:hungering_flesh_catalyst>*100);
|
||||
bastionofflesh.addFluidOutput(<fluid:essence_of_betrayal>*100);
|
||||
bastionofflesh.build();
|
||||
|
||||
val bastionoffleshbett = RecipeBuilder.newBuilder("bastionoffleshbett","bastion_of_flesh",100);
|
||||
bastionoffleshbett.addItemInput(<contenttweaker:echo_warren_alloy>);
|
||||
bastionoffleshbett.addItemOutput(<contenttweaker:hungering_flesh_ingot>*4);
|
||||
bastionoffleshbett.addFluidInput(<fluid:hungering_flesh_catalyst>*100);
|
||||
bastionoffleshbett.addFluidOutput(<fluid:essence_of_betrayal>*100);
|
||||
bastionoffleshbett.build();
|
||||
|
||||
val bastionoffleshbetterer = RecipeBuilder.newBuilder("bastionoffleshbetterer","bastion_of_flesh",100);
|
||||
bastionoffleshbetterer.addItemInput(<contenttweaker:echo_warren_bar>);
|
||||
bastionoffleshbetterer.addItemOutput(<contenttweaker:hungering_flesh_ingot>*16);
|
||||
bastionoffleshbetterer.addFluidInput(<fluid:hungering_flesh_catalyst>*100);
|
||||
bastionoffleshbetterer.addFluidOutput(<fluid:essence_of_betrayal>*100);
|
||||
bastionoffleshbetterer.build();
|
||||
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:withering_fabrial>,
|
||||
@@ -452,6 +504,59 @@ nameofnamesingot.addItemInput(<contenttweaker:recursion_of_clarity>*4);
|
||||
nameofnamesingot.addItemOutput(<contenttweaker:hyperuranion_ingot>);
|
||||
nameofnamesingot.build();
|
||||
|
||||
val nameofnamesingotup = RecipeBuilder.newBuilder("nameofnamesingotup","altar_to_the_name_of_names",20);
|
||||
nameofnamesingotup.addEnergyPerTickInput(2000000000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:naquadah_alloy>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:dragonsteel_fire>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:dragonsteel_ice>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:dragonsteel_lightning>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:mildly_recursive_goo>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:high_entropy_hyperdense_plasma>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:hint_of_divinity>*16000);
|
||||
nameofnamesingotup.addFluidInput(<fluid:hint_of_insanity>*16000);
|
||||
nameofnamesingotup.addItemInput(<contenttweaker:defined_ingot>);
|
||||
nameofnamesingotup.addItemInput(<contenttweaker:recursion_of_clarity>*2);
|
||||
nameofnamesingotup.addItemOutput(<contenttweaker:hyperuranion_ingot>);
|
||||
nameofnamesingotup.build();
|
||||
|
||||
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:dust_of_infinite_wishes>, <fluid:hint_of_divinity>*4000, <fluid:infinite_divine_wish>*4000]);
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:dust_of_infinite_wishes>, <fluid:hint_of_insanity>*4000, <fluid:infinite_insane_wish>*4000]);
|
||||
|
||||
|
||||
val nameofnamesingotupup = RecipeBuilder.newBuilder("nameofnamesingotupup","altar_to_the_name_of_names",10);
|
||||
nameofnamesingotupup.addEnergyPerTickInput(2000000000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:naquadah_alloy>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:dragonsteel_fire>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:dragonsteel_ice>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:dragonsteel_lightning>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:mildly_recursive_goo>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:high_entropy_hyperdense_plasma>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:infinite_divine_wish>*16000);
|
||||
nameofnamesingotupup.addFluidInput(<fluid:infinite_insane_wish>*16000);
|
||||
nameofnamesingotupup.addItemInput(<contenttweaker:defined_ingot>);
|
||||
nameofnamesingotupup.addItemInput(<contenttweaker:recursion_of_clarity>*2);
|
||||
nameofnamesingotupup.addItemOutput(<contenttweaker:hyperuranion_ingot>*4);
|
||||
nameofnamesingotupup.build();
|
||||
|
||||
|
||||
val nameofnamesingotbeegwarr = RecipeBuilder.newBuilder("nameofnamesingotbeegwarr","altar_to_the_name_of_names",5);
|
||||
nameofnamesingotbeegwarr.addEnergyPerTickInput(2000000000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:naquadah_alloy>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:dragonsteel_fire>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:dragonsteel_ice>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:dragonsteel_lightning>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:mildly_recursive_goo>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:high_entropy_hyperdense_plasma>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:infinite_divine_wish>*16000);
|
||||
nameofnamesingotbeegwarr.addFluidInput(<fluid:infinite_insane_wish>*16000);
|
||||
nameofnamesingotbeegwarr.addItemInput(<contenttweaker:defined_bar>);
|
||||
nameofnamesingotbeegwarr.addItemInput(<contenttweaker:recursion_of_clarity>*2);
|
||||
nameofnamesingotbeegwarr.addItemOutput(<contenttweaker:hyperuranion_ingot>*8);
|
||||
nameofnamesingotbeegwarr.build();
|
||||
|
||||
|
||||
mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/altar/requemofthearbiter", <contenttweaker:requiem_of_the_arbiter>, 4500, 400, [
|
||||
<contenttweaker:innerved_sky_stone>, null, <contenttweaker:innerved_sky_stone>,null, <extendedcrafting:singularity_custom:2031>,
|
||||
@@ -634,6 +739,16 @@ recipes.addShaped(<contenttweaker:ascended_fluix_crystal>*4,
|
||||
[<avaritia:resource:6>, <contenttweaker:sword_of_truth>.reuse(), <avaritia:resource:6>],
|
||||
[<contenttweaker:flawless_fluix_crystal>, <avaritia:resource:6>, <contenttweaker:flawless_fluix_crystal>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:ascended_fluix_crystal>*16,
|
||||
[[<contenttweaker:flawless_fluix_crystal>, <contenttweaker:echo_warren_alloy>, <contenttweaker:flawless_fluix_crystal>],
|
||||
[<contenttweaker:echo_warren_alloy>, <contenttweaker:sword_of_truth>.reuse(), <contenttweaker:echo_warren_alloy>],
|
||||
[<contenttweaker:flawless_fluix_crystal>, <contenttweaker:echo_warren_alloy>, <contenttweaker:flawless_fluix_crystal>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:ascended_fluix_crystal>*64,
|
||||
[[<contenttweaker:flawless_fluix_crystal>, <contenttweaker:echo_warren_bar>, <contenttweaker:flawless_fluix_crystal>],
|
||||
[<contenttweaker:echo_warren_bar>, <contenttweaker:sword_of_truth>.reuse(), <contenttweaker:echo_warren_bar>],
|
||||
[<contenttweaker:flawless_fluix_crystal>, <contenttweaker:echo_warren_bar>, <contenttweaker:flawless_fluix_crystal>]]);
|
||||
|
||||
val swordoftruth = <contenttweaker:sword_of_truth>.withTag({HideFlags:2,AttributeModifiers:[{UUIDMost: 121000 as long, UUIDLeast: 120000 as long,Slot: "mainhand",AttributeName: "generic.attackDamage", Operation: 0, Name: "generic.attackDamage",Amount: 4000},{UUIDMost: 121001 as long, UUIDLeast: 120001 as long ,Amount: 1.2 ,Slot: "mainhand", AttributeName: "generic.attackSpeed",Operation: 0, Name: "generic.attackSpeed"}]});
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(swordoftruth,
|
||||
@@ -642,3 +757,41 @@ mods.extendedcrafting.TableCrafting.addShaped(swordoftruth,
|
||||
[null, <contenttweaker:recursium_ingot>, <contenttweaker:lower_fragment_cosmos>, <contenttweaker:recursium_ingot>, null],
|
||||
[<contenttweaker:fifth_order_mythic_fractal>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:freed_betrayed_soul>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:fifth_order_mythic_fractal>],
|
||||
[null, null, <tconstruct:tough_tool_rod>.withTag({Material: "infinity_avaritia_plustic"}), null, null]]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:corrupted_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:corrupted_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:ender_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:ender_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:ice_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:ice_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:jungle_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:jungle_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:molten_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:molten_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:shadow_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:shadow_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:terran_divine_ore>*64,
|
||||
[[<contenttweaker:strange_stone_essence>, <divinerpg:terran_stone>, <contenttweaker:strange_stone_essence>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<divinerpg:legendary_ender_eye>*2,
|
||||
[[<divinerpg:ender_stone>, <divinerpg:ender_stone>, <divinerpg:ender_stone>],
|
||||
[<divinerpg:ender_stone>, <contenttweaker:strange_stone_essence>, <divinerpg:ender_stone>],
|
||||
[<divinerpg:ender_stone>, <divinerpg:ender_stone>, <divinerpg:ender_stone>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:strange_stone_callstone>,
|
||||
[[<contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:ender_divine_ore>, <contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:imperfect_gallifreyan_plate>],
|
||||
[<contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:ender_divine_ore>, <contenttweaker:defined_ingot>, <contenttweaker:ender_divine_ore>, <contenttweaker:imperfect_gallifreyan_plate>],
|
||||
[<contenttweaker:ender_divine_ore>, <contenttweaker:defined_ingot>, <contenttweaker:fifth_order_mythic_fractal>, <contenttweaker:defined_ingot>, <contenttweaker:ender_divine_ore>],
|
||||
[<contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:ender_divine_ore>, <contenttweaker:defined_ingot>, <contenttweaker:ender_divine_ore>, <contenttweaker:imperfect_gallifreyan_plate>],
|
||||
[<contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:ender_divine_ore>, <contenttweaker:imperfect_gallifreyan_plate>, <contenttweaker:imperfect_gallifreyan_plate>]]);
|
||||
|
||||
@@ -0,0 +1,251 @@
|
||||
recipes.addShaped(<ebwizardry:scroll:1>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:1>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:2>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:2>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:3>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:3>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:4>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:4>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:5>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:5>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:6>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:6>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:7>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:7>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:8>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:8>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:9>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:9>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:10>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:10>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:11>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:11>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:12>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:12>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:13>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:13>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:14>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:14>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:15>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:15>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:16>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:16>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:17>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:17>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:18>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:18>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:19>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:19>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:20>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:20>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:21>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:21>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:22>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:22>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:23>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:23>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:24>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:24>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:25>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:25>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:26>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:26>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:27>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:27>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:28>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:28>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:29>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:29>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:30>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:30>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:31>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:31>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:16>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:16>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:33>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:33>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:34>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:34>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:35>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:35>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:36>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:36>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:37>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:37>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:38>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:38>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:39>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:39>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:40>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:40>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:41>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:41>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:42>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:42>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:43>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:43>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:44>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:44>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:45>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:45>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:46>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:46>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:47>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:47>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:48>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:48>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:49>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:49>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:50>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:50>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:51>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:51>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:52>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:52>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:53>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:53>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:54>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:54>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:55>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:55>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:56>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:56>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:57>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:57>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:58>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:58>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:59>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:59>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:60>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:60>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:61>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:61>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:62>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:62>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:63>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:63>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:64>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:64>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:65>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:65>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:66>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:66>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:67>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:67>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:68>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:68>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:69>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:69>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:70>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:70>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:71>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:71>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:72>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:72>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:73>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:73>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:74>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:74>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:75>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:75>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:76>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:76>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:77>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:77>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:78>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:78>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:79>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:79>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:80>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:80>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:81>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:81>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:82>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:82>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:83>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:83>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:84>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:84>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:85>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:85>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:86>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:86>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:87>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:87>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:88>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:88>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:89>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:89>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:90>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:90>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:91>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:91>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:92>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:92>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:93>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:93>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:94>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:94>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:95>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:95>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:96>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:96>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:97>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:97>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:98>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:98>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:99>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:99>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:100>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:100>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:101>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:101>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:102>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:102>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:103>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:103>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:104>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:104>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:105>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:105>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:106>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:106>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:107>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:107>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:108>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:108>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:109>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:109>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:110>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:110>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:111>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:111>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:112>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:112>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:113>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:113>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:114>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:114>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:115>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:115>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:116>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:116>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:117>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:117>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:118>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:118>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:119>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:119>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:120>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:120>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:121>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:121>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:122>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:122>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:123>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:123>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:124>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:124>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:125>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:125>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:126>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:126>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:127>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:127>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:128>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:128>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:129>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:129>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:130>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:130>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:131>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:131>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:116>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:116>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:133>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:133>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:134>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:134>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:135>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:135>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:136>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:136>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:137>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:137>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:138>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:138>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:139>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:139>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:140>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:140>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:141>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:141>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:142>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:142>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:143>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:143>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:144>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:144>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:145>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:145>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:146>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:146>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:147>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:147>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:148>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:148>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:149>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:149>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:150>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:150>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:151>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:151>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:152>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:152>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:153>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:153>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:154>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:154>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:155>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:155>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:156>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:156>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:157>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:157>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:158>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:158>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:159>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:159>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:160>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:160>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:161>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:161>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:162>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:162>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:163>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:163>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:164>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:164>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:165>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:165>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:166>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:166>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:167>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:167>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:168>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:168>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:169>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:169>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:170>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:170>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:171>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:171>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:172>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:172>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:173>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:173>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:174>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:174>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:175>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:175>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:176>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:176>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:177>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:177>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:178>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:178>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:179>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:179>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:180>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:180>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:181>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:181>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:182>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:182>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:183>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:183>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:184>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:184>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:185>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:185>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:186>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:186>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:187>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:187>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:188>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:188>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:189>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:189>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:190>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:190>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:191>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:191>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:192>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:192>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:193>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:193>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:194>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:194>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:195>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:195>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:196>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:196>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:197>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:197>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:198>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:198>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:199>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:199>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:200>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:200>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:201>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:201>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:202>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:202>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:203>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:203>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:204>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:204>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:205>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:205>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:206>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:206>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:207>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:207>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:208>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:208>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:209>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:209>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:210>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:210>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:211>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:211>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:212>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:212>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:213>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:213>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:214>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:214>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:215>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:215>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:216>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:216>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:217>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:217>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:218>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:218>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:219>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:219>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:220>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:220>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:221>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:221>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:222>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:222>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:223>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:223>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:224>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:224>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:225>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:225>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:226>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:226>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:227>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:227>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:228>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:228>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:229>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:229>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:230>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:230>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:231>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:231>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:216>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:216>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:233>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:233>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:234>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:234>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:235>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:235>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:236>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:236>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:237>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:237>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:238>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:238>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:239>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:239>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:240>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:240>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:241>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:241>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:242>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:242>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:243>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:243>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:244>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:244>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:245>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:245>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:246>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:246>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:247>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:247>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:248>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:248>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:249>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:249>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:250>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:250>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
recipes.addShaped(<ebwizardry:scroll:251>*16, [[<ebwizardry:blank_scroll>, <contenttweaker:crownite_chunk>, <ebwizardry:blank_scroll>], [<contenttweaker:thrallium_fragment>, <ebwizardry:scroll:251>, <contenttweaker:chaosstrikium_cluster>], [<ebwizardry:blank_scroll>, <contenttweaker:cactium_sliver>, <ebwizardry:blank_scroll>]]);
|
||||
+22
-13
@@ -66,7 +66,7 @@ ancientelvenknowledge.register();
|
||||
|
||||
|
||||
var sednaartifact = VanillaFactory.createItem("sedna_artifact");
|
||||
sednaartifact.maxStackSize = 64;
|
||||
sednaartifact.maxStackSize = 1;
|
||||
sednaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p sedna", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -74,7 +74,7 @@ sednaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
sednaartifact.register();
|
||||
|
||||
var rheniaartifact = VanillaFactory.createItem("rhenia_artifact");
|
||||
rheniaartifact.maxStackSize = 64;
|
||||
rheniaartifact.maxStackSize = 1;
|
||||
rheniaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p rhenia", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -82,7 +82,7 @@ rheniaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
rheniaartifact.register();
|
||||
|
||||
var myrmexartifact = VanillaFactory.createItem("myrmex_artifact");
|
||||
myrmexartifact.maxStackSize = 64;
|
||||
myrmexartifact.maxStackSize = 1;
|
||||
myrmexartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p myrmex", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -90,7 +90,7 @@ myrmexartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
myrmexartifact.register();
|
||||
|
||||
var pixoniaartifact = VanillaFactory.createItem("pixonia_artifact");
|
||||
pixoniaartifact.maxStackSize = 64;
|
||||
pixoniaartifact.maxStackSize = 1;
|
||||
pixoniaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p pixonia", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -98,7 +98,7 @@ pixoniaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
pixoniaartifact.register();
|
||||
|
||||
var proximaartifact = VanillaFactory.createItem("proxima_artifact");
|
||||
proximaartifact.maxStackSize = 64;
|
||||
proximaartifact.maxStackSize = 1;
|
||||
proximaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p proxima", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -106,7 +106,7 @@ proximaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
proximaartifact.register();
|
||||
|
||||
var dynatosartifact = VanillaFactory.createItem("dynatos_artifact");
|
||||
dynatosartifact.maxStackSize = 64;
|
||||
dynatosartifact.maxStackSize = 1;
|
||||
dynatosartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p dynatos", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -114,7 +114,7 @@ dynatosartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
dynatosartifact.register();
|
||||
|
||||
var alkemiaartifact = VanillaFactory.createItem("alkemia_artifact");
|
||||
alkemiaartifact.maxStackSize = 64;
|
||||
alkemiaartifact.maxStackSize = 1;
|
||||
alkemiaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p alkemia", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -122,7 +122,7 @@ alkemiaartifact.itemRightClick = function(stack, world, player, hand) {
|
||||
alkemiaartifact.register();
|
||||
|
||||
var loreofthemeatballman = VanillaFactory.createItem("lore_of_the_meatball_man");
|
||||
loreofthemeatballman.maxStackSize = 64;
|
||||
loreofthemeatballman.maxStackSize = 1;
|
||||
loreofthemeatballman.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p hardmode", player, world, true, true);
|
||||
Commands.call("give @p contenttweaker:forgetful_serum", player, world, true, true);
|
||||
@@ -131,7 +131,7 @@ loreofthemeatballman.itemRightClick = function(stack, world, player, hand) {
|
||||
loreofthemeatballman.register();
|
||||
|
||||
var forgetfulserum = VanillaFactory.createItem("forgetful_serum");
|
||||
forgetfulserum.maxStackSize = 64;
|
||||
forgetfulserum.maxStackSize = 1;
|
||||
forgetfulserum.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage remove @p hardmode", player, world, true, true);
|
||||
Commands.call("give @p contenttweaker:lore_of_the_meatball_man", player, world, true, true);
|
||||
@@ -140,7 +140,7 @@ forgetfulserum.itemRightClick = function(stack, world, player, hand) {
|
||||
forgetfulserum.register();
|
||||
|
||||
var shungiteprism = VanillaFactory.createItem("shungite_prism");
|
||||
shungiteprism.maxStackSize = 64;
|
||||
shungiteprism.maxStackSize = 1;
|
||||
shungiteprism.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p radiationimmunity", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -148,7 +148,7 @@ shungiteprism.itemRightClick = function(stack, world, player, hand) {
|
||||
shungiteprism.register();
|
||||
|
||||
var paparazzicamera = VanillaFactory.createItem("paparazzi_camera");
|
||||
paparazzicamera.maxStackSize = 64;
|
||||
paparazzicamera.maxStackSize = 1;
|
||||
paparazzicamera.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p camerastage", player, world, true, true);
|
||||
return "Pass";
|
||||
@@ -156,9 +156,18 @@ paparazzicamera.itemRightClick = function(stack, world, player, hand) {
|
||||
paparazzicamera.register();
|
||||
|
||||
var wardeclarationmeatballman = VanillaFactory.createItem("true_name_meatball_man");
|
||||
wardeclarationmeatballman.maxStackSize = 64;
|
||||
wardeclarationmeatballman.maxStackSize = 1;
|
||||
wardeclarationmeatballman.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p lostcitiesstage", player, world, true, true);
|
||||
return "Pass";
|
||||
};
|
||||
wardeclarationmeatballman.register();
|
||||
wardeclarationmeatballman.register();
|
||||
|
||||
var astralmasterytome = VanillaFactory.createItem("astral_mastery_tome");
|
||||
astralmasterytome.maxStackSize = 1;
|
||||
astralmasterytome.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("gamestage add @p astralmastery", player, world, true, true);
|
||||
return "Pass";
|
||||
};
|
||||
astralmasterytome.register();
|
||||
|
||||
|
||||
@@ -3,5 +3,6 @@ mods.astralsorcery.GameStages.addLevelCap("divinestage", 35);
|
||||
mods.astralsorcery.GameStages.addLevelCap("draconicstage", 40);
|
||||
mods.astralsorcery.GameStages.addLevelCap("brightsteelforging", 45);
|
||||
mods.astralsorcery.GameStages.addLevelCap("minorvetheabinding", 60);
|
||||
mods.astralsorcery.GameStages.addLevelCap("astralmastery", 100);
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
import mods.recipestages.Recipes;
|
||||
mods.ItemStages.stageEnchant("draconicstage", <enchantment:cofhcore:vorpal>);
|
||||
|
||||
mods.ItemStages.stageEnchant("draconicstage", <enchantment:thaumictinkerer:valiance>);
|
||||
|
||||
mods.ItemStages.stageEnchant("divinestage", <enchantment:tombstone:magic_siphon>);
|
||||
|
||||
mods.ItemStages.stageEnchant("divinestage", <enchantment:mod_lavacow:corrosive>);
|
||||
|
||||
@@ -212,6 +212,11 @@ mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:recursive_im
|
||||
[<contenttweaker:pressed_spice>, <animus:component:1>,
|
||||
<ore:ingotUltimate>, <ore:ingotUltimate>]);
|
||||
|
||||
recipes.addShaped(<thaumicwonders:alienist_stone>.withTag({Unbreakable: 1 as byte}),
|
||||
[[<contenttweaker:second_order_mythic_fractal>, <contenttweaker:catalyzed_runic_ore>, <contenttweaker:second_order_mythic_fractal>],
|
||||
[<contenttweaker:catalyzed_runic_ore>, <thaumicwonders:alienist_stone>, <contenttweaker:catalyzed_runic_ore>],
|
||||
[<contenttweaker:second_order_mythic_fractal>, <contenttweaker:catalyzed_runic_ore>, <contenttweaker:second_order_mythic_fractal>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShapeless("catalizedatore",<contenttweaker:catalyzed_runic_ore>,
|
||||
[<contenttweaker:runic_ore>,
|
||||
<thaumicwonders:eldritch_cluster:6>,
|
||||
@@ -724,6 +729,83 @@ recursiumfragcombine.addItemInput(<contenttweaker:recursium_fragment_iter5>);
|
||||
recursiumfragcombine.addItemOutput(<contenttweaker:recursium_ingot>);
|
||||
recursiumfragcombine.build();
|
||||
|
||||
val recursiumfragupgrade = RecipeBuilder.newBuilder("recursiumfragupgrade","infinity_furnace",20);
|
||||
recursiumfragupgrade.addFluidInput(<fluid:actualizing_fluid>*50);
|
||||
recursiumfragupgrade.addItemInput(<divinerpg:arlemite_block>);
|
||||
recursiumfragupgrade.addItemInput(<divinerpg:realmite_block>);
|
||||
recursiumfragupgrade.addItemInput(<divinerpg:rupee_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:amethyst_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:jade_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:sapphire_block>);
|
||||
recursiumfragupgrade.addItemInput(<divinerpg:bloodgem_block>);
|
||||
recursiumfragupgrade.addItemInput(<divinerpg:netherite_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:emberstone_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:limonite_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:rosite_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:baronyte_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:blazium_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:bloodstone_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:varsium_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:skeletal_ingot_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:gemenyte_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:jewelyte_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:ornamyte_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:elecanium_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:crystallite_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:ghastly_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:ghoulish_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:mystite_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:lyon_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:lunar_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:shyregem_block>);
|
||||
recursiumfragupgrade.addItemInput(<aoa3:shyrestone_block>);
|
||||
recursiumfragupgrade.addItemInput(<contenttweaker:recursion_focus_lens>);
|
||||
recursiumfragupgrade.addItemOutput(<contenttweaker:recursium_ingot>);
|
||||
recursiumfragupgrade.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:fractallite_focus_lens>,
|
||||
1000000,
|
||||
<contenttweaker:recursion_focus_lens>,
|
||||
[<contenttweaker:quasar_charged_dust>, <deepmoblearning:glitch_infused_ingot>,
|
||||
<contenttweaker:quasar_charged_dust>, <deepmoblearning:glitch_infused_ingot>]);
|
||||
|
||||
|
||||
val recursiumfragupgrade2 = RecipeBuilder.newBuilder("recursiumfragupgrade2","infinity_furnace",20);
|
||||
recursiumfragupgrade2.addFluidInput(<fluid:actualizing_fluid>*50);
|
||||
recursiumfragupgrade2.addItemInput(<divinerpg:arlemite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<divinerpg:realmite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<divinerpg:rupee_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:amethyst_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:jade_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:sapphire_block>);
|
||||
recursiumfragupgrade2.addItemInput(<divinerpg:bloodgem_block>);
|
||||
recursiumfragupgrade2.addItemInput(<divinerpg:netherite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:emberstone_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:limonite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:rosite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:baronyte_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:blazium_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:bloodstone_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:varsium_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:skeletal_ingot_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:gemenyte_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:jewelyte_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:ornamyte_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:elecanium_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:crystallite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:ghastly_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:ghoulish_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:mystite_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:lyon_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:lunar_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:shyregem_block>);
|
||||
recursiumfragupgrade2.addItemInput(<aoa3:shyrestone_block>);
|
||||
recursiumfragupgrade2.addItemInput(<contenttweaker:fractallite_focus_lens>);
|
||||
recursiumfragupgrade2.addItemOutput(<contenttweaker:recursium_ingot>*4);
|
||||
recursiumfragupgrade2.build();
|
||||
|
||||
|
||||
|
||||
//
|
||||
|
||||
@@ -824,46 +906,80 @@ recipes.addShapeless(<contenttweaker:warren_shard_abyss>*4,
|
||||
[<contenttweaker:warren_shard_abyss>,
|
||||
<contenttweaker:warren_shard_abyss>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_abyss>*4,
|
||||
[<contenttweaker:warren_shard_abyss>,
|
||||
<contenttweaker:warren_shard_abyss>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_lelyetia>*2,
|
||||
[<contenttweaker:warren_shard_lelyetia>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_lelyetia>*2,
|
||||
[<contenttweaker:warren_shard_lelyetia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_precasia>*4,
|
||||
[<contenttweaker:warren_shard_precasia>,
|
||||
<contenttweaker:warren_shard_precasia>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_precasia>*4,
|
||||
[<contenttweaker:warren_shard_precasia>,
|
||||
<contenttweaker:warren_shard_precasia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_barathos>*4,
|
||||
[<contenttweaker:warren_shard_barathos>,
|
||||
<contenttweaker:warren_shard_barathos>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_barathos>*4,
|
||||
[<contenttweaker:warren_shard_barathos>,
|
||||
<contenttweaker:warren_shard_barathos>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_creeponia>*2,
|
||||
[<contenttweaker:warren_shard_creeponia>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_creeponia>*2,
|
||||
[<contenttweaker:warren_shard_creeponia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_deeplands>*2,
|
||||
[<contenttweaker:warren_shard_deeplands>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_deeplands>*2,
|
||||
[<contenttweaker:warren_shard_deeplands>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_crystevia>*2,
|
||||
[<contenttweaker:warren_shard_crystevia>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_crystevia>*2,
|
||||
[<contenttweaker:warren_shard_crystevia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_gardencia>*2,
|
||||
[<contenttweaker:warren_shard_gardencia>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_gardencia>*2,
|
||||
[<contenttweaker:warren_shard_gardencia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_celeve>*2,
|
||||
[<contenttweaker:warren_shard_celeve>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_celeve>*2,
|
||||
[<contenttweaker:warren_shard_celeve>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_iromine>*4,
|
||||
[<contenttweaker:warren_shard_iromine>,
|
||||
<contenttweaker:warren_shard_iromine>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_iromine>*4,
|
||||
[<contenttweaker:warren_shard_iromine>,
|
||||
<contenttweaker:warren_shard_iromine>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_haven>*10,
|
||||
[<contenttweaker:warren_shard_haven>,
|
||||
@@ -872,52 +988,92 @@ recipes.addShapeless(<contenttweaker:warren_shard_haven>*10,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_haven>*10,
|
||||
[<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:warren_shard_haven>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_candyland>*2,
|
||||
[<contenttweaker:warren_shard_candyland>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_candyland>*2,
|
||||
[<contenttweaker:warren_shard_candyland>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_mysterium>*2,
|
||||
[<contenttweaker:warren_shard_mysterium>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_mysterium>*2,
|
||||
[<contenttweaker:warren_shard_mysterium>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_voxponds>*2,
|
||||
[<contenttweaker:warren_shard_voxponds>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_voxponds>*2,
|
||||
[<contenttweaker:warren_shard_voxponds>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_borean>*2,
|
||||
[<contenttweaker:warren_shard_borean>,
|
||||
<contenttweaker:recursium_fragment_iter3>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_borean>*2,
|
||||
[<contenttweaker:warren_shard_borean>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_runandor>*2,
|
||||
[<contenttweaker:warren_shard_runandor>,
|
||||
<contenttweaker:recursium_fragment_iter3>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_runandor>*2,
|
||||
[<contenttweaker:warren_shard_runandor>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_lunalus>*2,
|
||||
[<contenttweaker:warren_shard_lunalus>,
|
||||
<contenttweaker:recursium_fragment_iter3>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_lunalus>*2,
|
||||
[<contenttweaker:warren_shard_lunalus>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_eden>*2,
|
||||
[<contenttweaker:warren_shard_eden>,
|
||||
<contenttweaker:recursium_fragment_iter1>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_eden>*2,
|
||||
[<contenttweaker:warren_shard_eden>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_wildwood>*2,
|
||||
[<contenttweaker:warren_shard_wildwood>,
|
||||
<contenttweaker:recursium_fragment_iter2>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_wildwood>*2,
|
||||
[<contenttweaker:warren_shard_wildwood>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_apalachia>*2,
|
||||
[<contenttweaker:warren_shard_apalachia>,
|
||||
<contenttweaker:recursium_fragment_iter3>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_apalachia>*2,
|
||||
[<contenttweaker:warren_shard_apalachia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_skythern>*2,
|
||||
[<contenttweaker:warren_shard_skythern>,
|
||||
<contenttweaker:recursium_fragment_iter4>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_skythern>*2,
|
||||
[<contenttweaker:warren_shard_skythern>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_greckon>*2,
|
||||
[<contenttweaker:warren_shard_greckon>,
|
||||
<contenttweaker:recursium_fragment_iter4>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_greckon>*2,
|
||||
[<contenttweaker:warren_shard_greckon>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_dustopia>*10,
|
||||
[<contenttweaker:warren_shard_dustopia>,
|
||||
@@ -926,6 +1082,13 @@ recipes.addShapeless(<contenttweaker:warren_shard_dustopia>*10,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:recursium_fragment_iter4>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_dustopia>*10,
|
||||
[<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:warren_shard_dustopia>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_immortallis>*8,
|
||||
[<contenttweaker:warren_shard_immortallis>,
|
||||
@@ -933,6 +1096,12 @@ recipes.addShapeless(<contenttweaker:warren_shard_immortallis>*8,
|
||||
<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:recursium_fragment_iter4>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_immortallis>*8,
|
||||
[<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:warren_shard_immortallis>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_ancientcavern>*8,
|
||||
[<contenttweaker:warren_shard_ancientcavern>,
|
||||
@@ -940,10 +1109,19 @@ recipes.addShapeless(<contenttweaker:warren_shard_ancientcavern>*8,
|
||||
<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:recursium_fragment_iter4>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_ancientcavern>*8,
|
||||
[<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:warren_shard_ancientcavern>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_shyrelands>*2,
|
||||
[<contenttweaker:warren_shard_shyrelands>,
|
||||
<contenttweaker:recursium_fragment_iter5>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_shyrelands>*2,
|
||||
[<contenttweaker:warren_shard_shyrelands>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_mortum>*12,
|
||||
[<contenttweaker:warren_shard_mortum>,
|
||||
@@ -953,6 +1131,14 @@ recipes.addShapeless(<contenttweaker:warren_shard_mortum>*12,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:recursium_fragment_iter5>]);
|
||||
recipes.addShapeless(<contenttweaker:warren_shard_mortum>*12,
|
||||
[<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:warren_shard_mortum>,
|
||||
<contenttweaker:unbound_recursium_fragment>]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:sacred_callstone>,
|
||||
[[<contenttweaker:warren_splitter_fabrial>, <contenttweaker:essence_of_the_mythic_shells>, <contenttweaker:warren_splitter_fabrial>],
|
||||
|
||||
+46
-1
@@ -99,4 +99,49 @@ mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:greater_gaia
|
||||
<ore:ingotShadowium>, <ore:ingotShadowium>,
|
||||
<ore:ingotShadowium>, <ore:ingotShadowium>,
|
||||
<ore:ingotPhotonium>, <ore:ingotPhotonium>,
|
||||
<ore:ingotPhotonium>, <ore:ingotPhotonium>]);
|
||||
<ore:ingotPhotonium>, <ore:ingotPhotonium>]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<avaritiaitem:cosmic_halite_cluster>,
|
||||
|
||||
[[<contenttweaker:first_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>, null, <contenttweaker:warren_rift>, null, null, <contenttweaker:first_order_ascended_fractal>],
|
||||
|
||||
[null, <contenttweaker:second_order_ascended_fractal>, null, null, <contenttweaker:fifth_order_ascended_fractal>, null, null, <contenttweaker:second_order_ascended_fractal>, null],
|
||||
|
||||
[null, null, <contenttweaker:third_order_ascended_fractal>, null, <avaritiaitem:cosmic_fractal_catalyzer>, null, <contenttweaker:third_order_ascended_fractal>, null, null],
|
||||
|
||||
[<contenttweaker:warren_rift>, null, null, <contenttweaker:fourth_order_ascended_fractal>, null, <contenttweaker:fourth_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>],
|
||||
|
||||
[null, <contenttweaker:fifth_order_ascended_fractal>, <avaritiaitem:cosmic_fractal_catalyzer>, null, <contenttweaker:halite_imbuement_fabrial>, null, <avaritiaitem:cosmic_fractal_catalyzer>, <contenttweaker:fifth_order_ascended_fractal>, null],
|
||||
|
||||
[<contenttweaker:warren_rift>, null, null, <contenttweaker:fourth_order_ascended_fractal>, null, <contenttweaker:fourth_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>],
|
||||
|
||||
[null, null, <contenttweaker:third_order_ascended_fractal>, null, <avaritiaitem:cosmic_fractal_catalyzer>, null, <contenttweaker:third_order_ascended_fractal>, null, null],
|
||||
|
||||
[null, <contenttweaker:second_order_ascended_fractal>, null, null, <contenttweaker:fifth_order_ascended_fractal>, null, null, <contenttweaker:second_order_ascended_fractal>, null],
|
||||
|
||||
[<contenttweaker:first_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>, null, <contenttweaker:warren_rift>, null, null, <contenttweaker:first_order_ascended_fractal>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<avaritiaitem:univocal_halite_cluster>,
|
||||
|
||||
[[<contenttweaker:first_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>, null, <contenttweaker:warren_rift>, null, null, <contenttweaker:first_order_ascended_fractal>],
|
||||
|
||||
[null, <contenttweaker:second_order_ascended_fractal>, null, null, <contenttweaker:fifth_order_ascended_fractal>, null, null, <contenttweaker:second_order_ascended_fractal>, null],
|
||||
|
||||
[null, null, <contenttweaker:third_order_ascended_fractal>, null, <avaritiaitem:cosmic_fractal_harmonizer>, null, <contenttweaker:third_order_ascended_fractal>, null, null],
|
||||
|
||||
[<contenttweaker:warren_rift>, null, null, <contenttweaker:fourth_order_ascended_fractal>, null, <contenttweaker:fourth_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>],
|
||||
|
||||
[null, <contenttweaker:fifth_order_ascended_fractal>, <avaritiaitem:cosmic_fractal_harmonizer>, null, <contenttweaker:halite_imbuement_fabrial>, null, <avaritiaitem:cosmic_fractal_harmonizer>, <contenttweaker:fifth_order_ascended_fractal>, null],
|
||||
|
||||
[<contenttweaker:warren_rift>, null, null, <contenttweaker:fourth_order_ascended_fractal>, null, <contenttweaker:fourth_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>],
|
||||
|
||||
[null, null, <contenttweaker:third_order_ascended_fractal>, null, <avaritiaitem:cosmic_fractal_harmonizer>, null, <contenttweaker:third_order_ascended_fractal>, null, null],
|
||||
|
||||
[null, <contenttweaker:second_order_ascended_fractal>, null, null, <contenttweaker:fifth_order_ascended_fractal>, null, null, <contenttweaker:second_order_ascended_fractal>, null],
|
||||
|
||||
[<contenttweaker:first_order_ascended_fractal>, null, null, <contenttweaker:warren_rift>, null, <contenttweaker:warren_rift>, null, null, <contenttweaker:first_order_ascended_fractal>]]);
|
||||
|
||||
+97
-45
@@ -452,50 +452,19 @@ mods.jei.JEI.addDescription(<iceandfire:fire_dragon_heart>,
|
||||
"物品传输速度、能量凝聚速度、自动合成速度越快,EMC产出越高。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<draconicevolution:celestial_manipulator>,
|
||||
mods.jei.JEI.addDescription([<draconicevolution:celestial_manipulator>, <contenttweaker:skip_day>, <minecraft:lapis_block>, <contenttweaker:make_it_night>, <contenttweaker:hammock>],
|
||||
[
|
||||
"本整合包中主要有两种手段跳过白天!",
|
||||
"本整合包中主要有四种手段跳过白天!",
|
||||
"",
|
||||
"使用青金石配合血魔法模组的不完善的仪式石可以手动跳过白天。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天。"
|
||||
"月蚀计可消耗时间之瓶中的时间来加速日夜循环。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天!",
|
||||
"",
|
||||
"巫术学附属模组的时间操纵者法术。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<minecraft:lapis_block>,
|
||||
[
|
||||
"本整合包中主要有两种手段跳过白天!",
|
||||
"",
|
||||
"使用青金石配合血魔法模组的不完善的仪式石可以手动跳过白天。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:make_it_night>,
|
||||
[
|
||||
"本整合包中主要有两种手段跳过白天!",
|
||||
"",
|
||||
"使用青金石配合血魔法模组的不完善的仪式石可以手动跳过白天。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:hammock>,
|
||||
[
|
||||
"本整合包中主要有两种手段跳过白天!",
|
||||
"",
|
||||
"使用青金石配合血魔法模组的不完善的仪式石可以手动跳过白天。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:skip_day>,
|
||||
[
|
||||
"本整合包中主要有两种手段跳过白天!",
|
||||
"",
|
||||
"使用青金石配合血魔法模组的不完善的仪式石可以手动跳过白天。",
|
||||
"",
|
||||
"龙之进化模组的苍穹变换器可以通过红石控制自动跳过白天。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription([<buildcraftsilicon:assembly_table>, <buildcraftsilicon:laser>],
|
||||
[
|
||||
@@ -693,7 +662,7 @@ mods.jei.JEI.addDescription(<contenttweaker:mob_farm>,
|
||||
"深度怪物学习",
|
||||
"终极生物农场",
|
||||
"",
|
||||
"在早期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"在前期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"",
|
||||
"生物粉碎机是最方便的杀怪手段。安装范围升级后可覆盖一整片诅咒之土!",
|
||||
"",
|
||||
@@ -708,7 +677,7 @@ mods.jei.JEI.addDescription(<industrialforegoing:mob_duplicator>,
|
||||
"深度怪物学习",
|
||||
"终极生物农场",
|
||||
"",
|
||||
"在早期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"在前期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"",
|
||||
"生物粉碎机是最方便的杀怪手段。安装范围升级后可覆盖一整片诅咒之土!",
|
||||
"",
|
||||
@@ -723,7 +692,7 @@ mods.jei.JEI.addDescription(<industrialforegoing:mob_relocator>,
|
||||
"深度怪物学习",
|
||||
"终极生物农场",
|
||||
"",
|
||||
"在早期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"在前期,刷怪的最佳手段是对泥土使用邪恶点滴来生成诅咒之土,它会像草方块一样蔓延。诅咒之土能增加敌对生物的刷新率!放置的最佳地点是Y=2处!",
|
||||
"",
|
||||
"生物粉碎机是最方便的杀怪手段。安装范围升级后可覆盖一整片诅咒之土!",
|
||||
"",
|
||||
@@ -2082,7 +2051,7 @@ mods.jei.JEI.addDescription(<modularmachinery:itemblueprint>,
|
||||
"以下蓝图可直接合成,并用于转化为其他所有蓝图!",
|
||||
"热钢混合器 - 大部分机械!",
|
||||
"泰拉神话虚空资源采掘机 - 所有神话采掘机!",
|
||||
"中子炮 - 第6章的多方块!",
|
||||
"中子素炮 - 第6章的多方块!",
|
||||
"相对论坍缩器 - 第9章的多方块!",
|
||||
"神话处理器:合金炉 - 所有神话处理器!",
|
||||
"自动奥术工作台 - 所有魔法多方块!"
|
||||
@@ -2587,7 +2556,9 @@ mods.jei.JEI.addDescription([<contenttweaker:dimension_ids>],
|
||||
"地球(失落的城市)【Lost Cities】:111",
|
||||
"伽里弗雷【Gallifrey】:624",
|
||||
"RFTools维度:900(以及其后的连续数字)",
|
||||
"卡尚【Kashan】:190"
|
||||
"卡尚【Kashan】:190",
|
||||
"叁壹界【Trinitas】:191",
|
||||
"衰腐界【Fuhai】:192"
|
||||
]);
|
||||
|
||||
|
||||
@@ -3627,7 +3598,7 @@ mods.jei.JEI.addDescription([
|
||||
"",
|
||||
"在多方块预览中查看热交换器的内部设计。",
|
||||
"",
|
||||
"热交换器需要输入热流体和冷流体进行工作。流程中只需要使用水作为冷流体,任意热钠钾流体作为热流体即可。",
|
||||
"热交换器需要输入热流体和冷流体进行工作。",
|
||||
"",
|
||||
"在热交换器内部,使用热交换管道(冷热流体均可)来传输流体。工作方式与熔盐反应堆中的燃料容器或冷却剂加热器类似。",
|
||||
"",
|
||||
@@ -3673,6 +3644,21 @@ mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_stage1anomaly>,
|
||||
"用4个铁块以十字形环绕黑曜石"
|
||||
]);
|
||||
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_cherubim>,
|
||||
[
|
||||
"拜托!至少试着解一下谜题嘛!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"说真的!解谜很有意思的!下一页有额外提示!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"在特定颜色的陶瓦方块上召唤维境跃迁者智天使……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"想不到你居然不试着把线索连起来……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"右击与对应陶瓦颜色相同的智天使:倾爱者=红色,承爱者=绿色,爱=蓝色"
|
||||
]);
|
||||
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_warrenblindfold>,
|
||||
[
|
||||
"拜托!至少试着解一下谜题嘛!",
|
||||
@@ -3732,7 +3718,7 @@ mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_truepowerabomination
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"想不到你居然不试着把线索连起来……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"将精铸福鲁伊克斯水晶、仲裁者之触、龙之晶核、憎恶蛋与以下Animus模组的生物灵魂结合:丛林蜘蛛、地狱蜘蛛、灵魂蜘蛛、末影蜘蛛、海洋蜘蛛。"
|
||||
"将精铸福鲁伊克斯水晶、理序主之触、龙之晶核、憎恶蛋与以下Animus模组的生物灵魂结合:丛林蜘蛛、地狱蜘蛛、灵魂蜘蛛、末影蜘蛛、海洋蜘蛛。"
|
||||
]);
|
||||
|
||||
|
||||
@@ -4009,6 +3995,20 @@ mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_biomeritual>,
|
||||
"BV CC SB NW MY"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_freedskystone>,
|
||||
[
|
||||
"拜托!至少试着解一下谜题嘛!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"说真的!解谜很有意思的!下一页有额外提示!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"缠魂陨石和主宰法咒,要是这两凑一块儿的话……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"想不到你居然不试着把线索连起来……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"在缠魂陨石周围使用主宰法咒:Ordo。可通过使用者实现自动化。"
|
||||
]);
|
||||
|
||||
|
||||
mods.jei.JEI.addDescription([
|
||||
<fluxnetworks:fluxplug>,
|
||||
<fluxnetworks:fluxpoint>,
|
||||
@@ -4626,6 +4626,44 @@ mods.jei.JEI.addDescription([
|
||||
"推荐使用其他能量传输手段(能量管道、能量导管、能量激光)将单个接出点/接入点与多台机器/发电机连接。确保能量传输速率满足需求即可。"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_undeadsoil>,
|
||||
[
|
||||
"拜托!至少试着解一下谜题嘛!",
|
||||
"", "", "", "", "", "", "", "", "", "", "","", "", "", "", "", "", "", "", "", "",
|
||||
"说真的!解谜很有意思的!下一页有额外提示!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"Travixte有7种不同的生物群系,对应7种不同的地表方块……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"想不到你居然不试着把线索连起来……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"将暴食领主之杖与这些方块结合:暴风草方块、黄金草方块、玩具草方块、符文草方块、爵士地面、神秘草方块、雪"
|
||||
]);
|
||||
|
||||
mods.jei.JEI.addDescription(<contenttweaker:puzzle_solution_vowtodeath>,
|
||||
[
|
||||
"拜托!至少试着解一下谜题嘛!",
|
||||
"", "", "", "", "", "", "", "", "", "", "","", "", "", "", "", "", "", "", "", "",
|
||||
"说真的!解谜很有意思的!下一页有额外提示!",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"不该是暗色伊塞斯砖块。或许有特定怪物持有着用于替换暗色伊塞斯砖块的答案。奇怪的是,它们手持的东西不会直接掉落,但我确信有其他办法能把它们搞到手……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"想不到你居然不试着把线索连起来……",
|
||||
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
|
||||
"使用以下方块替换暗色伊塞斯砖块(按方向标记):",
|
||||
"北:钴块 ()",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]);
|
||||
|
||||
|
||||
mods.jei.JEI.addDescription([
|
||||
<contenttweaker:passive_crafting_subnets>],
|
||||
@@ -4713,3 +4751,17 @@ mods.jei.JEI.addDescription([
|
||||
"",
|
||||
"在排空后,除非重启反应堆,否则等离子体不会重新填充。可使用红石电路定时开关反应堆来填充等离子体。"
|
||||
]);
|
||||
|
||||
|
||||
mods.jei.JEI.addDescription([
|
||||
<contenttweaker:multiblock_input_swapping>],
|
||||
[
|
||||
"本整合包中有些多方块结构不会消耗输入物。例如附魔温室和机械鸡舍。",
|
||||
"",
|
||||
"就算同时存在多种输入物,这种多方块结构也只会处理单种配方。放置在模块化机械模组输入仓中的物品无法被自动抽出。",
|
||||
"",
|
||||
"不过,仍可以使用幻灵接口来自动抽取输入仓中的输入物。",
|
||||
"",
|
||||
"利用这一原理,可构建能自动切换多方块结构输入物的装置,这样无需建造多台机器便可处理多种配方。"
|
||||
]);
|
||||
|
||||
|
||||
+18
-1
@@ -7,6 +7,17 @@ recipes.addShaped(<contenttweaker:stone_of_universal_balance>,
|
||||
[<contenttweaker:hungering_flesh_ingot>, <contenttweaker:actualizing_hyperuranion_ingot>, <contenttweaker:ascended_fluix_crystal>],
|
||||
[<contenttweaker:chaos_wood>, <careerbees:ingredients:11>, <contenttweaker:recursium_ingot>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:stone_of_universal_balance>*4,
|
||||
[[<contenttweaker:recursium_ingot>, <careerbees:ingredients:12>, <contenttweaker:order_wood>],
|
||||
[<contenttweaker:hungering_flesh_ingot>, <contenttweaker:trinity_nugget>, <contenttweaker:ascended_fluix_crystal>],
|
||||
[<contenttweaker:chaos_wood>, <careerbees:ingredients:11>, <contenttweaker:recursium_ingot>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:stone_of_universal_balance>*16,
|
||||
[[<contenttweaker:recursium_ingot>, <contenttweaker:dust_of_infinite_wishes>, <contenttweaker:order_wood>],
|
||||
[<contenttweaker:hungering_flesh_ingot>, <contenttweaker:trinity_nugget>, <contenttweaker:ascended_fluix_crystal>],
|
||||
[<contenttweaker:chaos_wood>, <contenttweaker:dust_of_infinite_wishes>, <contenttweaker:recursium_ingot>]]);
|
||||
|
||||
|
||||
val hungeringfleshgear = RecipeBuilder.newBuilder("hungeringfleshgear","mythic_processor_gearworking_die",1);
|
||||
hungeringfleshgear.addEnergyPerTickInput(1000000);
|
||||
hungeringfleshgear.addItemInput(<contenttweaker:hungering_flesh_ingot>*16);
|
||||
@@ -92,7 +103,7 @@ mods.thaumcraft.Infusion.registerRecipe("infmeatballtitan", "",
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("inffleshworldcallstone", "",
|
||||
<contenttweaker:summons_of_the_meatball_titan>, 10,
|
||||
<contenttweaker:flesh_world_callstone>, 10,
|
||||
[<aspect:vitium>*1000, <aspect:desiderium>*1000, <aspect:diabolus>*500, <aspect:infernum>*200],
|
||||
<contenttweaker:spreading_sentient_meatball>,
|
||||
[<contenttweaker:slate_of_endless_hunger>, <contenttweaker:hungering_flesh_ingot>,
|
||||
@@ -233,3 +244,9 @@ true,
|
||||
<contenttweaker:true_chaos>,<contenttweaker:wormhole_catalyst>]);
|
||||
game.setLocalization("ac.ritual.KashanWarperInf", "宇宙尽在掌握");
|
||||
game.setLocalization("ac.ritual.KashanWarperInf.desc", "这是一切意义之所在");
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:true_tongue_oath>,
|
||||
[[<contenttweaker:cuendillar_plate>, <contenttweaker:hungering_flesh_ingot>, <contenttweaker:cuendillar_plate>],
|
||||
[<contenttweaker:hungering_flesh_ingot>, <contenttweaker:staff_of_the_lord_of_gluttony>.reuse(), <contenttweaker:hungering_flesh_ingot>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:hungering_flesh_ingot>, <contenttweaker:cuendillar_plate>]]);
|
||||
|
||||
@@ -343,3 +343,11 @@ masterspellaversio.register();
|
||||
|
||||
|
||||
|
||||
var masterspellinfernum = VanillaFactory.createItem("master_spell_infernum");
|
||||
masterspellinfernum.maxStackSize = 1;
|
||||
masterspellinfernum.glowing = true;
|
||||
masterspellinfernum.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("summon Item ~ ~10 ~ {Item:{id:\"contenttweaker:cursed_dragon_egg\",Count:1b}}", player, world, false, true);
|
||||
return "Pass";
|
||||
};
|
||||
masterspellinfernum.register();
|
||||
@@ -0,0 +1,76 @@
|
||||
#modloaded bloodmagic
|
||||
#reloadable
|
||||
|
||||
import native.WayofTime.bloodmagic.entity.projectile.EntityMeteor;
|
||||
import crafttweaker.item.IItemStack;
|
||||
import crafttweaker.world.IWorld;
|
||||
import crafttweaker.world.IBlockPos;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.world.IVector3d;
|
||||
import crafttweaker.util.Position3f;
|
||||
|
||||
import crafttweaker.event.PlayerRightClickItemEvent;
|
||||
|
||||
|
||||
events.onPlayerRightClickItem(function(event as PlayerRightClickItemEvent) {
|
||||
|
||||
if (event.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
|
||||
val heldItem = event.item;
|
||||
if (!isNull(heldItem) && heldItem.definition.id.matches(<contenttweaker:charm_of_the_falling_tower>.definition.id)) {
|
||||
val catalyst = <contenttweaker:draconic_fabrial>;
|
||||
summonMeteor(event.player.world, event.player.position, catalyst);
|
||||
heldItem.mutable().shrink(1);
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
// Item catalyst for the type of meteor to summon
|
||||
// val CATALYST = <minecraft:iron_block>;
|
||||
|
||||
/* events.onPlayerTick(function(event as crafttweaker.event.PlayerTickEvent) {
|
||||
if (event.phase != "START" || isNull(event.player) || isNull(event.player.world) || event.player.world.isRemote()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.player.world.getWorldTime() % 20 != 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
val heldItem as IItemStack = event.player.mainHandHeldItem;
|
||||
val stick = <minecraft:stick>;
|
||||
|
||||
if (!isNull(heldItem) && heldItem.matches(stick)) {
|
||||
summonMeteor(event.player.world, event.player.position, CATALYST);
|
||||
}
|
||||
}); */
|
||||
|
||||
function summonMeteor(world as IWorld, blockPos as IBlockPos, catalyst as IItemStack) as void {
|
||||
val meteor = <entity:bloodmagic:meteor>.createEntity(world);
|
||||
if (!(meteor.native instanceof EntityMeteor)) {
|
||||
return;
|
||||
}
|
||||
// set catalyst before updating nbt
|
||||
(meteor.native as EntityMeteor).setMeteorStack(catalyst.withAmount(1).native);
|
||||
|
||||
// Modifiable values
|
||||
var nbtToModify = {
|
||||
"radiusModifier": 1.1,
|
||||
"explosionModifier": 1.1,
|
||||
"fillerChance": 0.1
|
||||
} as IData;
|
||||
val newNBT = meteor.nbt + nbtToModify - "noItem";
|
||||
meteor.updateNBT(newNBT);
|
||||
|
||||
// world-related changes (same values as ritual)
|
||||
meteor.setPosition(Position3f.create(blockPos.x, 260.0, blockPos.z));
|
||||
meteor.setMotionVector(IVector3d.create(0.0, -0.1, 0.0));
|
||||
//print(meteor.nbt);
|
||||
world.spawnEntity(meteor);
|
||||
}
|
||||
@@ -7,6 +7,13 @@ ezpzblood.setChance(0.0);
|
||||
ezpzblood.addFluidOutput(<fluid:lifeessence>*1000);
|
||||
ezpzblood.build();
|
||||
|
||||
val ezpzbloodmore = RecipeBuilder.newBuilder("ezpzbloodmore","blood_god_altar",2);
|
||||
ezpzbloodmore.addFluidInput(<fluid:water>*1000);
|
||||
ezpzbloodmore.addItemInput(<contenttweaker:droplet_of_the_great_snake>);
|
||||
ezpzbloodmore.setChance(0.0);
|
||||
ezpzbloodmore.addFluidOutput(<fluid:lifeessence>*100000);
|
||||
ezpzbloodmore.build();
|
||||
|
||||
val ezpzbloodnet = RecipeBuilder.newBuilder("ezpzbloodnet","blood_god_altar_network",100);
|
||||
ezpzbloodnet.addFluidInput(<fluid:water>*1000);
|
||||
ezpzbloodnet.addItemInput(<contenttweaker:eldrich_blood_slime>);
|
||||
|
||||
@@ -69,4 +69,13 @@ enc7.addFluidInput(<fluid:liquidcoralium>*200);
|
||||
enc7.addItemInput(<aoa3:ice_crystal>);
|
||||
enc7.addItemInput(<contenttweaker:dreadful_ice>);
|
||||
enc7.addItemOutput(<divinerpg:snowflake>*24);
|
||||
enc7.build();
|
||||
enc7.build();
|
||||
|
||||
val enc8 = RecipeBuilder.newBuilder("icearca8","corrupted_library",20);
|
||||
enc8.addEnergyPerTickInput(2000);
|
||||
enc8.addFluidInput(<fluid:lifeessence>*800);
|
||||
enc8.addFluidInput(<fluid:liquidcoralium>*800);
|
||||
enc8.addItemInput(<bloodmagic:blood_shard:0>);
|
||||
enc8.addItemInput(<contenttweaker:infinity_fragment>);
|
||||
enc8.addItemOutput(<divinerpg:collector_fragments>*8);
|
||||
enc8.build();
|
||||
@@ -1,5 +1,10 @@
|
||||
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import crafttweaker.data.IData;
|
||||
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:triple_compressed_realgar>,
|
||||
[[<contenttweaker:double_compressed_realgar>, <contenttweaker:double_compressed_realgar>, <contenttweaker:double_compressed_realgar>],
|
||||
@@ -165,6 +170,18 @@ haliteingotcompression.addItemInput(<contenttweaker:pure_halite_cluster>);
|
||||
haliteingotcompression.addItemOutput(<materialpart:fractallite_halite:ingot>);
|
||||
haliteingotcompression.build();
|
||||
|
||||
val haliteingotcompression4 = RecipeBuilder.newBuilder("haliteingotcompression4","dyson_compressor",100);
|
||||
haliteingotcompression4.addEnergyPerTickInput(2000000000);
|
||||
haliteingotcompression4.addItemInput(<avaritiaitem:cosmic_halite_cluster>);
|
||||
haliteingotcompression4.addItemOutput(<materialpart:fractallite_halite:ingot>*4);
|
||||
haliteingotcompression4.build();
|
||||
|
||||
val haliteingotcompression8 = RecipeBuilder.newBuilder("haliteingotcompression8","dyson_compressor",100);
|
||||
haliteingotcompression8.addEnergyPerTickInput(2000000000);
|
||||
haliteingotcompression8.addItemInput(<avaritiaitem:univocal_halite_cluster>);
|
||||
haliteingotcompression8.addItemOutput(<materialpart:fractallite_halite:ingot>*8);
|
||||
haliteingotcompression8.build();
|
||||
|
||||
val makehorcrux = RecipeBuilder.newBuilder("makehorcrux","herne_altar",80);
|
||||
makehorcrux.addFluidInput(<fluid:lifeessence>*12000);
|
||||
makehorcrux.addFluidInput(<fluid:liquid_lp>*12000);
|
||||
@@ -180,3 +197,51 @@ mods.extendedcrafting.TableCrafting.addShaped(<glassential:glass_redstone>*32,
|
||||
[<thermalfoundation:glass_alloy:5>, <contenttweaker:neutronium_casing>, <contenttweaker:brightsteel_conduit>, <contenttweaker:mythic_machine_case>, <contenttweaker:brightsteel_conduit>, <contenttweaker:neutronium_casing>, <thermalfoundation:glass_alloy:5>],
|
||||
[<thermalfoundation:glass_alloy:5>, <contenttweaker:recursium_ingot>, <contenttweaker:neutronium_casing>, <avaritia:resource:6>, <contenttweaker:neutronium_casing>, <contenttweaker:recursium_ingot>, <thermalfoundation:glass_alloy:5>],
|
||||
[<thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>, <thermalfoundation:glass_alloy:5>]]);
|
||||
|
||||
|
||||
recipes.addShapeless(<avaritiaitem:cosmic_fractal_catalyzer>*4,
|
||||
[<avaritia:infinity_sword>.reuse(),
|
||||
<contenttweaker:fractallite_halite_stone>]);
|
||||
|
||||
|
||||
var mapCallandor as IData = {};
|
||||
val enchlistCallandor as IEnchantmentDefinition[] = [<enchantment:cofhcore:vorpal>, <enchantment:minecraft:sharpness>];
|
||||
mapCallandor += enchlistCallandor[0].makeEnchantment(20000).makeTag();
|
||||
mapCallandor += enchlistCallandor[1].makeEnchantment(20000).makeTag();
|
||||
|
||||
|
||||
recipes.addShapeless(<avaritiaitem:cosmic_fractal_catalyzer>*12,
|
||||
[<twilightforest:glass_sword>.withTag(mapCallandor).reuse(),
|
||||
<contenttweaker:fractallite_halite_stone>]);
|
||||
|
||||
recipes.addShapeless(<avaritiaitem:cosmic_fractal_harmonizer>,
|
||||
[<twilightforest:glass_sword>.withTag(mapCallandor).reuse(),
|
||||
<avaritiaitem:cosmic_fractal_catalyzer>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:linked_apple_slice>,
|
||||
[<twilightforest:glass_sword>.withTag(mapCallandor).reuse(),
|
||||
<minecraft:apple>]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:power_wrought_brightsteel_alloy_plate>*3,
|
||||
[[<contenttweaker:brightseel_alloy_plate>, <contenttweaker:spiritus_vis_condensate>, <contenttweaker:brightseel_alloy_plate>],
|
||||
[<contenttweaker:terra_vis_condensate>, <twilightforest:glass_sword>.withTag(mapCallandor).reuse(), <contenttweaker:aqua_vis_condensate>],
|
||||
[<contenttweaker:ignis_vis_condensate>, <contenttweaker:brightseel_alloy_plate>, <contenttweaker:aer_vis_condensate>]]);
|
||||
|
||||
|
||||
var mapChoedanKal as IData = {};
|
||||
val enchlistChoedanKal as IEnchantmentDefinition[] = [<enchantment:thaumictinkerer:finalstrike>, <enchantment:thaumictinkerer:valiance>];
|
||||
mapChoedanKal += enchlistChoedanKal[0].makeEnchantment(20000).makeTag();
|
||||
mapChoedanKal += enchlistChoedanKal[1].makeEnchantment(20000).makeTag();
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:cleansed_brightsteel_alloy_plate>*3,
|
||||
[[<careerbees:ingredients:11>, <contenttweaker:power_wrought_brightsteel_alloy_plate>, <careerbees:ingredients:12>],
|
||||
[<mod_lavacow:scarab_wand>.withTag(mapChoedanKal).reuse(), <contenttweaker:power_wrought_brightsteel_alloy_plate>, <mod_lavacow:sludge_wand>.withTag(mapChoedanKal).reuse()],
|
||||
[<careerbees:ingredients:12>, <contenttweaker:power_wrought_brightsteel_alloy_plate>, <careerbees:ingredients:11>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:cleansed_cinnamon_apple>,
|
||||
[[<careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}})],
|
||||
[<mod_lavacow:scarab_wand>.withTag(mapChoedanKal).reuse(), <contenttweaker:linked_apple_slice>, <mod_lavacow:sludge_wand>.withTag(mapChoedanKal).reuse()],
|
||||
[<careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.9", Count: 1, Damage: 3 as short}})]]);
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:horizon_sustainer>*4,
|
||||
[[<contenttweaker:freedomsteel_ingot>, <contenttweaker:time_crystal>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:time_crystal>, <contenttweaker:freedomsteel_ingot>],
|
||||
[<contenttweaker:time_crystal>, <contenttweaker:naquadah_catalyst>, <contenttweaker:horizon_stabilizer>, <contenttweaker:naquadah_catalyst>, <contenttweaker:time_crystal>],
|
||||
[<contenttweaker:stone_of_universal_balance>, <contenttweaker:horizon_stabilizer>, <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:horizon_stabilizer>, <contenttweaker:stone_of_universal_balance>],
|
||||
[<contenttweaker:time_crystal>, <contenttweaker:naquadah_catalyst>, <contenttweaker:horizon_stabilizer>, <contenttweaker:naquadah_catalyst>, <contenttweaker:time_crystal>],
|
||||
[<contenttweaker:freedomsteel_ingot>, <contenttweaker:time_crystal>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:time_crystal>, <contenttweaker:freedomsteel_ingot>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:exotic_absorber>*4,
|
||||
[[<materialpart:fractallite_halite:ingot>, <glassential:glass_dark>, <contenttweaker:white_hole>, <glassential:glass_dark>, <materialpart:fractallite_halite:ingot>],
|
||||
[<glassential:glass_dark>, <contenttweaker:gem_of_recursion>, <contenttweaker:pulsar_screen>, <contenttweaker:gem_of_recursion>, <glassential:glass_dark>],
|
||||
[<contenttweaker:white_hole>, <contenttweaker:pulsar_screen>, <contenttweaker:hungering_machine_case>, <contenttweaker:pulsar_screen>, <contenttweaker:white_hole>],
|
||||
[<glassential:glass_dark>, <contenttweaker:gem_of_recursion>, <contenttweaker:pulsar_screen>, <contenttweaker:gem_of_recursion>, <glassential:glass_dark>],
|
||||
[<materialpart:fractallite_halite:ingot>, <glassential:glass_dark>, <contenttweaker:white_hole>, <glassential:glass_dark>, <materialpart:fractallite_halite:ingot>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:exotic_dyson_conduit>*4,
|
||||
[[<contenttweaker:dyson_beam>, <contenttweaker:dyson_beam>, <contenttweaker:strings_crystal>, <contenttweaker:actualizing_hyperuranion_ingot>, <contenttweaker:strings_crystal>, <contenttweaker:dyson_beam>, <contenttweaker:dyson_beam>],
|
||||
[<contenttweaker:dyson_beam>, <contenttweaker:entropy_director_element>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:entropy_director_element>, <contenttweaker:dyson_beam>],
|
||||
[<contenttweaker:strings_crystal>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:linear_accelerator_tube>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:strings_crystal>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:linear_accelerator_tube>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:linear_accelerator_tube>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:cuendillar_plate>],
|
||||
[<contenttweaker:strings_crystal>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:linear_accelerator_tube>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:strings_crystal>],
|
||||
[<contenttweaker:dyson_beam>, <contenttweaker:entropy_director_element>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:defined_redstone_chipset>, <contenttweaker:entropy_director_element>, <contenttweaker:dyson_beam>],
|
||||
[<contenttweaker:dyson_beam>, <contenttweaker:dyson_beam>, <contenttweaker:strings_crystal>, <contenttweaker:actualizing_hyperuranion_ingot>, <contenttweaker:strings_crystal>, <contenttweaker:dyson_beam>, <contenttweaker:dyson_beam>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:dyson_extruder>*2,
|
||||
[[<contenttweaker:plasma_accelerator_tube>, <contenttweaker:plasma_accelerator_tube>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:plasma_accelerator_tube>, <contenttweaker:plasma_accelerator_tube>],
|
||||
[<contenttweaker:neutronium_cannon>, <contenttweaker:neutronium_cannon>, <contenttweaker:recursium_ingot>, <contenttweaker:neutronium_cannon>, <contenttweaker:neutronium_cannon>],
|
||||
[<contenttweaker:dyson_compressor>, <contenttweaker:gem_of_recursion>, <contenttweaker:gem_of_recursion>, <contenttweaker:gem_of_recursion>, <contenttweaker:dyson_compressor>],
|
||||
[<contenttweaker:neutronium_cannon>, <contenttweaker:neutronium_cannon>, <contenttweaker:recursium_ingot>, <contenttweaker:neutronium_cannon>, <contenttweaker:neutronium_cannon>],
|
||||
[<contenttweaker:plasma_accelerator_tube>, <contenttweaker:plasma_accelerator_tube>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:plasma_accelerator_tube>, <contenttweaker:plasma_accelerator_tube>]]);
|
||||
|
||||
|
||||
|
||||
val dysonextruderplasma = RecipeBuilder.newBuilder("dysonextruderplasma","dyson_extruder",40);
|
||||
dysonextruderplasma.addEnergyPerTickInput(5000000000);
|
||||
dysonextruderplasma.addFluidInput(<fluid:recursive_computing_matter>*10);
|
||||
dysonextruderplasma.addFluidInput(<fluid:pure_recursion>*10);
|
||||
dysonextruderplasma.addFluidOutput(<fluid:pre_baryonic_plasma>*100);
|
||||
dysonextruderplasma.build();
|
||||
|
||||
|
||||
val dysonextruderdoped = RecipeBuilder.newBuilder("dysonextruderdoped","dyson_extruder",40);
|
||||
dysonextruderdoped.addEnergyPerTickInput(5000000000);
|
||||
dysonextruderdoped.addFluidInput(<fluid:recursive_computing_matter>*10);
|
||||
dysonextruderdoped.addFluidInput(<fluid:doped_recursion>*10);
|
||||
dysonextruderdoped.addFluidOutput(<fluid:pre_baryonic_plasma>*1000);
|
||||
dysonextruderdoped.build();
|
||||
@@ -40,7 +40,7 @@ mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:dyson_conduit>*4,
|
||||
|
||||
mods.thermalexpansion.Infuser.addRecipe(<contenttweaker:irradiated_filler>, <extracells:fluidfiller>, 1000);
|
||||
|
||||
val creationray = RecipeBuilder.newBuilder("creationray","creation_altar",1600);
|
||||
val creationray = RecipeBuilder.newBuilder("creationray","creation_altar",100);
|
||||
creationray.addEnergyPerTickInput(400000);
|
||||
creationray.addFluidInput(<fluid:lifeessence>*10);
|
||||
creationray.addFluidInput(<fluid:astralsorcery.liquidstarlight>*10);
|
||||
@@ -163,7 +163,7 @@ mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:irradiator_casing>
|
||||
[<contenttweaker:high_refraction_alloy_ingot>, <contenttweaker:infinity_plate>, <contenttweaker:radiation_crafter>, <contenttweaker:infinity_plate>, <contenttweaker:high_refraction_alloy_ingot>]]);
|
||||
|
||||
|
||||
val hyperdenseplasmacent = RecipeBuilder.newBuilder("hyperdenseplasmacent","iron_centrifuge",200);
|
||||
val hyperdenseplasmacent = RecipeBuilder.newBuilder("hyperdenseplasmacent","iron_centrifuge",2);
|
||||
hyperdenseplasmacent.addEnergyPerTickInput(1000000);
|
||||
hyperdenseplasmacent.addFluidInput(<fluid:chaotic_matter>*50);
|
||||
hyperdenseplasmacent.addFluidInput(<fluid:nightmarish_matter>*50);
|
||||
@@ -208,6 +208,16 @@ irradiationultimatechicktop.addItemOutput(<avaritia:resource:6>*12);
|
||||
irradiationultimatechicktop.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
irradiationultimatechicktop.build();
|
||||
|
||||
val irradiationultimatekashtop = RecipeBuilder.newBuilder("irradiationultimatekashtop","dyson_irradiator_top",200);
|
||||
irradiationultimatekashtop.addFluidInput(<fluid:hyperdense_plasma>*100);
|
||||
irradiationultimatekashtop.addItemInput(<contenttweaker:defined_ingot>);
|
||||
irradiationultimatekashtop.addItemInput(<contenttweaker:infinity_egg>);
|
||||
irradiationultimatekashtop.addItemInput(<contenttweaker:infinity_stone>);
|
||||
irradiationultimatekashtop.addItemInput(<avaritiaitem:self_actualizing_stone>);
|
||||
irradiationultimatekashtop.addItemOutput(<avaritia:resource:6>*27);
|
||||
irradiationultimatekashtop.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
irradiationultimatekashtop.build();
|
||||
|
||||
val irradiationultimatechickbot = RecipeBuilder.newBuilder("irradiationultimatechickbot","dyson_irradiator_bottom",200);
|
||||
irradiationultimatechickbot.addFluidInput(<fluid:hyperdense_plasma>*100);
|
||||
irradiationultimatechickbot.addItemInput(<contenttweaker:defined_ingot>);
|
||||
@@ -218,6 +228,16 @@ irradiationultimatechickbot.addItemOutput(<avaritia:resource:6>*12);
|
||||
irradiationultimatechickbot.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
irradiationultimatechickbot.build();
|
||||
|
||||
val irradiationultimatekashbot = RecipeBuilder.newBuilder("irradiationultimatekashbot","dyson_irradiator_bottom",200);
|
||||
irradiationultimatekashbot.addFluidInput(<fluid:hyperdense_plasma>*100);
|
||||
irradiationultimatekashbot.addItemInput(<contenttweaker:defined_ingot>);
|
||||
irradiationultimatekashbot.addItemInput(<contenttweaker:infinity_egg>);
|
||||
irradiationultimatekashbot.addItemInput(<contenttweaker:infinity_stone>);
|
||||
irradiationultimatekashbot.addItemInput(<avaritiaitem:self_actualizing_stone>);
|
||||
irradiationultimatekashbot.addItemOutput(<avaritia:resource:6>*27);
|
||||
irradiationultimatekashbot.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
irradiationultimatekashbot.build();
|
||||
|
||||
val irradiationrainbowtop = RecipeBuilder.newBuilder("irradiationrainbowtop","dyson_irradiator_top",200);
|
||||
irradiationrainbowtop.addFluidInput(<fluid:chaos>*1440);
|
||||
irradiationrainbowtop.addItemInput(<extrautils2:decorativesolid:8>);
|
||||
@@ -601,3 +621,4 @@ mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:pulsar_screen>*2,
|
||||
[<contenttweaker:high_energy_ray_collector>, <contenttweaker:awakened_electromagnet>, <contenttweaker:atomic_mirror>, <contenttweaker:atomic_mirror>, <contenttweaker:atomic_mirror>, <contenttweaker:awakened_electromagnet>, <contenttweaker:high_energy_ray_collector>],
|
||||
[<contenttweaker:high_energy_ray_collector>, <contenttweaker:awakened_electromagnet>, <contenttweaker:awakened_electromagnet>, <contenttweaker:awakened_electromagnet>, <contenttweaker:awakened_electromagnet>, <contenttweaker:awakened_electromagnet>, <contenttweaker:high_energy_ray_collector>],
|
||||
[<contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:high_energy_ray_collector>]]);
|
||||
|
||||
|
||||
@@ -231,3 +231,37 @@ mythasstrulyallofthem.build();
|
||||
|
||||
|
||||
|
||||
val mythassevenmoreofthem = RecipeBuilder.newBuilder("mythassevenmoreofthem","me_mythic_assembler",10);
|
||||
mythassevenmoreofthem.addEnergyPerTickInput(5000000);
|
||||
mythassevenmoreofthem.addFluidInput(<fluid:resonating_matter>*200);
|
||||
mythassevenmoreofthem.addFluidInput(<fluid:recursive_life_essence>*200);
|
||||
mythassevenmoreofthem.addItemInput(<contenttweaker:recursion_fragment_terra>);
|
||||
mythassevenmoreofthem.addItemInput(<contenttweaker:quasar_charged_dust>);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:precasia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:abyss_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:lelyetia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:barathos_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:creeponia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:deeplands_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:vox_ponds_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:mysterium_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:iromine_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:haven_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:candyland_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:crystevia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:gardencia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:celeve_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:borean_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:lunalus_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:runandor_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:ancient_cavern_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:immortallis_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:greckon_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:dustopia_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:vethea_garnet>*256);
|
||||
mythassevenmoreofthem.addItemOutput(<contenttweaker:shyrelands_garnet>*256);
|
||||
mythassevenmoreofthem.build();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
|
||||
|
||||
val ultimatecompression = RecipeBuilder.newBuilder("ultimatesingularitybaby","gravitational_collapser",200);
|
||||
ultimatecompression.addEnergyPerTickInput(1111111);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:666>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:656>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:657>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:658>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:659>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:660>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:654>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:652>);
|
||||
ultimatecompression.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
ultimatecompression.build();
|
||||
|
||||
|
||||
|
||||
val infinitycompression = RecipeBuilder.newBuilder("simplerinfinity","gravitational_collapser",100);
|
||||
infinitycompression.addEnergyPerTickInput(50000);
|
||||
infinitycompression.addItemInput(<contenttweaker:bright_matter>);
|
||||
infinitycompression.addItemOutput(<avaritia:resource:5>);
|
||||
infinitycompression.build();
|
||||
|
||||
|
||||
|
||||
val simplerinfinity2 = RecipeBuilder.newBuilder("simplerinfinity2","gravitational_collapser",100);
|
||||
simplerinfinity2.addEnergyPerTickInput(50000);
|
||||
simplerinfinity2.addItemInput(<contenttweaker:opalescent_matter>);
|
||||
simplerinfinity2.addItemOutput(<avaritia:resource:5>*4);
|
||||
simplerinfinity2.build();
|
||||
@@ -520,5 +520,57 @@ reci50.addItemInput(<thaumcraft:baubles:4>);
|
||||
reci50.addItemOutput(<thaumcraft:voidseer_charm>);
|
||||
reci50.build();
|
||||
|
||||
val reci51 = RecipeBuilder.newBuilder("inf51","arcane_autoinfuser",120);
|
||||
reci51.addEnergyPerTickInput(100);
|
||||
reci51.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "aversio"}]})*150);
|
||||
reci51.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "instrumentum"}]})*150);
|
||||
reci51.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "praecantatio"}]})*100);
|
||||
reci51.addItemInput(<contenttweaker:primordial_sliver>);
|
||||
reci51.addItemInput(<thaumadditions:mithminite_plate>*2);
|
||||
reci51.addItemInput(<thaumadditions:mithminite_handle>);
|
||||
reci51.addItemInput(<thaumadditions:mithminite_blade>);
|
||||
reci51.addItemOutput(<thaumadditions:mithminite_scythe>);
|
||||
reci51.build();
|
||||
|
||||
val reci52 = RecipeBuilder.newBuilder("inf52","arcane_autoinfuser",120);
|
||||
reci52.addEnergyPerTickInput(100);
|
||||
reci52.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "spiritus"}]})*150);
|
||||
reci52.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "instrumentum"}]})*100);
|
||||
reci52.addItemInput(<thaumadditions:mithminite_ingot>*2);
|
||||
reci52.addItemInput(<thaumadditions:mithminite_nugget>);
|
||||
reci52.addItemInput(<thaumadditions:mithminite_plate>);
|
||||
reci52.addItemOutput(<thaumadditions:mithminite_handle>);
|
||||
reci52.build();
|
||||
|
||||
val reci53 = RecipeBuilder.newBuilder("inf53","arcane_autoinfuser",120);
|
||||
reci53.addEnergyPerTickInput(100);
|
||||
reci53.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "aversio"}]})*250);
|
||||
reci53.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "infernum"}]})*150);
|
||||
reci53.addItemInput(<thaumadditions:adaminite_sword>);
|
||||
reci53.addItemInput(<thaumadditions:mithrillium_resonator>);
|
||||
reci53.addItemInput(<thaumadditions:mithminite_plate>*3);
|
||||
reci53.addItemOutput(<thaumadditions:mithminite_blade>);
|
||||
reci53.build();
|
||||
|
||||
val reci54 = RecipeBuilder.newBuilder("inf54","arcane_autoinfuser",120);
|
||||
reci54.addEnergyPerTickInput(100);
|
||||
reci54.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "aversio"}]})*150);
|
||||
reci54.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "infernum"}]})*90);
|
||||
reci54.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "praecantatio"}]})*70);
|
||||
reci54.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "metallum"}]})*60);
|
||||
reci54.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "draco"}]})*40);
|
||||
reci54.addItemInput(<thaumcraft:void_sword>);
|
||||
reci54.addItemInput(<contenttweaker:primordial_sliver>);
|
||||
reci54.addItemInput(<thaumadditions:adaminite_plate>*3);
|
||||
reci54.addItemOutput(<thaumadditions:adaminite_sword>);
|
||||
reci54.build();
|
||||
|
||||
|
||||
val reci55 = RecipeBuilder.newBuilder("inf55","arcane_autoinfuser",120);
|
||||
reci55.addEnergyPerTickInput(100);
|
||||
reci55.addItemInput(<contenttweaker:infernum_vis_condensate>);
|
||||
reci55.addItemInput(<draconicevolution:dragon_heart>);
|
||||
reci55.addItemInput(<contenttweaker:master_spell_focus>);
|
||||
reci55.addItemInput(<thaumadditions:mithminite_fabric>);
|
||||
reci55.addItemOutput(<contenttweaker:master_spell_infernum>);
|
||||
reci55.build();
|
||||
|
||||
@@ -13,9 +13,22 @@ plasmasedna.addItemInput(<advancedrocketry:crystal:2>*2);
|
||||
plasmasedna.addItemInput(<advancedrocketry:crystal:3>*2);
|
||||
plasmasedna.addItemInput(<advancedrocketry:crystal:4>*2);
|
||||
plasmasedna.addItemInput(<advancedrocketry:crystal:5>*2);
|
||||
plasmasedna.addItemInput(<minecraft:iron_ingot>);
|
||||
plasmasedna.addItemOutput(<contenttweaker:sednanite_ore>*5);
|
||||
plasmasedna.build();
|
||||
|
||||
val plasmasednasuperduper = RecipeBuilder.newBuilder("plasmasednasuperduper","plasmatic_condenser",20);
|
||||
plasmasednasuperduper.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:0>*2);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:1>*2);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:2>*2);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:3>*2);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:4>*2);
|
||||
plasmasednasuperduper.addItemInput(<advancedrocketry:crystal:5>*2);
|
||||
plasmasednasuperduper.addItemInput(<contenttweaker:opalescent_matter>);
|
||||
plasmasednasuperduper.addItemOutput(<contenttweaker:sednanite_ore>*1024);
|
||||
plasmasednasuperduper.build();
|
||||
|
||||
val plasmaeden = RecipeBuilder.newBuilder("plasmaeden","plasmatic_condenser",20);
|
||||
plasmaeden.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmaeden.addItemInput(<contenttweaker:eden_core>);
|
||||
@@ -122,6 +135,14 @@ plasmamyrmex.addItemInput(<contenttweaker:blue_matter>*24);
|
||||
plasmamyrmex.addItemOutput(<contenttweaker:myrmitite_ore>*10);
|
||||
plasmamyrmex.build();
|
||||
|
||||
val plasmamyrmexsuperduper = RecipeBuilder.newBuilder("plasmamyrmexsuperduper","plasmatic_condenser",20);
|
||||
plasmamyrmexsuperduper.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmamyrmexsuperduper.addItemInput(<advancedrocketry:aliensapling>*64);
|
||||
plasmamyrmexsuperduper.addItemInput(<aoa3:chitin>*16);
|
||||
plasmamyrmexsuperduper.addItemInput(<contenttweaker:opalescent_matter>);
|
||||
plasmamyrmexsuperduper.addItemOutput(<contenttweaker:myrmitite_ore>*1024);
|
||||
plasmamyrmexsuperduper.build();
|
||||
|
||||
val plasmacandyland1 = RecipeBuilder.newBuilder("plasmacandyland1","plasmatic_condenser",20);
|
||||
plasmacandyland1.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmacandyland1.addItemInput(<aoa3:sour_gummy>*64);
|
||||
@@ -244,6 +265,14 @@ plasmapixonia.addItemInput(<contenttweaker:universal_booster>);
|
||||
plasmapixonia.addItemOutput(<contenttweaker:ogerite_ore>*10);
|
||||
plasmapixonia.build();
|
||||
|
||||
val plasmapixoniasuperduper = RecipeBuilder.newBuilder("plasmapixoniasuperduper","plasmatic_condenser",20);
|
||||
plasmapixoniasuperduper.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmapixoniasuperduper.addItemInput(<contenttweaker:opalescent_matter>);
|
||||
plasmapixoniasuperduper.addItemInput(<contenttweaker:fragment_madness>);
|
||||
plasmapixoniasuperduper.addItemInput(<contenttweaker:universal_booster>);
|
||||
plasmapixoniasuperduper.addItemOutput(<contenttweaker:ogerite_ore>*1024);
|
||||
plasmapixoniasuperduper.build();
|
||||
|
||||
val plasmaapalachia = RecipeBuilder.newBuilder("plasmaapalachia","plasmatic_condenser",20);
|
||||
plasmaapalachia.addFluidInput(<fluid:dense_plasma>*160000);
|
||||
plasmaapalachia.addItemInput(<contenttweaker:apalachia_core>);
|
||||
|
||||
@@ -515,4 +515,14 @@ val quantumcondactual = RecipeBuilder.newBuilder("quantumcondactual", "quantum_c
|
||||
quantumcondactual.addEnergyPerTickInput(500000);
|
||||
quantumcondactual.addItemInput(<contenttweaker:actualizing_stone>*2048);
|
||||
quantumcondactual.addItemOutput(<avaritiaitem:self_actualizing_stone>);
|
||||
quantumcondactual.build();
|
||||
quantumcondactual.build();
|
||||
|
||||
|
||||
val quantumcondinsanium = RecipeBuilder.newBuilder("quantumcondinsanium", "quantum_condenser", 2);
|
||||
quantumcondinsanium.addEnergyPerTickInput(500000);
|
||||
quantumcondinsanium.addItemInput(<mysticalagriculture:master_infusion_crystal>);
|
||||
quantumcondinsanium.setChance(0.0);
|
||||
quantumcondinsanium.addItemInput(<contenttweaker:actualizing_stone>*1024);
|
||||
quantumcondinsanium.addItemOutput(<mysticalagradditions:insanium:0>);
|
||||
quantumcondinsanium.build();
|
||||
|
||||
|
||||
@@ -92,3 +92,35 @@ forgewyvhal1.setChance(0.0);
|
||||
forgewyvhal1.addItemInput(<ore:ingotFractalliteHalite>);
|
||||
forgewyvhal1.addFluidOutput(<fluid:fractallite_halite>*144);
|
||||
forgewyvhal1.build();
|
||||
|
||||
|
||||
val forgewyvactual1 = RecipeBuilder.newBuilder("forgewyvactual1","forge_of_the_wyvern",2);
|
||||
forgewyvactual1.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvactual1.setChance(0.0);
|
||||
forgewyvactual1.addItemInput(<contenttweaker:actualization_of_balance>);
|
||||
forgewyvactual1.addFluidOutput(<fluid:actualization_balance>*10);
|
||||
forgewyvactual1.build();
|
||||
|
||||
val forgewyvactual2 = RecipeBuilder.newBuilder("forgewyvactual2","forge_of_the_wyvern",2);
|
||||
forgewyvactual2.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvactual2.setChance(0.0);
|
||||
forgewyvactual2.addItemInput(<contenttweaker:actualization_of_hope>);
|
||||
forgewyvactual2.addFluidOutput(<fluid:actualization_hope>*10);
|
||||
forgewyvactual2.build();
|
||||
|
||||
val forgewyvactual3 = RecipeBuilder.newBuilder("forgewyvactual3","forge_of_the_wyvern",2);
|
||||
forgewyvactual3.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvactual3.setChance(0.0);
|
||||
forgewyvactual3.addItemInput(<contenttweaker:actualization_of_knowledge>);
|
||||
forgewyvactual3.addFluidOutput(<fluid:actualization_knowledge>*10);
|
||||
forgewyvactual3.build();
|
||||
|
||||
val forgewyvactual4 = RecipeBuilder.newBuilder("forgewyvactual4","forge_of_the_wyvern",2);
|
||||
forgewyvactual4.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
forgewyvactual4.setChance(0.0);
|
||||
forgewyvactual4.addItemInput(<contenttweaker:actualization_of_glory>);
|
||||
forgewyvactual4.addFluidOutput(<fluid:actualization_glory>*10);
|
||||
forgewyvactual4.build();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -18,6 +18,29 @@ mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:plasma_collider>,
|
||||
[null, <contenttweaker:draconic_machine_frame>, null, null, null, <contenttweaker:draconic_machine_frame>, null],
|
||||
[<contenttweaker:meatball_attuned_crystal>, null, null, <enderio:item_capacitor_stellar>, null, null, <contenttweaker:meatball_attuned_crystal>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:focused_plasma_collider>,
|
||||
[[<contenttweaker:shungite_casing>, <contenttweaker:shungite_casing>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:shungite_casing>, <contenttweaker:shungite_casing>],
|
||||
[<contenttweaker:shungite_casing>, <ore:ingotFractalliteHalite>, <contenttweaker:mythic_excavation_reactor>, <ore:ingotFractalliteHalite>, <contenttweaker:shungite_casing>],
|
||||
[<avaritiaitem:self_actualizing_stone>, <contenttweaker:mythic_excavation_reactor>, <contenttweaker:plasma_collider>, <contenttweaker:mythic_excavation_reactor>, <avaritiaitem:self_actualizing_stone>],
|
||||
[<contenttweaker:shungite_casing>, <ore:ingotFractalliteHalite>, <contenttweaker:mythic_excavation_reactor>, <ore:ingotFractalliteHalite>, <contenttweaker:shungite_casing>],
|
||||
[<contenttweaker:shungite_casing>, <contenttweaker:shungite_casing>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:shungite_casing>, <contenttweaker:shungite_casing>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:superfocused_plasma_collider>,
|
||||
[[<environmentaltech:modifier_strength>, <environmentaltech:modifier_strength>, <contenttweaker:freedomsteel_ingot>, <environmentaltech:modifier_strength>, <environmentaltech:modifier_strength>],
|
||||
[<environmentaltech:modifier_strength>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:stone_of_universal_balance>, <environmentaltech:modifier_strength>],
|
||||
[<contenttweaker:freedomsteel_ingot>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:focused_plasma_collider>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:freedomsteel_ingot>],
|
||||
[<environmentaltech:modifier_strength>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:stone_of_universal_balance>, <environmentaltech:modifier_strength>],
|
||||
[<environmentaltech:modifier_strength>, <environmentaltech:modifier_strength>, <contenttweaker:freedomsteel_ingot>, <environmentaltech:modifier_strength>, <environmentaltech:modifier_strength>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:hyperfocused_plasma_collider>,
|
||||
[[<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:hyperuranon_actualizing_fabrial>, <forge:bucketfilled>.withTag({FluidName: "recursive_computing_matter", Amount: 1000}), <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:hyperuranon_actualizing_fabrial>],
|
||||
[<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:hungering_machine_case>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:hyperuranon_actualizing_fabrial>],
|
||||
[<forge:bucketfilled>.withTag({FluidName: "recursive_computing_matter", Amount: 1000}), <contenttweaker:hungering_machine_case>, <contenttweaker:superfocused_plasma_collider>, <contenttweaker:hungering_machine_case>, <forge:bucketfilled>.withTag({FluidName: "recursive_computing_matter", Amount: 1000})],
|
||||
[<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:hungering_machine_case>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:hyperuranon_actualizing_fabrial>],
|
||||
[<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:hyperuranon_actualizing_fabrial>, <forge:bucketfilled>.withTag({FluidName: "recursive_computing_matter", Amount: 1000}), <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:hyperuranon_actualizing_fabrial>]]);
|
||||
|
||||
|
||||
val betterfluidfusion1 = RecipeBuilder.newBuilder("betterfluidfusion1","linear_fusion_accelerator",10);
|
||||
betterfluidfusion1.addEnergyPerTickInput(1000000);
|
||||
betterfluidfusion1.addFluidInput(<fluid:hydrogen>*1000);
|
||||
|
||||
+200
-10
@@ -2,65 +2,228 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:water>*1, <fluid:twilight_fire>*1, <fluid:nightmare_binder_hydrogen>*1000, <fluid:nightmare_binder_oxygen>*500]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:water>*1, <fluid:recursive_computing_matter>*1, <fluid:hyperuranion_binder_hydrogen>*1000, <fluid:hyperuranion_binder_oxygen>*500]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:water>*1, <fluid:whisper_of_ahkrast_korvalain>*1, <fluid:warren_binder_hydrogen>*1000, <fluid:warren_binder_oxygen>*500]);
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:hot_spring_water>*1, <fluid:twilight_fire>*1, <fluid:nightmare_binder_deuterium>*500, <fluid:nightmare_binder_tritium>*500]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:hot_spring_water>*1, <fluid:recursive_computing_matter>*1, <fluid:hyperuranion_binder_deuterium>*500, <fluid:hyperuranion_binder_tritium>*500]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:hot_spring_water>*1, <fluid:whisper_of_ahkrast_korvalain>*1, <fluid:warren_binder_deuterium>*500, <fluid:warren_binder_tritium>*500]);
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltenabyssalnite>*1, <fluid:twilight_fire>*1, <fluid:nightmare_binder_iron>*1000, <fluid:nightmare_binder_nickel>*1000]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltenabyssalnite>*1, <fluid:recursive_computing_matter>*1, <fluid:hyperuranion_binder_iron>*1000, <fluid:hyperuranion_binder_nickel>*1000]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltenabyssalnite>*1, <fluid:whisper_of_ahkrast_korvalain>*1, <fluid:warren_binder_iron>*1000, <fluid:warren_binder_nickel>*1000]);
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltendreadium>*1, <fluid:twilight_fire>*1, <fluid:nightmare_binder_lead>*1000, <fluid:nightmare_binder_mercury>*1000]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltendreadium>*1, <fluid:recursive_computing_matter>*1, <fluid:hyperuranion_binder_lead>*1000, <fluid:hyperuranion_binder_mercury>*1000]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:moltendreadium>*1, <fluid:whisper_of_ahkrast_korvalain>*1, <fluid:warren_binder_lead>*1000, <fluid:warren_binder_mercury>*1000]);
|
||||
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:knightmetal>*1, <fluid:twilight_fire>*1, <fluid:nightmare_binder_tin>*1000, null]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:knightmetal>*1, <fluid:recursive_computing_matter>*1, <fluid:hyperuranion_binder_tin>*1000, null]);
|
||||
mods.nuclearcraft.chemical_reactor.addRecipe([<fluid:knightmetal>*1, <fluid:whisper_of_ahkrast_korvalain>*1, <fluid:warren_binder_tin>*1000, null]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:sednanite_stabilizer>,
|
||||
[[<advancedrocketry:crystal:0>, <advancedrocketry:crystal:1>, <advancedrocketry:crystal:2>],
|
||||
[<gendustry:honey_comb:14009>, <extendedcrafting:singularity_custom:630>, <gendustry:honey_comb:14009>],
|
||||
[<advancedrocketry:crystal:5>, <advancedrocketry:crystal:4>, <advancedrocketry:crystal:3>]]);
|
||||
|
||||
val nighmareelectr1 = RecipeBuilder.newBuilder("nighmareelectr1","nightmare_electrolyzer",1);
|
||||
val nighmareelectr1 = RecipeBuilder.newBuilder("nighmareelectr1","nightmare_electrolyzer",2);
|
||||
nighmareelectr1.addFluidInput(<fluid:nightmare_binder_hydrogen>*1);
|
||||
nighmareelectr1.addFluidOutput(<fluid:hydrogen>*32000);
|
||||
nighmareelectr1.build();
|
||||
|
||||
val nighmareelectr2 = RecipeBuilder.newBuilder("nighmareelectr2","nightmare_electrolyzer",1);
|
||||
val nighmareelectr1a = RecipeBuilder.newBuilder("nighmareelectr1a","nightmare_electrolyzer",2);
|
||||
nighmareelectr1a.addFluidInput(<fluid:hyperuranion_binder_hydrogen>*1);
|
||||
nighmareelectr1a.addFluidOutput(<fluid:hydrogen>*320000);
|
||||
nighmareelectr1a.build();
|
||||
|
||||
val nighmareelectr1b = RecipeBuilder.newBuilder("nighmareelectr1b","nightmare_electrolyzer",2);
|
||||
nighmareelectr1b.addFluidInput(<fluid:warren_binder_hydrogen>*1);
|
||||
nighmareelectr1b.addFluidOutput(<fluid:hydrogen>*3200000);
|
||||
nighmareelectr1b.build();
|
||||
|
||||
val recurrentnightmare1 = RecipeBuilder.newBuilder("recurrentnightmare1","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare1.addFluidInput(<fluid:warren_binder_hydrogen>*656);
|
||||
recurrentnightmare1.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare1.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647}));
|
||||
recurrentnightmare1.build();
|
||||
|
||||
|
||||
val nighmareelectr2 = RecipeBuilder.newBuilder("nighmareelectr2","nightmare_electrolyzer",2);
|
||||
nighmareelectr2.addFluidInput(<fluid:nightmare_binder_oxygen>*1);
|
||||
nighmareelectr2.addFluidOutput(<fluid:oxygen>*32000);
|
||||
nighmareelectr2.build();
|
||||
|
||||
val nighmareelectr3 = RecipeBuilder.newBuilder("nighmareelectr3","nightmare_electrolyzer",1);
|
||||
val nighmareelectr2a = RecipeBuilder.newBuilder("nighmareelectr2a","nightmare_electrolyzer",2);
|
||||
nighmareelectr2a.addFluidInput(<fluid:hyperuranion_binder_oxygen>*1);
|
||||
nighmareelectr2a.addFluidOutput(<fluid:oxygen>*320000);
|
||||
nighmareelectr2a.build();
|
||||
|
||||
val nighmareelectr2b = RecipeBuilder.newBuilder("nighmareelectr2b","nightmare_electrolyzer",2);
|
||||
nighmareelectr2b.addFluidInput(<fluid:warren_binder_oxygen>*1);
|
||||
nighmareelectr2b.addFluidOutput(<fluid:oxygen>*3200000);
|
||||
nighmareelectr2b.build();
|
||||
|
||||
val recurrentnightmare2 = RecipeBuilder.newBuilder("recurrentnightmare2","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare2.addFluidInput(<fluid:warren_binder_oxygen>*656);
|
||||
recurrentnightmare2.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare2.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "oxygen", Amount: 2147483647}));
|
||||
recurrentnightmare2.build();
|
||||
|
||||
|
||||
val nighmareelectr3 = RecipeBuilder.newBuilder("nighmareelectr3","nightmare_electrolyzer",2);
|
||||
nighmareelectr3.addFluidInput(<fluid:nightmare_binder_deuterium>*1);
|
||||
nighmareelectr3.addFluidOutput(<fluid:deuterium>*32000);
|
||||
nighmareelectr3.build();
|
||||
|
||||
val nighmareelectr4 = RecipeBuilder.newBuilder("nighmareelectr4","nightmare_electrolyzer",1);
|
||||
val nighmareelectr3a = RecipeBuilder.newBuilder("nighmareelectr3a","nightmare_electrolyzer",2);
|
||||
nighmareelectr3a.addFluidInput(<fluid:hyperuranion_binder_deuterium>*1);
|
||||
nighmareelectr3a.addFluidOutput(<fluid:deuterium>*320000);
|
||||
nighmareelectr3a.build();
|
||||
|
||||
val nighmareelectr3b = RecipeBuilder.newBuilder("nighmareelectr3b","nightmare_electrolyzer",2);
|
||||
nighmareelectr3b.addFluidInput(<fluid:warren_binder_deuterium>*1);
|
||||
nighmareelectr3b.addFluidOutput(<fluid:deuterium>*3200000);
|
||||
nighmareelectr3b.build();
|
||||
|
||||
val recurrentnightmare3 = RecipeBuilder.newBuilder("recurrentnightmare3","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare3.addFluidInput(<fluid:warren_binder_deuterium>*656);
|
||||
recurrentnightmare3.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare3.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "deuterium", Amount: 2147483647}));
|
||||
recurrentnightmare3.build();
|
||||
|
||||
|
||||
val nighmareelectr4 = RecipeBuilder.newBuilder("nighmareelectr4","nightmare_electrolyzer",2);
|
||||
nighmareelectr4.addFluidInput(<fluid:nightmare_binder_tritium>*1);
|
||||
nighmareelectr4.addFluidOutput(<fluid:tritium>*32000);
|
||||
nighmareelectr4.build();
|
||||
|
||||
val nighmareelectr5 = RecipeBuilder.newBuilder("nighmareelectr5","nightmare_electrolyzer",1);
|
||||
val nighmareelectr4a = RecipeBuilder.newBuilder("nighmareelectr4a","nightmare_electrolyzer",2);
|
||||
nighmareelectr4a.addFluidInput(<fluid:hyperuranion_binder_tritium>*1);
|
||||
nighmareelectr4a.addFluidOutput(<fluid:tritium>*320000);
|
||||
nighmareelectr4a.build();
|
||||
|
||||
val nighmareelectr4b = RecipeBuilder.newBuilder("nighmareelectr4b","nightmare_electrolyzer",2);
|
||||
nighmareelectr4b.addFluidInput(<fluid:warren_binder_tritium>*1);
|
||||
nighmareelectr4b.addFluidOutput(<fluid:tritium>*3200000);
|
||||
nighmareelectr4b.build();
|
||||
|
||||
val recurrentnightmare4 = RecipeBuilder.newBuilder("recurrentnightmare4","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare4.addFluidInput(<fluid:warren_binder_tritium>*656);
|
||||
recurrentnightmare4.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare4.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "tritium", Amount: 2147483647}));
|
||||
recurrentnightmare4.build();
|
||||
|
||||
|
||||
val nighmareelectr5 = RecipeBuilder.newBuilder("nighmareelectr5","nightmare_electrolyzer",2);
|
||||
nighmareelectr5.addFluidInput(<fluid:nightmare_binder_iron>*1);
|
||||
nighmareelectr5.addFluidOutput(<fluid:iron>*32000);
|
||||
nighmareelectr5.build();
|
||||
|
||||
val nighmareelectr6 = RecipeBuilder.newBuilder("nighmareelectr6","nightmare_electrolyzer",1);
|
||||
val nighmareelectr5a = RecipeBuilder.newBuilder("nighmareelectr5a","nightmare_electrolyzer",2);
|
||||
nighmareelectr5a.addFluidInput(<fluid:hyperuranion_binder_iron>*1);
|
||||
nighmareelectr5a.addFluidOutput(<fluid:iron>*320000);
|
||||
nighmareelectr5a.build();
|
||||
|
||||
val nighmareelectr5b = RecipeBuilder.newBuilder("nighmareelectr5b","nightmare_electrolyzer",2);
|
||||
nighmareelectr5b.addFluidInput(<fluid:warren_binder_iron>*1);
|
||||
nighmareelectr5b.addFluidOutput(<fluid:iron>*3200000);
|
||||
nighmareelectr5b.build();
|
||||
|
||||
val recurrentnightmare5 = RecipeBuilder.newBuilder("recurrentnightmare5","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare5.addFluidInput(<fluid:warren_binder_iron>*656);
|
||||
recurrentnightmare5.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare5.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "iron", Amount: 2147483647}));
|
||||
recurrentnightmare5.build();
|
||||
|
||||
|
||||
val nighmareelectr6 = RecipeBuilder.newBuilder("nighmareelectr6","nightmare_electrolyzer",2);
|
||||
nighmareelectr6.addFluidInput(<fluid:nightmare_binder_nickel>*1);
|
||||
nighmareelectr6.addFluidOutput(<fluid:nickel>*32000);
|
||||
nighmareelectr6.build();
|
||||
|
||||
val nighmareelectr7 = RecipeBuilder.newBuilder("nighmareelectr7","nightmare_electrolyzer",1);
|
||||
val nighmareelectr6a = RecipeBuilder.newBuilder("nighmareelectr6a","nightmare_electrolyzer",2);
|
||||
nighmareelectr6a.addFluidInput(<fluid:hyperuranion_binder_nickel>*1);
|
||||
nighmareelectr6a.addFluidOutput(<fluid:nickel>*320000);
|
||||
nighmareelectr6a.build();
|
||||
|
||||
val nighmareelectr6b = RecipeBuilder.newBuilder("nighmareelectr6b","nightmare_electrolyzer",2);
|
||||
nighmareelectr6b.addFluidInput(<fluid:warren_binder_nickel>*1);
|
||||
nighmareelectr6b.addFluidOutput(<fluid:nickel>*3200000);
|
||||
nighmareelectr6b.build();
|
||||
|
||||
val recurrentnightmare6 = RecipeBuilder.newBuilder("recurrentnightmare6","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare6.addFluidInput(<fluid:warren_binder_nickel>*656);
|
||||
recurrentnightmare6.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare6.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "nickel", Amount: 2147483647}));
|
||||
recurrentnightmare6.build();
|
||||
|
||||
|
||||
val nighmareelectr7 = RecipeBuilder.newBuilder("nighmareelectr7","nightmare_electrolyzer",2);
|
||||
nighmareelectr7.addFluidInput(<fluid:nightmare_binder_lead>*1);
|
||||
nighmareelectr7.addFluidOutput(<fluid:lead>*32000);
|
||||
nighmareelectr7.build();
|
||||
|
||||
val nighmareelectr8 = RecipeBuilder.newBuilder("nighmareelectr8","nightmare_electrolyzer",1);
|
||||
val nighmareelectr7a = RecipeBuilder.newBuilder("nighmareelectr7a","nightmare_electrolyzer",2);
|
||||
nighmareelectr7a.addFluidInput(<fluid:hyperuranion_binder_lead>*1);
|
||||
nighmareelectr7a.addFluidOutput(<fluid:lead>*320000);
|
||||
nighmareelectr7a.build();
|
||||
|
||||
val nighmareelectr7b = RecipeBuilder.newBuilder("nighmareelectr7b","nightmare_electrolyzer",2);
|
||||
nighmareelectr7b.addFluidInput(<fluid:warren_binder_lead>*1);
|
||||
nighmareelectr7b.addFluidOutput(<fluid:lead>*3200000);
|
||||
nighmareelectr7b.build();
|
||||
|
||||
val recurrentnightmare7 = RecipeBuilder.newBuilder("recurrentnightmare7","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare7.addFluidInput(<fluid:warren_binder_lead>*656);
|
||||
recurrentnightmare7.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare7.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "lead", Amount: 2147483647}));
|
||||
recurrentnightmare7.build();
|
||||
|
||||
|
||||
val nighmareelectr8 = RecipeBuilder.newBuilder("nighmareelectr8","nightmare_electrolyzer",2);
|
||||
nighmareelectr8.addFluidInput(<fluid:nightmare_binder_mercury>*1);
|
||||
nighmareelectr8.addFluidOutput(<fluid:fluidmercury>*32000);
|
||||
nighmareelectr8.build();
|
||||
|
||||
val nighmareelectr9 = RecipeBuilder.newBuilder("nighmareelectr9","nightmare_electrolyzer",1);
|
||||
val nighmareelectr8a = RecipeBuilder.newBuilder("nighmareelectr8a","nightmare_electrolyzer",2);
|
||||
nighmareelectr8a.addFluidInput(<fluid:hyperuranion_binder_mercury>*1);
|
||||
nighmareelectr8a.addFluidOutput(<fluid:fluidmercury>*320000);
|
||||
nighmareelectr8a.build();
|
||||
|
||||
val nighmareelectr8b = RecipeBuilder.newBuilder("nighmareelectr8b","nightmare_electrolyzer",2);
|
||||
nighmareelectr8b.addFluidInput(<fluid:warren_binder_mercury>*1);
|
||||
nighmareelectr8b.addFluidOutput(<fluid:fluidmercury>*3200000);
|
||||
nighmareelectr8b.build();
|
||||
|
||||
val recurrentnightmare8 = RecipeBuilder.newBuilder("recurrentnightmare8","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare8.addFluidInput(<fluid:warren_binder_mercury>*656);
|
||||
recurrentnightmare8.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare8.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "fluidmercury", Amount: 2147483647}));
|
||||
recurrentnightmare8.build();
|
||||
|
||||
|
||||
val nighmareelectr9 = RecipeBuilder.newBuilder("nighmareelectr9","nightmare_electrolyzer",2);
|
||||
nighmareelectr9.addFluidInput(<fluid:nightmare_binder_tin>*1);
|
||||
nighmareelectr9.addFluidOutput(<fluid:tin>*32000);
|
||||
nighmareelectr9.build();
|
||||
|
||||
val nighmareelectr9a = RecipeBuilder.newBuilder("nighmareelectr9a","nightmare_electrolyzer",2);
|
||||
nighmareelectr9a.addFluidInput(<fluid:hyperuranion_binder_tin>*1);
|
||||
nighmareelectr9a.addFluidOutput(<fluid:tin>*320000);
|
||||
nighmareelectr9a.build();
|
||||
|
||||
val nighmareelectr9b = RecipeBuilder.newBuilder("nighmareelectr9b","nightmare_electrolyzer",2);
|
||||
nighmareelectr9b.addFluidInput(<fluid:warren_binder_tin>*1);
|
||||
nighmareelectr9b.addFluidOutput(<fluid:tin>*3200000);
|
||||
nighmareelectr9b.build();
|
||||
|
||||
val recurrentnightmare9 = RecipeBuilder.newBuilder("recurrentnightmare9","recurrent_nightmare_synthesizer",2);
|
||||
recurrentnightmare9.addFluidInput(<fluid:warren_binder_tin>*656);
|
||||
recurrentnightmare9.addItemInput(<industrialforegoing:black_hole_tank>);
|
||||
recurrentnightmare9.addItemOutput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "tin", Amount: 2147483647}));
|
||||
recurrentnightmare9.build();
|
||||
|
||||
|
||||
val collapserstar = RecipeBuilder.newBuilder("collapserstar","relativistic_collapser",1000);
|
||||
collapserstar.addEnergyPerTickInput(70000000);
|
||||
collapserstar.addItemInput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647}));
|
||||
@@ -86,4 +249,31 @@ collapserhole.addItemInput(<industrialforegoing:black_hole_tank>.withTag({FluidN
|
||||
collapserhole.addItemInput(<industrialforegoing:black_hole_tank>.withTag({FluidName: "lead", Amount: 2147483647}));
|
||||
collapserhole.addItemInput(<contenttweaker:everlasting_fusor>);
|
||||
collapserhole.addItemOutput(<contenttweaker:black_hole_core>);
|
||||
collapserhole.build();
|
||||
collapserhole.build();
|
||||
|
||||
val collapserwhite = RecipeBuilder.newBuilder("collapserwhite","relativistic_collapser",1000);
|
||||
collapserwhite.addEnergyPerTickInput(70000000);
|
||||
collapserwhite.addItemInput(<bloodmagic:blood_tank:4>.withTag({Fluid: {FluidName: "fluctuatite", Amount: 256000}}));
|
||||
collapserwhite.addItemInput(<bloodmagic:blood_tank:4>.withTag({Fluid: {FluidName: "vityte", Amount: 256000}}));
|
||||
collapserwhite.addItemInput(<bloodmagic:blood_tank:4>.withTag({Fluid: {FluidName: "candyte", Amount: 256000}}));
|
||||
collapserwhite.addItemInput(<bloodmagic:blood_tank:4>.withTag({Fluid: {FluidName: "brightsteel_alloy", Amount: 256000}}));
|
||||
collapserwhite.addItemInput(<contenttweaker:everlasting_fusor>);
|
||||
collapserwhite.addItemOutput(<contenttweaker:white_hole_core>);
|
||||
collapserwhite.build();
|
||||
|
||||
|
||||
val collapserquasar = RecipeBuilder.newBuilder("collapserquasar","relativistic_collapser",1000);
|
||||
collapserquasar.addEnergyPerTickInput(70000000);
|
||||
collapserquasar.addItemInput(<contenttweaker:star_core>*1024);
|
||||
collapserquasar.addItemInput(<contenttweaker:pulsar_core>*128);
|
||||
collapserquasar.addItemInput(<contenttweaker:black_hole_core>*64);
|
||||
collapserquasar.addItemOutput(<contenttweaker:quasar_core>);
|
||||
collapserquasar.build();
|
||||
|
||||
|
||||
val collapsergalactic = RecipeBuilder.newBuilder("collapsergalactic","relativistic_collapser",1000);
|
||||
collapsergalactic.addEnergyPerTickInput(70000000);
|
||||
collapsergalactic.addItemInput(<bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "galactic_plasma", Amount: 65336000}}));
|
||||
collapsergalactic.addItemInput(<contenttweaker:everlasting_fusor>);
|
||||
collapsergalactic.addItemOutput(<contenttweaker:galactic_core>);
|
||||
collapsergalactic.build();
|
||||
@@ -712,7 +712,54 @@ hypergrowth96.build();
|
||||
|
||||
|
||||
|
||||
|
||||
val hypergrowth97 = RecipeBuilder.newBuilder("hypergrowth97","hypergrowth_insolator",10);
|
||||
hypergrowth97.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth97.addItemInput(<aoa3:bubble_berry_seeds>);
|
||||
hypergrowth97.setChance(0.0);
|
||||
hypergrowth97.addItemOutput(<aoa3:bubble_berries>*64);
|
||||
hypergrowth97.build();
|
||||
|
||||
val hypergrowth98 = RecipeBuilder.newBuilder("hypergrowth98","hypergrowth_insolator",10);
|
||||
hypergrowth98.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth98.addItemInput(<aoa3:heart_fruit_seeds>);
|
||||
hypergrowth98.setChance(0.0);
|
||||
hypergrowth98.addItemOutput(<aoa3:heart_fruit>*64);
|
||||
hypergrowth98.build();
|
||||
|
||||
val hypergrowth99 = RecipeBuilder.newBuilder("hypergrowth99","hypergrowth_insolator",10);
|
||||
hypergrowth99.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth99.addItemInput(<aoa3:holly_top_seeds>);
|
||||
hypergrowth99.setChance(0.0);
|
||||
hypergrowth99.addItemOutput(<aoa3:holly_top_petals>*64);
|
||||
hypergrowth99.build();
|
||||
|
||||
val hypergrowth100 = RecipeBuilder.newBuilder("hypergrowth100","hypergrowth_insolator",10);
|
||||
hypergrowth100.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth100.addItemInput(<divinerpg:tomato_seeds>);
|
||||
hypergrowth100.setChance(0.0);
|
||||
hypergrowth100.addItemOutput(<divinerpg:tomato>*64);
|
||||
hypergrowth100.build();
|
||||
|
||||
val hypergrowth101 = RecipeBuilder.newBuilder("hypergrowth101","hypergrowth_insolator",10);
|
||||
hypergrowth101.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth101.addItemInput(<divinerpg:marsine_seeds>);
|
||||
hypergrowth101.setChance(0.0);
|
||||
hypergrowth101.addItemOutput(<divinerpg:marsine>*64);
|
||||
hypergrowth101.build();
|
||||
|
||||
val hypergrowth102 = RecipeBuilder.newBuilder("hypergrowth102","hypergrowth_insolator",10);
|
||||
hypergrowth102.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth102.addItemInput(<divinerpg:white_mushroom_seeds>);
|
||||
hypergrowth102.setChance(0.0);
|
||||
hypergrowth102.addItemOutput(<divinerpg:white_mushroom>*64);
|
||||
hypergrowth102.build();
|
||||
|
||||
val hypergrowth103 = RecipeBuilder.newBuilder("hypergrowth103","hypergrowth_insolator",10);
|
||||
hypergrowth103.addFluidInput(<fluid:hot_spring_water>*100);
|
||||
hypergrowth103.addItemInput(<divinerpg:moonbulb_seeds>);
|
||||
hypergrowth103.setChance(0.0);
|
||||
hypergrowth103.addItemOutput(<divinerpg:moonbulb>*64);
|
||||
hypergrowth103.build();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ val superbee_abyssal = RecipeBuilder.newBuilder("superbee_abyssal","sacred_cinde
|
||||
val superbee_leaden = RecipeBuilder.newBuilder("superbee_leaden","sacred_cinders_apiary",10); superbee_leaden.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.lead", UID0: "extrabees.species.lead"}]}})); superbee_leaden.setChance(0.0); superbee_leaden.addFluidInput(<fluid:liquid_sunshine>*25); superbee_leaden.addItemOutput(<extrabees:honey_comb:37>*64); superbee_leaden.addItemOutput(<extrabees:honey_comb:11>*64); superbee_leaden.build();
|
||||
val superbee_galvanized = RecipeBuilder.newBuilder("superbee_galvanized","sacred_cinders_apiary",10); superbee_galvanized.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.zinc", UID0: "extrabees.species.zinc"}]}})); superbee_galvanized.setChance(0.0); superbee_galvanized.addFluidInput(<fluid:liquid_sunshine>*25); superbee_galvanized.addItemOutput(<extrabees:honey_comb:40>*64); superbee_galvanized.addItemOutput(<extrabees:honey_comb:11>*64); superbee_galvanized.build();
|
||||
val superbee_impregnable = RecipeBuilder.newBuilder("superbee_impregnable","sacred_cinders_apiary",10); superbee_impregnable.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.titanium", UID0: "extrabees.species.titanium"}]}})); superbee_impregnable.setChance(0.0); superbee_impregnable.addFluidInput(<fluid:liquid_sunshine>*25); superbee_impregnable.addItemOutput(<extrabees:honey_comb:41>*64); superbee_impregnable.addItemOutput(<extrabees:honey_comb:11>*64); superbee_impregnable.build();
|
||||
val superbee_invincible = RecipeBuilder.newBuilder("superbee_invincible","sacred_cinders_apiary",10); superbee_invincible.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.tungsten", UID0: "extrabees.species.tungsten"}]}})); superbee_invincible.setChance(0.0); superbee_invincible.addFluidInput(<fluid:liquid_sunshine>*25); superbee_invincible.addItemOutput(<extrabees:honey_comb:42>*64); superbee_invincible.addItemOutput(<extrabees:honey_comb:11>*64); superbee_invincible.build();
|
||||
val superbee_invincible = RecipeBuilder.newBuilder("superbee_invincible","sacred_cinders_apiary",10); superbee_invincible.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.tungstate", UID0: "extrabees.species.tungstate"}]}})); superbee_invincible.setChance(0.0); superbee_invincible.addFluidInput(<fluid:liquid_sunshine>*25); superbee_invincible.addItemOutput(<extrabees:honey_comb:42>*64); superbee_invincible.addItemOutput(<extrabees:honey_comb:11>*64); superbee_invincible.build();
|
||||
val superbee_valuable = RecipeBuilder.newBuilder("superbee_valuable","sacred_cinders_apiary",10); superbee_valuable.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.platinum", UID0: "extrabees.species.platinum"}]}})); superbee_valuable.setChance(0.0); superbee_valuable.addFluidInput(<fluid:liquid_sunshine>*25); superbee_valuable.addItemOutput(<extrabees:honey_comb:45>*64); superbee_valuable.addItemOutput(<extrabees:honey_comb:11>*64); superbee_valuable.build();
|
||||
val superbee_lapis = RecipeBuilder.newBuilder("superbee_lapis","sacred_cinders_apiary",10); superbee_lapis.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.lapis", UID0: "extrabees.species.lapis"}]}})); superbee_lapis.setChance(0.0); superbee_lapis.addFluidInput(<fluid:liquid_sunshine>*25); superbee_lapis.addItemOutput(<extrabees:honey_comb:46>*64); superbee_lapis.addItemOutput(<extrabees:honey_comb:11>*64); superbee_lapis.build();
|
||||
val superbee_sodalite = RecipeBuilder.newBuilder("superbee_sodalite","sacred_cinders_apiary",10); superbee_sodalite.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "extrabees.species.sodalite", UID0: "extrabees.species.sodalite"}]}})); superbee_sodalite.setChance(0.0); superbee_sodalite.addFluidInput(<fluid:liquid_sunshine>*25); superbee_sodalite.addItemOutput(<extrabees:honey_comb:47>*64); superbee_sodalite.addItemOutput(<extrabees:honey_comb:11>*64); superbee_sodalite.build();
|
||||
@@ -127,7 +127,7 @@ val superbee_trinity = RecipeBuilder.newBuilder("superbee_trinity","sacred_cinde
|
||||
val superbee_formic = RecipeBuilder.newBuilder("superbee_formic","sacred_cinders_apiary",10); superbee_formic.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Formic", UID0: "gendustry.bee.Formic"}]}})); superbee_formic.setChance(0.0); superbee_formic.addFluidInput(<fluid:liquid_sunshine>*25); superbee_formic.addItemOutput(<gendustry:honey_comb:13340>*64); superbee_formic.addItemOutput(<forestry:bee_combs:0>*64); superbee_formic.build();
|
||||
val superbee_gorgon = RecipeBuilder.newBuilder("superbee_gorgon","sacred_cinders_apiary",10); superbee_gorgon.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Gorgon", UID0: "gendustry.bee.Gorgon"}]}})); superbee_gorgon.setChance(0.0); superbee_gorgon.addFluidInput(<fluid:liquid_sunshine>*25); superbee_gorgon.addItemOutput(<gendustry:honey_comb:13341>*64); superbee_gorgon.addItemOutput(<forestry:bee_combs:0>*64); superbee_gorgon.build();
|
||||
val superbee_balanced = RecipeBuilder.newBuilder("superbee_balanced","sacred_cinders_apiary",10); superbee_balanced.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Balanced", UID0: "gendustry.bee.Balanced"}]}})); superbee_balanced.setChance(0.0); superbee_balanced.addFluidInput(<fluid:liquid_sunshine>*25); superbee_balanced.addItemOutput(<gendustry:honey_comb:13349>*64); superbee_balanced.addItemOutput(<minecraft:clay_ball>*64); superbee_balanced.build();
|
||||
val superbee_radiant = RecipeBuilder.newBuilder("superbee_radiant","sacred_cinders_apiary",10); superbee_radiant.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendusty.bee.Radiant", UID0: "gendusty.bee.Radiant"}]}})); superbee_radiant.setChance(0.0); superbee_radiant.addFluidInput(<fluid:liquid_sunshine>*25); superbee_radiant.addItemOutput(<gendustry:honey_comb:13369>*64); superbee_radiant.addItemOutput(<gendustry:honey_comb:13369>*64); superbee_radiant.build();
|
||||
val superbee_radiant = RecipeBuilder.newBuilder("superbee_radiant","sacred_cinders_apiary",10); superbee_radiant.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Radiant", UID0: "gendustry.bee.Radiant"}]}})); superbee_radiant.setChance(0.0); superbee_radiant.addFluidInput(<fluid:liquid_sunshine>*25); superbee_radiant.addItemOutput(<gendustry:honey_comb:13369>*64); superbee_radiant.addItemOutput(<gendustry:honey_comb:13369>*64); superbee_radiant.build();
|
||||
val superbee_shyreempire = RecipeBuilder.newBuilder("superbee_shyreempire","sacred_cinders_apiary",10); superbee_shyreempire.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Shyre", UID0: "gendustry.bee.Shyre"}]}})); superbee_shyreempire.setChance(0.0); superbee_shyreempire.addFluidInput(<fluid:liquid_sunshine>*25); superbee_shyreempire.addItemOutput(<gendustry:honey_comb:13370>*64); superbee_shyreempire.addItemOutput(<forestry:bee_combs:0>*64); superbee_shyreempire.build();
|
||||
val superbee_twilighthorde = RecipeBuilder.newBuilder("superbee_twilighthorde","sacred_cinders_apiary",10); superbee_twilighthorde.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Twilight", UID0: "gendustry.bee.Twilight"}]}})); superbee_twilighthorde.setChance(0.0); superbee_twilighthorde.addFluidInput(<fluid:liquid_sunshine>*25); superbee_twilighthorde.addItemOutput(<gendustry:honey_comb:13371>*64); superbee_twilighthorde.addItemOutput(<gendustry:honey_comb:13379>*64); superbee_twilighthorde.build();
|
||||
val superbee_uraniumrad = RecipeBuilder.newBuilder("superbee_uraniumrad","sacred_cinders_apiary",10); superbee_uraniumrad.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Uranium", UID0: "gendustry.bee.Uranium"}]}})); superbee_uraniumrad.setChance(0.0); superbee_uraniumrad.addFluidInput(<fluid:liquid_sunshine>*25); superbee_uraniumrad.addItemOutput(<gendustry:honey_comb:14001>*64); superbee_uraniumrad.addItemOutput(<gendustry:honey_comb:14001>*64); superbee_uraniumrad.build();
|
||||
@@ -172,9 +172,16 @@ val superbee_amped = RecipeBuilder.newBuilder("superbee_amped","sacred_cinders_a
|
||||
val superbee_firey = RecipeBuilder.newBuilder("superbee_firey","sacred_cinders_apiary",10); superbee_firey.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesFirey", UID0: "magicbees.speciesFirey"}]}})); superbee_firey.setChance(0.0); superbee_firey.addFluidInput(<fluid:liquid_sunshine>*25); superbee_firey.addItemOutput(<magicbees:beecomb:12>*64); superbee_firey.addItemOutput(<forestry:bee_combs:0>*64); superbee_firey.build();
|
||||
val superbee_rockin = RecipeBuilder.newBuilder("superbee_rockin","sacred_cinders_apiary",10); superbee_rockin.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesTERocking", UID0: "magicbees.speciesTERocking"}]}})); superbee_rockin.setChance(0.0); superbee_rockin.addFluidInput(<fluid:liquid_sunshine>*25); superbee_rockin.addItemOutput(<magicbees:beecomb:14>*64); superbee_rockin.addItemOutput(<thermalfoundation:material:1027>*64); superbee_rockin.build();
|
||||
val superbee_watery = RecipeBuilder.newBuilder("superbee_watery","sacred_cinders_apiary",10); superbee_watery.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesWatery", UID0: "magicbees.speciesWatery"}]}})); superbee_watery.setChance(0.0); superbee_watery.addFluidInput(<fluid:liquid_sunshine>*25); superbee_watery.addItemOutput(<magicbees:beecomb:13>*64); superbee_watery.addItemOutput(<forestry:bee_combs:0>*64); superbee_watery.build();
|
||||
val superbee_gelid = RecipeBuilder.newBuilder("superbee_gelid","sacred_cinders_apiary",10); superbee_gelid.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesTEGelid", UID0: "forestry.species.Gelid"}]}})); superbee_gelid.setChance(0.0); superbee_gelid.addFluidInput(<fluid:liquid_sunshine>*25); superbee_gelid.addItemOutput(<forestry:bee_combs:4>*64); superbee_gelid.addItemOutput(<thermalfoundation:material:1025>*64); superbee_gelid.build();
|
||||
val superbee_gelid = RecipeBuilder.newBuilder("superbee_gelid","sacred_cinders_apiary",10); superbee_gelid.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesTEGelid", UID0: "magicbees.speciesTEGelid"}]}})); superbee_gelid.setChance(0.0); superbee_gelid.addFluidInput(<fluid:liquid_sunshine>*25); superbee_gelid.addItemOutput(<forestry:bee_combs:4>*64); superbee_gelid.addItemOutput(<thermalfoundation:material:1025>*64); superbee_gelid.build();
|
||||
val superbee_pyro = RecipeBuilder.newBuilder("superbee_pyro","sacred_cinders_apiary",10); superbee_pyro.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesTEPyro", UID0: "magicbees.speciesTEPyro"}]}})); superbee_pyro.setChance(0.0); superbee_pyro.addFluidInput(<fluid:liquid_sunshine>*25); superbee_pyro.addItemOutput(<magicbees:beecomb:1>*64); superbee_pyro.addItemOutput(<thermalfoundation:material:1024>*64); superbee_pyro.build();
|
||||
val superbee_fluorine = RecipeBuilder.newBuilder("superbee_fluorine","sacred_cinders_apiary",10); superbee_fluorine.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Fluorine", UID0: "gendustry.bee.Fluorine"}]}})); superbee_fluorine.setChance(0.0); superbee_fluorine.addFluidInput(<fluid:liquid_sunshine>*25); superbee_fluorine.addItemOutput(<gendustry:honey_comb:14027>*64); superbee_fluorine.addItemOutput(<forestry:bee_combs:0>*64); superbee_fluorine.build();
|
||||
val superbee_helium = RecipeBuilder.newBuilder("superbee_helium","sacred_cinders_apiary",10); superbee_helium.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Helium", UID0: "gendustry.bee.Helium"}]}})); superbee_helium.setChance(0.0); superbee_helium.addFluidInput(<fluid:liquid_sunshine>*25); superbee_helium.addItemOutput(<gendustry:honey_comb:14028>*64); superbee_helium.addItemOutput(<forestry:bee_combs:0>*64); superbee_helium.build();
|
||||
val superbee_flux = RecipeBuilder.newBuilder("superbee_flux","sacred_cinders_apiary",10); superbee_flux.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Flux", UID0: "gendustry.bee.Flux"}]}})); superbee_flux.setChance(0.0); superbee_flux.addFluidInput(<fluid:liquid_sunshine>*25); superbee_flux.addItemOutput(<fluxnetworks:flux>*64); superbee_flux.addItemOutput(<fluxnetworks:flux>*64); superbee_flux.build();
|
||||
val superbee_forlorn = RecipeBuilder.newBuilder("superbee_forlorn","sacred_cinders_apiary",10); superbee_forlorn.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "magicbees.speciesForlorn", UID0: "magicbees.speciesForlorn"}]}})); superbee_forlorn.setChance(0.0); superbee_forlorn.addFluidInput(<fluid:liquid_sunshine>*25); superbee_forlorn.addItemOutput(<magicbees:beecomb:10>*64); superbee_forlorn.addItemOutput(<magicbees:beecomb:10>*64); superbee_forlorn.build();
|
||||
|
||||
val superbee_cosmicconstellation = RecipeBuilder.newBuilder("superbee_cosmicconstellation","sacred_cinders_apiary",10); superbee_cosmicconstellation.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.CosmicConstellation", UID0: "gendustry.bee.CosmicConstellation"}]}})); superbee_cosmicconstellation.setChance(0.0); superbee_cosmicconstellation.addFluidInput(<fluid:liquid_sunshine>*25); superbee_cosmicconstellation.addItemOutput(<contenttweaker:universal_constellation>*64); superbee_cosmicconstellation.addItemOutput(<contenttweaker:universal_constellation>*64); superbee_cosmicconstellation.build();
|
||||
|
||||
val superbee_treeoflife = RecipeBuilder.newBuilder("superbee_treeoflife","sacred_cinders_apiary",10); superbee_treeoflife.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.TreeOfLife", UID0: "gendustry.bee.TreeOfLife"}]}})); superbee_treeoflife.setChance(0.0); superbee_treeoflife.addFluidInput(<fluid:liquid_sunshine>*25); superbee_treeoflife.addItemOutput(<contenttweaker:order_wood>*64); superbee_treeoflife.addItemOutput(<contenttweaker:chaos_wood>*64); superbee_treeoflife.build();
|
||||
|
||||
val superbee_gallifreyan = RecipeBuilder.newBuilder("superbee_gallifreyan","sacred_cinders_apiary",10); superbee_gallifreyan.addItemInput(<forestry:bee_queen_ge>.withTag({Genome: {Chromosomes: [{UID1: "gendustry.bee.Gallifreyan", UID0: "gendustry.bee.Gallifreyan"}]}})); superbee_gallifreyan.setChance(0.0); superbee_gallifreyan.addFluidInput(<fluid:liquid_sunshine>*25); superbee_gallifreyan.addItemOutput(<contenttweaker:strange_stone_essence>*64); superbee_gallifreyan.addItemOutput(<contenttweaker:strange_stone_essence>*64); superbee_gallifreyan.build();
|
||||
|
||||
|
||||
@@ -36,6 +36,7 @@ mods.chisel.Carving.addVariation("tokenconfig", <contenttweaker:token_configurat
|
||||
mods.chisel.Carving.addVariation("tokenconfig", <contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT28§r"]}}));
|
||||
mods.chisel.Carving.addVariation("tokenconfig", <contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT29§r"]}}));
|
||||
mods.chisel.Carving.addVariation("tokenconfig", <contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT30§r"]}}));
|
||||
mods.chisel.Carving.addVariation("tokenconfig", <contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT F§r"]}}));
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:master_rune_box>,
|
||||
@@ -837,4 +838,79 @@ tokentiered29.addItemInput(<contenttweaker:tier27_token>);
|
||||
tokentiered29.addItemInput(<contenttweaker:tier28_token>);
|
||||
tokentiered29.addItemInput(<contenttweaker:tier29_token>);
|
||||
tokentiered29.addEnergyPerTickOutput(100000000);
|
||||
tokentiered29.build();
|
||||
tokentiered29.build();
|
||||
|
||||
|
||||
val tokentiered30 = RecipeBuilder.newBuilder("tokentiered30","token_totem",800);
|
||||
tokentiered30.addItemInput(<contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT30§r"]}}));
|
||||
tokentiered30.setChance(0.0);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier1_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier2_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier3_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier4_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier5_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier6_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier7_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier8_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier9_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier10_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier11_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier12_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier13_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier14_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier15_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier16_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier17_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier18_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier19_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier20_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier21_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier22_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier23_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier24_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier25_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier26_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier27_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier28_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier29_token>);
|
||||
tokentiered30.addItemInput(<contenttweaker:tier30_token>);
|
||||
tokentiered30.addEnergyPerTickOutput(10000000000);
|
||||
tokentiered30.build();
|
||||
|
||||
|
||||
|
||||
val tokentiered30a = RecipeBuilder.newBuilder("tokentiered30a","token_totem",800);
|
||||
tokentiered30a.addItemInput(<contenttweaker:token_configurator>.withTag({display: {Lore: ["§d§oT F§r"]}}));
|
||||
tokentiered30a.setChance(0.0);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier1_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier2_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier3_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier4_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier5_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier6_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier7_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier8_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier9_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier10_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier11_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier12_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier13_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier14_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier15_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier16_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier17_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier18_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier19_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier20_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier21_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier22_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier23_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier24_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier25_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier26_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier27_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier28_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier29_token>);
|
||||
tokentiered30a.addItemInput(<contenttweaker:tier30_token>);
|
||||
tokentiered30a.addFluidOutput(<fluid:pure_recursion>*100);
|
||||
tokentiered30a.build();
|
||||
@@ -340,13 +340,22 @@ treeoflifthaumpods.build();
|
||||
|
||||
|
||||
|
||||
val treeoflifecinders = RecipeBuilder.newBuilder("treeoflifecinders","tree_of_life",600);
|
||||
val treeoflifecinders = RecipeBuilder.newBuilder("treeoflifecinders","tree_of_life",200);
|
||||
treeoflifecinders.addEnergyPerTickInput(50000000);
|
||||
treeoflifecinders.addItemInput(<contenttweaker:sacred_cinders_seed>);
|
||||
treeoflifecinders.addItemInput(<forestry:fertilizer_compound>);
|
||||
treeoflifecinders.setChance(0.0);
|
||||
treeoflifecinders.addItemOutput(<contenttweaker:sacred_cinders_fruit>);
|
||||
treeoflifecinders.build();
|
||||
|
||||
val treeoflifecindersbetter = RecipeBuilder.newBuilder("treeoflifecindersbetter","tree_of_life",2);
|
||||
treeoflifecindersbetter.addEnergyPerTickInput(50000000);
|
||||
treeoflifecindersbetter.addItemInput(<contenttweaker:sacred_cinders_seed>);
|
||||
treeoflifecindersbetter.addItemInput(<gendustry:honey_comb:14012>);
|
||||
treeoflifecindersbetter.setChance(0.0);
|
||||
treeoflifecindersbetter.addItemOutput(<contenttweaker:sacred_cinders_fruit>*16);
|
||||
treeoflifecindersbetter.build();
|
||||
|
||||
mods.extendedcrafting.CompressionCrafting.addRecipe(<contenttweaker:alchemical_particle>, <projectex:matter:11>, 100000, <extendedcrafting:material:11>, 100);
|
||||
|
||||
val treeoflifebee = RecipeBuilder.newBuilder("treeoflifebee","tree_of_life",600);
|
||||
|
||||
@@ -26,7 +26,7 @@ mods.techreborn.fusionReactor.addRecipe(<thermalfoundation:material:130>,
|
||||
<materialpart:promethium:ingot>,
|
||||
<contenttweaker:unstable_hassium_chunk>,
|
||||
100000,
|
||||
3000,
|
||||
15000,
|
||||
1000);
|
||||
|
||||
mods.nuclearcraft.melter.addRecipe([<contenttweaker:unstable_hassium_chunk>, <fluid:unstable_hassium>*144]);
|
||||
|
||||
@@ -135,7 +135,7 @@ betterrecursivegoo.addItemInput(<contenttweaker:nethengeic_rune>);
|
||||
betterrecursivegoo.addItemInput(<contenttweaker:everwatching_eye>);
|
||||
betterrecursivegoo.addItemInput(<contenttweaker:ender_dolomite>*4);
|
||||
betterrecursivegoo.addItemInput(<ore:blockPlatinum>*8);
|
||||
betterrecursivegoo.addFluidOutput(<fluid:mildly_recursive_goo>*1000);
|
||||
betterrecursivegoo.addFluidOutput(<fluid:mildly_recursive_goo>*10000);
|
||||
betterrecursivegoo.build();
|
||||
|
||||
mods.nuclearcraft.centrifuge.addRecipe([<fluid:mildly_recursive_goo>*100, <fluid:dimensional_essence>*1000, <fluid:liquid_void>*1000, <fluid:overworldian_fluid>*1000, <fluid:nethengeic_fluid>*1000]);
|
||||
@@ -342,3 +342,25 @@ recipes.addShaped(<bewitchment:blessed_stone>*2,
|
||||
mods.thermalexpansion.Crucible.addRecipe(<fluid:essence>*10000, <contenttweaker:condensed_essence>, 2000);
|
||||
|
||||
mods.nuclearcraft.melter.addRecipe([<contenttweaker:condensed_essence>, <fluid:essence>*10000]);
|
||||
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:call_of_the_haunted>,
|
||||
[[<techreborn:uumatter>, <techreborn:uumatter>, <techreborn:uumatter>],
|
||||
[<techreborn:uumatter>, <aoa3:ghostly_powder>, <techreborn:uumatter>],
|
||||
[<techreborn:uumatter>, <techreborn:uumatter>, <techreborn:uumatter>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:recursive_feather>,
|
||||
[[<contenttweaker:ender_feather>, <contenttweaker:ender_feather>, <contenttweaker:ender_feather>],
|
||||
[<contenttweaker:ender_feather>, <contenttweaker:chaotic_feather>, <contenttweaker:ender_feather>],
|
||||
[<contenttweaker:ender_feather>, <contenttweaker:ender_feather>, <contenttweaker:ender_feather>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:sticky_callstone>,
|
||||
[[<contenttweaker:dimensional_ingot>, <avaritia:resource:7>, <contenttweaker:dimensional_ingot>],
|
||||
[<contenttweaker:forgotten_slime>, <contenttweaker:primordial_prism>, <contenttweaker:forgotten_slime>],
|
||||
[<contenttweaker:dimensional_ingot>, <avaritia:resource:7>, <contenttweaker:dimensional_ingot>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:mythic_excavation_engine>,
|
||||
[[<contenttweaker:fluix_microcontroller>, <contenttweaker:high_strength_transmission>, <contenttweaker:fluix_microcontroller>],
|
||||
[<contenttweaker:universal_booster>, <contenttweaker:mythic_machine_case>, <contenttweaker:universal_booster>],
|
||||
[<aoa3:elecanium_ingot>, <contenttweaker:primal_jewel>, <aoa3:elecanium_ingot>]]);
|
||||
|
||||
@@ -180,6 +180,24 @@ mods.nuclearcraft.infuser.addRecipe([<ore:ingotVityte>,
|
||||
<fluid:dimensional_essence>*100,
|
||||
<contenttweaker:nethersky_steel_ingot>*3]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<ore:ingotLunastone>,
|
||||
<fluid:dimensional_essence>*100,
|
||||
<contenttweaker:nethersky_steel_ingot>*4]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<ore:ingotGhastly>,
|
||||
<fluid:dimensional_essence>*100,
|
||||
<contenttweaker:nethersky_steel_ingot>*5]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<ore:ingotGhoulish>,
|
||||
<fluid:dimensional_essence>*100,
|
||||
<contenttweaker:nethersky_steel_ingot>*5]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<ore:ingotShyrestone>,
|
||||
<fluid:dimensional_essence>*100,
|
||||
<contenttweaker:nethersky_steel_ingot>*6]);
|
||||
|
||||
|
||||
|
||||
mods.nuclearcraft.manufactory.addRecipe([<contenttweaker:nethersky_steel_ingot>,
|
||||
<contenttweaker:nethersky_steel_dust>]);
|
||||
|
||||
@@ -383,7 +401,7 @@ mith5.setChance(0.05);
|
||||
mith5.addItemOutput(<aoa3:discharge_capsule>*10);
|
||||
mith5.setChance(0.05);
|
||||
mith5.addItemOutput(<divinerpg:fury_fire>*10);
|
||||
mith5.setChance(0.05);
|
||||
mith5.setChance(0.5);
|
||||
mith5.addItemOutput(<divinerpg:bluefire_stone>*10);
|
||||
mith5.setChance(0.05);
|
||||
mith5.addItemOutput(<divinerpg:divine_shards>);
|
||||
@@ -736,6 +754,8 @@ mith11.addItemOutput(<aoa3:gold_coin>*10);
|
||||
mith11.setChance(0.02);
|
||||
mith11.addItemOutput(<contenttweaker:deeplands_garnet>);
|
||||
mith11.setChance(0.5);
|
||||
mith11.addItemOutput(<aoa3:deep_case>*8);
|
||||
mith11.setChance(0.5);
|
||||
mith11.addItemOutput(<materialpart:dreaded_steel:ingot>*2);
|
||||
mith11.setChance(0.1);
|
||||
mith11.addItemOutput(<projectex:matter:6>);
|
||||
@@ -781,6 +801,10 @@ mith12.addItemOutput(<aoa3:magic_repair_dust>);
|
||||
mith12.setChance(0.1);
|
||||
mith12.addItemOutput(<contenttweaker:abyss_garnet>);
|
||||
mith12.setChance(0.5);
|
||||
mith12.addItemOutput(<contenttweaker:hellspot_chop>*12);
|
||||
mith12.setChance(0.5);
|
||||
mith12.addItemOutput(<divinerpg:fury_fire>*50);
|
||||
mith12.setChance(0.5);
|
||||
mith12.addItemOutput(<thaumadditions:jar_mithrillium>);
|
||||
mith12.setChance(0.1);
|
||||
mith12.addItemOutput(<projectex:matter:6>);
|
||||
@@ -1310,6 +1334,8 @@ mith20.addItemOutput(<aoa3:gold_coin>*10);
|
||||
mith20.setChance(0.07);
|
||||
mith20.addItemOutput(<contenttweaker:vox_ponds_garnet>);
|
||||
mith20.setChance(0.5);
|
||||
mith20.addItemOutput(<iceandfire:stymphalian_bird_feather>*16);
|
||||
mith20.setChance(0.5);
|
||||
mith20.addItemOutput(<contenttweaker:tier20_token>);
|
||||
mith20.build();
|
||||
|
||||
@@ -2307,6 +2333,8 @@ mith26.addItemOutput(<aoa3:magic_repair_dust>);
|
||||
mith26.setChance(0.1);
|
||||
mith26.addItemOutput(<draconicevolution:chaos_shard:3>);
|
||||
mith26.setChance(0.05);
|
||||
mith26.addItemOutput(<divinerpg:fury_fire>*60);
|
||||
mith26.setChance(0.8);
|
||||
mith26.addItemOutput(<contenttweaker:greckon_garnet>);
|
||||
mith26.setChance(0.5);
|
||||
mith26.addItemOutput(<contenttweaker:tier26_token>);
|
||||
@@ -2458,8 +2486,8 @@ true,
|
||||
<extendedcrafting:singularity:1>,
|
||||
[<draconicevolution:chaos_shard:1>,<contenttweaker:eden_refined_gem>,<draconicevolution:chaos_shard:1>,<contenttweaker:wildwood_refined_gem>,
|
||||
<draconicevolution:chaos_shard:1>,<contenttweaker:apalachia_refined_gem>,<draconicevolution:chaos_shard:1>,<contenttweaker:skythern_refined_gem>]);
|
||||
game.setLocalization("ac.ritual.VetheaWhiteInfusion", "梦魇世界负性物体灌注");
|
||||
game.setLocalization("ac.ritual.VetheaWhiteInfusion.desc", "通过诡异的灌注仪式,令负质量物体成为现实!");
|
||||
game.setLocalization("ac.ritual.VetheaWhiteInfusion", "Vethea Negative Body Infusion");
|
||||
game.setLocalization("ac.ritual.VetheaWhiteInfusion.desc", "Bring a body with negative mass into existance through eldritch infusion!");
|
||||
|
||||
val edendragonref = RecipeBuilder.newBuilder("edendragonref","dragonfire_crucible",100);
|
||||
edendragonref.addFluidInput(<fluid:twilight_fire>*1000);
|
||||
@@ -2695,18 +2723,6 @@ hightiersingularity.add(<extendedcrafting:singularity:50>);
|
||||
hightiersingularity.add(<extendedcrafting:singularity:66>);
|
||||
|
||||
|
||||
val ultimatecompression = RecipeBuilder.newBuilder("ultimatesingularitybaby","gravitational_collapser",200);
|
||||
ultimatecompression.addEnergyPerTickInput(1111111);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:666>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:656>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:657>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:658>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:659>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:660>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:654>);
|
||||
ultimatecompression.addItemInput(<extendedcrafting:singularity_custom:652>);
|
||||
ultimatecompression.addItemOutput(<extendedcrafting:singularity_ultimate>);
|
||||
ultimatecompression.build();
|
||||
|
||||
mods.abyssalcraft.InfusionRitual.addRitual("DynatosArtifactInf",
|
||||
4, 0,
|
||||
@@ -2716,8 +2732,8 @@ true,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
[<draconicevolution:chaos_shard:0>,<divinerpg:mortum_block>,<divinerpg:arksiane_claw>,<divinerpg:mortum_block>,
|
||||
<divinerpg:arksiane_claw>,<divinerpg:mortum_block>,<draconicevolution:chaos_shard:0>,<divinerpg:mortum_block>]);
|
||||
game.setLocalization("ac.ritual.DynatosArtifactInf", "黑洞万岁");
|
||||
game.setLocalization("ac.ritual.DynatosArtifactInf.desc", "终于能探索黑洞了,真正的黑洞!");
|
||||
game.setLocalization("ac.ritual.DynatosArtifactInf", "Black Holes FTW");
|
||||
game.setLocalization("ac.ritual.DynatosArtifactInf.desc", "I can finally visit a black hole, a REAL one!");
|
||||
|
||||
|
||||
recipes.addShaped(<avaritia:resource:5>,
|
||||
@@ -2758,8 +2774,8 @@ true,
|
||||
<contenttweaker:realmstone>,
|
||||
[<aoa3:magic_mending_solution>,<aoa3:magic_mending_solution>,<draconicevolution:chaotic_core>,<draconicevolution:chaotic_core>,
|
||||
<contenttweaker:plasmatic_neutronium_ingot>,<contenttweaker:plasmatic_neutronium_ingot>,<contenttweaker:infinity_fragment>,<divinerpg:arksiane_lump>]);
|
||||
game.setLocalization("ac.ritual.ShyreWaystoneInf", "进入塞尔瑞");
|
||||
game.setLocalization("ac.ritual.ShyreWaystoneInf.desc", "进入塞尔瑞");
|
||||
game.setLocalization("ac.ritual.ShyreWaystoneInf", "Into the Shyre");
|
||||
game.setLocalization("ac.ritual.ShyreWaystoneInf.desc", "Into the Shyre");
|
||||
|
||||
val shyreStatue = <ore:shyreStatue>;
|
||||
shyreStatue.add(<aoa3:craexxeus_statue>);
|
||||
@@ -2912,10 +2928,16 @@ mith29.addItemOutput(<contenttweaker:shyrelands_garnet>);
|
||||
mith29.setChance(0.5);
|
||||
mith29.addItemOutput(<contenttweaker:mother_pixon_soul>*10);
|
||||
mith29.setChance(0.3);
|
||||
mith29.addItemOutput(<divinerpg:bluefire_stone>*40);
|
||||
mith29.setChance(0.8);
|
||||
mith29.addItemOutput(<divinerpg:divine_stone>*40);
|
||||
mith29.setChance(0.8);
|
||||
mith29.addItemOutput(<contenttweaker:tier29_token>);
|
||||
mith29.build();
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:xxeus_stone>,
|
||||
1000000,
|
||||
<contenttweaker:mortum_star>,
|
||||
@@ -2938,11 +2960,6 @@ mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/alta
|
||||
"astralsorcery.constellation.armara");
|
||||
|
||||
|
||||
val infinitycompression = RecipeBuilder.newBuilder("simplerinfinity","gravitational_collapser",100);
|
||||
infinitycompression.addEnergyPerTickInput(50000);
|
||||
infinitycompression.addItemInput(<contenttweaker:bright_matter>);
|
||||
infinitycompression.addItemOutput(<avaritia:resource:5>);
|
||||
infinitycompression.build();
|
||||
|
||||
val hassiumalloyinf = RecipeBuilder.newBuilder("hassiumalloyinf","dragonfire_crucible",300);
|
||||
hassiumalloyinf.addFluidInput(<fluid:eternal_dragon_fire>*500);
|
||||
@@ -2977,6 +2994,15 @@ eternbrightalloy.addItemInput(<materialpart:brightsteel:ingot>);
|
||||
eternbrightalloy.addItemOutput(<contenttweaker:brightsteel_alloy_ingot>*3);
|
||||
eternbrightalloy.build();
|
||||
|
||||
val eternbrightalloybetter = RecipeBuilder.newBuilder("eternbrightalloybetter","dragonfire_crucible",150);
|
||||
eternbrightalloybetter.addFluidInput(<fluid:twilight_fire>*2000);
|
||||
eternbrightalloybetter.addItemInput(<materialpart:chalcedony:ingot>*8);
|
||||
eternbrightalloybetter.addItemInput(<materialpart:lunastone:ingot>*8);
|
||||
eternbrightalloybetter.addItemInput(<materialpart:brightsteel:ingot>*8);
|
||||
eternbrightalloybetter.addItemOutput(<contenttweaker:brightsteel_alloy_ingot>*24);
|
||||
eternbrightalloybetter.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:defined_machine_case>*4,
|
||||
[[<contenttweaker:twilight_alloy_ingot>, null, null,
|
||||
null, <contenttweaker:abyssal_alloy_ingot>, null,
|
||||
@@ -3049,10 +3075,6 @@ recipes.addShaped(<contenttweaker:primal_jewel>,
|
||||
[<nuclearcraft:alloy:12>, <forge:bucketfilled>.withTag({FluidName: "mana", Amount: 1000}), <nuclearcraft:alloy:12>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:mythic_excavation_engine>,
|
||||
[[<contenttweaker:fluix_microcontroller>, <contenttweaker:high_strength_transmission>, <contenttweaker:fluix_microcontroller>],
|
||||
[<contenttweaker:universal_booster>, <contenttweaker:mythic_machine_case>, <contenttweaker:universal_booster>],
|
||||
[<aoa3:elecanium_ingot>, <contenttweaker:primal_jewel>, <aoa3:elecanium_ingot>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:enhanced_chaos_shard>,
|
||||
[[null, <contenttweaker:chaotic_feather>, null],
|
||||
@@ -3215,20 +3237,6 @@ scripts.PuzzleUtil.addPuzzleShapeless("rightsacredsaplingmystery",
|
||||
<careerbees:ingredients:1>.withTag({bark: {id: "biomesoplenty:log_0", Count: 1 as byte, Damage: 6 as short}}), <contenttweaker:sacred_acorn>, <careerbees:ingredients:1>.withTag({bark: {id: "forestry:logs.1", Count: 1 as byte, Damage: 2 as short}}),
|
||||
<careerbees:ingredients:1>.withTag({bark: {id: "natura:nether_logs", Count: 1 as byte, Damage: 1 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "extratrees:logs.7", Count: 1 as byte, Damage: 2 as short}}), <careerbees:ingredients:1>.withTag({bark: {id: "biomesoplenty:log_2", Count: 1 as byte, Damage: 7 as short}})]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:call_of_the_haunted>,
|
||||
[[<techreborn:uumatter>, <techreborn:uumatter>, <techreborn:uumatter>],
|
||||
[<techreborn:uumatter>, <aoa3:ghostly_powder>, <techreborn:uumatter>],
|
||||
[<techreborn:uumatter>, <techreborn:uumatter>, <techreborn:uumatter>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:recursive_feather>,
|
||||
[[<contenttweaker:ender_feather>, <contenttweaker:ender_feather>, <contenttweaker:ender_feather>],
|
||||
[<contenttweaker:ender_feather>, <contenttweaker:chaotic_feather>, <contenttweaker:ender_feather>],
|
||||
[<contenttweaker:ender_feather>, <contenttweaker:ender_feather>, <contenttweaker:ender_feather>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:sticky_callstone>,
|
||||
[[<contenttweaker:dimensional_ingot>, <avaritia:resource:7>, <contenttweaker:dimensional_ingot>],
|
||||
[<contenttweaker:forgotten_slime>, <contenttweaker:primordial_prism>, <contenttweaker:forgotten_slime>],
|
||||
[<contenttweaker:dimensional_ingot>, <avaritia:resource:7>, <contenttweaker:dimensional_ingot>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:sacred_cinders_log>,
|
||||
[[<extratrees:misc:3>, <extratrees:misc:3>, null, <extratrees:misc:3>, <extratrees:misc:3>],
|
||||
|
||||
@@ -128,4 +128,24 @@ recipes.addShaped(<contenttweaker:inert_crystal>,
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:inert_crystal>, <fluid:muons>*100, <contenttweaker:muon_crystal>]);
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:inert_crystal>, <fluid:strings>*100, <contenttweaker:strings_crystal>]);
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:inert_crystal>, <fluid:strings>*100, <contenttweaker:strings_crystal>]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:gallifreyan_neutronium_casing>,
|
||||
1000000000,
|
||||
<contenttweaker:neutronium_casing>,
|
||||
[<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>,
|
||||
<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>,
|
||||
<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>,
|
||||
<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>,
|
||||
<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>,
|
||||
<contenttweaker:eye_of_gallifrey>, <ore:ingotChaos>]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:quark_neutronium_module>,
|
||||
[[<contenttweaker:stone_of_the_shyre_warden>, null, <contenttweaker:mortum_star>, null, <contenttweaker:stone_of_the_shyre_warden>],
|
||||
[null, <contenttweaker:arbiterite_crystal>, <contenttweaker:gallifreyan_neutronium_casing>, <contenttweaker:arbiterite_crystal>, null],
|
||||
[<contenttweaker:mortum_star>, <contenttweaker:gallifreyan_neutronium_casing>, <contenttweaker:defined_machine_case>, <contenttweaker:gallifreyan_neutronium_casing>, <contenttweaker:mortum_star>],
|
||||
[null, <contenttweaker:arbiterite_crystal>, <contenttweaker:gallifreyan_neutronium_casing>, <contenttweaker:arbiterite_crystal>, null],
|
||||
[<contenttweaker:stone_of_the_shyre_warden>, null, <contenttweaker:mortum_star>, null, <contenttweaker:stone_of_the_shyre_warden>]]);
|
||||
|
||||
+231
-4
@@ -2,6 +2,9 @@ import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.astralsorcery.Utils;
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import crafttweaker.data.IData;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
// New Super-Enchant Page: Reorganized Edition
|
||||
@@ -365,6 +368,11 @@ import mods.astralsorcery.Utils;
|
||||
|
||||
// Elder Spooder String
|
||||
{
|
||||
recipes.addShaped(<contenttweaker:heart_of_the_elder_one>,
|
||||
[[<abyssalcraft:antispidereye>, <contenttweaker:tainted_sentient_meatball>, <abyssalcraft:antispidereye>],
|
||||
[<contenttweaker:tainted_sentient_meatball>, <contenttweaker:heart_of_the_elder_one>.reuse(), <contenttweaker:tainted_sentient_meatball>],
|
||||
[<abyssalcraft:antispidereye>, <contenttweaker:tainted_sentient_meatball>, <abyssalcraft:antispidereye>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:elder_spooder_string>,
|
||||
[[<bloodarsenal:blood_burned_string>, <bloodarsenal:blood_burned_string>, <bloodarsenal:blood_burned_string>],
|
||||
[<bloodarsenal:blood_burned_string>, <contenttweaker:heart_of_the_elder_one>.reuse(), <bloodarsenal:blood_burned_string>],
|
||||
@@ -472,7 +480,7 @@ import mods.astralsorcery.Utils;
|
||||
]);
|
||||
}
|
||||
|
||||
// Dragnipur
|
||||
// Nightblood
|
||||
{
|
||||
// var mapWarrenSword as IData = {
|
||||
// RepairCost: 1,
|
||||
@@ -491,7 +499,7 @@ import mods.astralsorcery.Utils;
|
||||
.add("mod_lavacow:lifesteal",50);
|
||||
|
||||
// Recipe
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<thaumicwonders:primal_destroyer>.withTag({display: {Name:"§6§o噬灵者§r",Lore:["§d§o超限附魔§r"]}}), enchlistWarrenSwordWrapped).getItem(),
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<thaumicwonders:primal_destroyer>.withTag({display: {Name:"§6§o夜血§r",Lore:["§d§o超限附魔§r"]}}), enchlistWarrenSwordWrapped).getItem(),
|
||||
[[<contenttweaker:first_order_mythic_fractal>, <iceandfire:dragonsteel_lightning_block>, <iceandfire:dragonsteel_lightning_block>, <iceandfire:dragonsteel_lightning_block>, <iceandfire:dragonsteel_lightning_block>, <iceandfire:dragonsteel_lightning_block>, <contenttweaker:first_order_mythic_fractal>],
|
||||
[<iceandfire:dragonsteel_lightning_block>, <ore:ingotStellarAlloy>, <contenttweaker:warren_shard>, <contenttweaker:warren_shard>, <contenttweaker:warren_shard>, <ore:ingotStellarAlloy>, <iceandfire:dragonsteel_lightning_block>],
|
||||
[<iceandfire:dragonsteel_lightning_block>, <contenttweaker:warren_shard>, <contenttweaker:heart_of_darkness>, <contenttweaker:wormhole_catalyst>, <contenttweaker:heart_of_darkness>, <contenttweaker:warren_shard>, <iceandfire:dragonsteel_lightning_block>],
|
||||
@@ -827,6 +835,71 @@ import mods.astralsorcery.Utils;
|
||||
// mapOathbringer += enchlistOathbringer[0].makeEnchantment(150).makeTag();
|
||||
// mapOathbringer += enchlistOathbringer[1].makeEnchantment(25).makeTag();
|
||||
|
||||
var mapshieldofthearbiter as IData = {
|
||||
display: {Lore:["§d§o理序主之盾§r"]}
|
||||
};
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard1", <chisel:factory1:1>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<chisel:factory1:1>, <chisel:factory1:1>, <chisel:factory1:1>],
|
||||
[<chisel:factory1:1>, <contenttweaker:spooder_glasses>, <chisel:factory1:1>],
|
||||
[<chisel:factory1:1>, <chisel:factory1:1>, <chisel:factory1:1>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard2", <draconicevolution:draconic_block>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<draconicevolution:draconic_block>, <draconicevolution:draconic_block>, <draconicevolution:draconic_block>],
|
||||
[<draconicevolution:draconic_block>, <contenttweaker:massive_boomboom>, <draconicevolution:draconic_block>],
|
||||
[<draconicevolution:draconic_block>, <draconicevolution:draconic_block>, <draconicevolution:draconic_block>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard3", <railcraft:abyssal:1>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<railcraft:abyssal:1>, <railcraft:abyssal:1>, <railcraft:abyssal:1>],
|
||||
[<railcraft:abyssal:1>, <contenttweaker:emc_crown>, <railcraft:abyssal:1>],
|
||||
[<railcraft:abyssal:1>, <railcraft:abyssal:1>, <railcraft:abyssal:1>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard4", <appliedenergistics2:smooth_sky_stone_block>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<appliedenergistics2:smooth_sky_stone_block>, <appliedenergistics2:smooth_sky_stone_block>, <appliedenergistics2:smooth_sky_stone_block>],
|
||||
[<appliedenergistics2:smooth_sky_stone_block>, <contenttweaker:atomic_glasses>, <appliedenergistics2:smooth_sky_stone_block>],
|
||||
[<appliedenergistics2:smooth_sky_stone_block>, <appliedenergistics2:smooth_sky_stone_block>, <appliedenergistics2:smooth_sky_stone_block>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard5", <chisel:concrete_purple:4>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<chisel:concrete_purple:4>, <chisel:concrete_purple:4>, <chisel:concrete_purple:4>],
|
||||
[<chisel:concrete_purple:4>, <contenttweaker:cool_walking_stick>, <chisel:concrete_purple:4>],
|
||||
[<chisel:concrete_purple:4>, <chisel:concrete_purple:4>, <chisel:concrete_purple:4>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard6", <chisel:bookshelf_spruce:6>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<chisel:bookshelf_spruce:6>, <chisel:bookshelf_spruce:6>, <chisel:bookshelf_spruce:6>],
|
||||
[<chisel:bookshelf_spruce:6>, <contenttweaker:horrible_unedited_fanfiction>, <chisel:bookshelf_spruce:6>],
|
||||
[<chisel:bookshelf_spruce:6>, <chisel:bookshelf_spruce:6>, <chisel:bookshelf_spruce:6>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard7", <minecraft:sandstone:2>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<minecraft:sandstone:2>, <minecraft:sandstone:2>, <minecraft:sandstone:2>],
|
||||
[<minecraft:sandstone:2>, <contenttweaker:null_pointer>, <minecraft:sandstone:2>],
|
||||
[<minecraft:sandstone:2>, <minecraft:sandstone:2>, <minecraft:sandstone:2>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard8", <integrateddynamics:menril_planks>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<integrateddynamics:menril_planks>, <integrateddynamics:menril_planks>, <integrateddynamics:menril_planks>],
|
||||
[<integrateddynamics:menril_planks>, <contenttweaker:p0rtals_redish_white_hat>, <integrateddynamics:menril_planks>],
|
||||
[<integrateddynamics:menril_planks>, <integrateddynamics:menril_planks>, <integrateddynamics:menril_planks>]]);
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShaped("arbiterguard9", <chisel:laboratory:8>.withTag(mapshieldofthearbiter)*8,
|
||||
[[<chisel:laboratory:8>, <chisel:laboratory:8>, <chisel:laboratory:8>],
|
||||
[<chisel:laboratory:8>, <contenttweaker:collar_bells>, <chisel:laboratory:8>],
|
||||
[<chisel:laboratory:8>, <chisel:laboratory:8>, <chisel:laboratory:8>]]);
|
||||
|
||||
val shieldarbiterdragcruc1 = RecipeBuilder.newBuilder("shieldarbiterdragcruc1","dragonfire_crucible",3000);
|
||||
shieldarbiterdragcruc1.addFluidInput(<fluid:eternal_dragon_fire>*72000);
|
||||
shieldarbiterdragcruc1.addItemInput(<chisel:laboratory:8>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<integrateddynamics:menril_planks>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<minecraft:sandstone:2>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<chisel:bookshelf_spruce:6>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<chisel:concrete_purple:4>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<appliedenergistics2:smooth_sky_stone_block>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<railcraft:abyssal:1>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<draconicevolution:draconic_block>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemInput(<chisel:factory1:1>.withTag(mapshieldofthearbiter));
|
||||
shieldarbiterdragcruc1.addItemOutput(<contenttweaker:shield_of_the_arbiter>);
|
||||
shieldarbiterdragcruc1.build();
|
||||
|
||||
|
||||
|
||||
val enchlistOathbringerWrapped as EnchantMap = EnchantMap()
|
||||
.add("minecraft:sharpness",150)
|
||||
.add("cofhcore:vorpal",25);
|
||||
@@ -839,8 +912,8 @@ import mods.astralsorcery.Utils;
|
||||
[null, <bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "enderium", Amount: 65336000}}), null, null, null, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, null],
|
||||
[null, <draconicevolution:chaos_shard:0>, null, null, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, null, null],
|
||||
[null, <draconicevolution:chaos_shard:0>, null, <contenttweaker:draconian_metal_ingot>, <contenttweaker:third_order_mythic_fractal>, <contenttweaker:draconian_metal_ingot>, null, null, null],
|
||||
[null, null, <draconicevolution:chaos_shard:0>, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, null, null, null, null],
|
||||
[null, null, <contenttweaker:chaotic_poppet>, <draconicevolution:chaos_shard:0>, null, null, null, null, null],
|
||||
[null, null, <contenttweaker:shield_of_the_arbiter>, <contenttweaker:draconian_metal_ingot>, <contenttweaker:draconian_metal_ingot>, null, null, null, null],
|
||||
[null, null, <contenttweaker:chaotic_poppet>, <contenttweaker:shield_of_the_arbiter>, null, null, null, null, null],
|
||||
[null, <mod_lavacow:bonesword>, null, null, <draconicevolution:chaos_shard:0>, <draconicevolution:chaos_shard:0>, <bloodmagic:blood_tank:12>.withTag({Fluid: {FluidName: "molten_awakened", Amount: 65336000}}), null, null],
|
||||
[<contenttweaker:light_of_shadesmar>, null, null, null, null, null, null, null, null]]);
|
||||
}
|
||||
@@ -1294,4 +1367,158 @@ import mods.astralsorcery.Utils;
|
||||
}
|
||||
|
||||
|
||||
// Callandor
|
||||
{
|
||||
|
||||
val enchlistCallandorWrapped as EnchantMap = EnchantMap()
|
||||
.add("cofhcore:vorpal",20000)
|
||||
.add("minecraft:sharpness",20000);
|
||||
|
||||
|
||||
|
||||
// Recipe
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<twilightforest:glass_sword>.withTag({Unbreakable: 1 as byte, display: {Name:"§6§o凯兰铎§r",Lore:["§d§o超限附魔§r"]}}), enchlistCallandorWrapped).getItem(),
|
||||
[[<careerbees:ingredients:11>, null, <contenttweaker:ingot_of_infinite_wishes>, null, <contenttweaker:spiritus_vis_condensate>, null, <contenttweaker:ingot_of_infinite_wishes>, null, <careerbees:ingredients:11>],
|
||||
[null, <bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "soularium", Amount: 524288000}}), null, null, <contenttweaker:cuendillar_plate>, null, null, <bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "tough", Amount: 524288000}}), null],
|
||||
[<contenttweaker:ingot_of_infinite_wishes>, null, null, <contenttweaker:cuendillar_plate>, <avaritiaitem:cosmic_balance>, <contenttweaker:cuendillar_plate>, null, null, <contenttweaker:ingot_of_infinite_wishes>],
|
||||
[null, null, <contenttweaker:cuendillar_plate>, null, <contenttweaker:cuendillar_plate>, null, <contenttweaker:cuendillar_plate>, null, null],
|
||||
[<contenttweaker:aer_vis_condensate>, <contenttweaker:cuendillar_plate>, <contenttweaker:self_actualizing_warren_rift>, <contenttweaker:cuendillar_plate>, <twilightforest:glass_sword>, <contenttweaker:cuendillar_plate>, <contenttweaker:self_actualizing_warren_rift>, <contenttweaker:cuendillar_plate>, <contenttweaker:aqua_vis_condensate>],
|
||||
[null, null, <contenttweaker:cuendillar_plate>, null, <contenttweaker:cuendillar_plate>, null, <contenttweaker:cuendillar_plate>, null, null],
|
||||
[<contenttweaker:ingot_of_infinite_wishes>, null, null, <contenttweaker:cuendillar_plate>, <contenttweaker:astral_insight_100>, <contenttweaker:cuendillar_plate>, null, null, <contenttweaker:ingot_of_infinite_wishes>],
|
||||
[null, <bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "signalum", Amount: 524288000}}), null, null, <contenttweaker:cuendillar_plate>, null, null, <bloodmagic:blood_tank:15>.withTag({Fluid: {FluidName: "pulsating_iron", Amount: 524288000}}), null],
|
||||
[<contenttweaker:ignis_vis_condensate>, null, <contenttweaker:ingot_of_infinite_wishes>, null, <careerbees:ingredients:12>, null, <contenttweaker:ingot_of_infinite_wishes>, null, <contenttweaker:terra_vis_condensate>]]);
|
||||
}
|
||||
|
||||
|
||||
// Choedan Kal
|
||||
{
|
||||
|
||||
val enchlistChoedanKal as EnchantMap = EnchantMap()
|
||||
.add("thaumictinkerer:finalstrike",20000)
|
||||
.add("thaumictinkerer:valiance",20000);
|
||||
|
||||
|
||||
|
||||
// Recipe
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<mod_lavacow:sludge_wand>.withTag({Unbreakable: 1 as byte, display: {Name:"§6§o男性珂丹卡§r",Lore:["§d§o超限附魔§r"]}}), enchlistChoedanKal).getItem(),
|
||||
[[null, null, null, <contenttweaker:eleint_stone>, <bewitchment:stone_leonard_statue>, <contenttweaker:eleint_stone>, null, null, null],
|
||||
[null, <contenttweaker:seal_of_freedom>, null, <contenttweaker:eleint_stone>, <mod_lavacow:sludge_wand>, <contenttweaker:eleint_stone>, null, <contenttweaker:seal_of_freedom>, null],
|
||||
[null, null, null, null, <contenttweaker:eleint_stone>, null, null, null, null],
|
||||
[null, null, null, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, null, null, null],
|
||||
[null, null, null, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, null, null, null],
|
||||
[null, null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null, null],
|
||||
[null, null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null, null],
|
||||
[null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null],
|
||||
[<contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<mod_lavacow:scarab_wand>.withTag({Unbreakable: 1 as byte, display: {Name:"§6§o女性珂丹卡§r",Lore:["§d§o超限附魔§r"]}}), enchlistChoedanKal).getItem(),
|
||||
[[null, null, null, <contenttweaker:eleint_stone>, <bewitchment:stone_lilith_statue>, <contenttweaker:eleint_stone>, null, null, null],
|
||||
[null, <contenttweaker:seal_of_freedom>, null, <contenttweaker:eleint_stone>, <mod_lavacow:scarab_wand>, <contenttweaker:eleint_stone>, null, <contenttweaker:seal_of_freedom>, null],
|
||||
[null, null, null, null, <contenttweaker:eleint_stone>, null, null, null, null],
|
||||
[null, null, null, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, null, null, null],
|
||||
[null, null, null, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, null, null, null],
|
||||
[null, null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null, null],
|
||||
[null, null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null, null],
|
||||
[null, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, null],
|
||||
[<contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <minecraft:bedrock>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>, <contenttweaker:everburning_dust>]]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Dragnipur
|
||||
{
|
||||
|
||||
val enchlistDragnipur as EnchantMap = EnchantMap()
|
||||
.add("draconicevolution:enchant_reaper",20000)
|
||||
.add("soulshardsrespawn:soul_stealer",20000)
|
||||
.add("mod_lavacow:lifesteal",20000)
|
||||
.add("enderio:witherweapon",20000)
|
||||
.add("minecraft:sweeping",20000);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<aoa3:shadow_sword>.withTag({Unbreakable: 1 as byte, display: {Name:"§6§o噬灵者§r",Lore:["§d§o超限附魔§r"]}}), enchlistDragnipur).getItem(),
|
||||
[[<contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>],
|
||||
[null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null],
|
||||
[<contenttweaker:eleint_stone>, null, <contenttweaker:self_actualizing_warren_rift>, null, null, null, <contenttweaker:self_actualizing_warren_rift>, null, <contenttweaker:eleint_stone>],
|
||||
[null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:warren_shard>, <bloodmagic:blood_tank:5>.withTag({Fluid: {FluidName: "actualizing_fluid", Amount: 512000}}), <contenttweaker:warren_shard>, null, <contenttweaker:echo_warren_alloy>, null],
|
||||
[<contenttweaker:eleint_stone>, null, null, <bloodmagic:blood_tank:5>.withTag({Fluid: {FluidName: "actualizing_fluid", Amount: 512000}}), <aoa3:shadow_sword>, <bloodmagic:blood_tank:5>.withTag({Fluid: {FluidName: "actualizing_fluid", Amount: 512000}}), null, null, <contenttweaker:eleint_stone>],
|
||||
[null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:warren_shard>, <bloodmagic:blood_tank:5>.withTag({Fluid: {FluidName: "actualizing_fluid", Amount: 512000}}), <contenttweaker:warren_shard>, null, <contenttweaker:echo_warren_alloy>, null],
|
||||
[<contenttweaker:eleint_stone>, null, <contenttweaker:self_actualizing_warren_rift>, null, null, null, <contenttweaker:self_actualizing_warren_rift>, null, <contenttweaker:eleint_stone>],
|
||||
[null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null, <contenttweaker:echo_warren_alloy>, null],
|
||||
[<contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>, null, <contenttweaker:eleint_stone>]]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// Anduril
|
||||
{
|
||||
|
||||
val enchlistAnduril as EnchantMap = EnchantMap()
|
||||
.add("thaumictinkerer:valiance",30)
|
||||
.add("minecraft:smite",100);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<aoa3:runic_sword>.withTag({display: {Name:"§6§o安督利尔§r",Lore:["§d§o超限附魔§r"]}}), enchlistAnduril).getItem(),
|
||||
[[null, <avaritia:resource:0>, <extrabotany:elvenking>, <avaritia:resource:0>, null],
|
||||
[<avaritia:resource:0>, null, <contenttweaker:second_order_mythic_fractal>, null, <avaritia:resource:0>],
|
||||
[<extrabotany:elvenking>, <contenttweaker:second_order_mythic_fractal>, <aoa3:runic_sword>, <contenttweaker:second_order_mythic_fractal>, <extrabotany:elvenking>],
|
||||
[<avaritia:resource:0>, null, <contenttweaker:second_order_mythic_fractal>, null, <avaritia:resource:0>],
|
||||
[null, <avaritia:resource:0>, <extrabotany:elvenking>, <avaritia:resource:0>, null]]);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Scarlet
|
||||
{
|
||||
|
||||
val enchlistScarlet as EnchantMap = EnchantMap()
|
||||
.add("thaumictinkerer:valiance",20);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<thaumcraft:crimson_blade>.withTag({display: {Name:"§6§o猩红§r",Lore:["§d§o超限附魔§r"]}}), enchlistScarlet).getItem(),
|
||||
[[null, <contenttweaker:jeweled_runium>, <contenttweaker:pure_warp>, <ore:ingotVibranium>, null],
|
||||
[<ore:ingotVibranium>, null, <contenttweaker:evanescent_sednanite_dust>, null, <contenttweaker:jeweled_runium>],
|
||||
[<contenttweaker:pure_warp>, <contenttweaker:evanescent_sednanite_dust>, <thaumcraft:crimson_blade>, <contenttweaker:evanescent_sednanite_dust>, <contenttweaker:pure_warp>],
|
||||
[<contenttweaker:jeweled_runium>, null, <contenttweaker:evanescent_sednanite_dust>, null, <ore:ingotVibranium>],
|
||||
[null, <ore:ingotVibranium>, <contenttweaker:pure_warp>, <contenttweaker:jeweled_runium>, null]]);
|
||||
|
||||
}
|
||||
|
||||
// Cross
|
||||
{
|
||||
|
||||
val enchlistCross as EnchantMap = EnchantMap()
|
||||
.add("abyssalcraft:light_pierce",100);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<xreliquary:mercy_cross>.withTag({display: {Name:"§6§o光明使者§r",Lore:["§d§o超限附魔§r"]}}), enchlistCross).getItem(),
|
||||
[[<contenttweaker:deeply_etched_adamantium>, <contenttweaker:starlight_sphere>, null, <contenttweaker:stormlight_sphere>, <contenttweaker:deeply_etched_adamantium>],
|
||||
[<contenttweaker:stormlight_sphere>, null, <contenttweaker:first_order_mythic_fractal>, null, <contenttweaker:starlight_sphere>],
|
||||
[null, <contenttweaker:first_order_mythic_fractal>, <xreliquary:mercy_cross>, <contenttweaker:first_order_mythic_fractal>, null],
|
||||
[<contenttweaker:starlight_sphere>, null, <contenttweaker:first_order_mythic_fractal>, null, <contenttweaker:stormlight_sphere>],
|
||||
[<contenttweaker:deeply_etched_adamantium>, <contenttweaker:stormlight_sphere>, null, <contenttweaker:starlight_sphere>, <contenttweaker:deeply_etched_adamantium>]]);
|
||||
|
||||
}
|
||||
|
||||
// Blade of the First King
|
||||
{
|
||||
|
||||
val enchlistFirstKing as EnchantMap = EnchantMap()
|
||||
.add("thaumictinkerer:finalstrike",20);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(SuperEnchantedItem(<divinerpg:karos_rockmaul>.withTag({display: {Name:"§6§o初王之刃§r",Lore:["§d§o超限附魔§r"]}}), enchlistFirstKing).getItem(),
|
||||
[[<contenttweaker:fifth_order_mythic_fractal>, null, null, <contenttweaker:eye_of_limbo>, null, null, <contenttweaker:fifth_order_mythic_fractal>],
|
||||
[null, <contenttweaker:prophetic_paper>, null, <contenttweaker:prophetic_paper>, null, <contenttweaker:prophetic_paper>, null],
|
||||
[null, null, <projectex:matter:11>, null, <projectex:matter:11>, null, null],
|
||||
[<contenttweaker:eye_of_limbo>, <contenttweaker:prophetic_paper>, null, <divinerpg:karos_rockmaul>, null, <contenttweaker:prophetic_paper>, <contenttweaker:eye_of_limbo>],
|
||||
[null, null, <projectex:matter:11>, null, <projectex:matter:11>, null, null],
|
||||
[null, <contenttweaker:prophetic_paper>, null, <contenttweaker:prophetic_paper>, null, <contenttweaker:prophetic_paper>, null],
|
||||
[<contenttweaker:fifth_order_mythic_fractal>, null, null, <extrabotany:camera>, null, null, <contenttweaker:fifth_order_mythic_fractal>]]);
|
||||
|
||||
}
|
||||
|
||||
@@ -893,7 +893,65 @@ val mythallo122 = RecipeBuilder.newBuilder("mythallo122","mythic_processor_alloy
|
||||
mythallo122.addEnergyPerTickInput(80000);
|
||||
mythallo122.addItemInput(<ore:dustRedstone>*10);
|
||||
mythallo122.addItemInput(<ore:gemDiamond>*2);
|
||||
mythallo122.addItemOutput(<redstonearsenal:material:160>*2);
|
||||
mythallo122.addItemOutput(<redstonearsenal:material:160>);
|
||||
mythallo122.build();
|
||||
|
||||
val mythallo123 = RecipeBuilder.newBuilder("mythallo123","mythic_processor_alloy_furnace",2);
|
||||
mythallo123.addEnergyPerTickInput(80000);
|
||||
mythallo123.addItemInput(<ore:ingotAstralStarmetal>);
|
||||
mythallo123.addItemInput(<contenttweaker:infinity_fragment>);
|
||||
mythallo123.addItemOutput(<contenttweaker:starmetal_alloy_ingot>*10);
|
||||
mythallo123.build();
|
||||
|
||||
val mythallo124 = RecipeBuilder.newBuilder("mythallo124","mythic_processor_alloy_furnace",2);
|
||||
mythallo124.addEnergyPerTickInput(80000);
|
||||
mythallo124.addItemInput(<simplyjetpacks:metaitemmods:5>);
|
||||
mythallo124.addItemInput(<ore:ingotDarkSteel>*10);
|
||||
mythallo124.addItemOutput(<simplyjetpacks:metaitemmods:6>);
|
||||
mythallo124.build();
|
||||
|
||||
val mythallo125 = RecipeBuilder.newBuilder("mythallo125","mythic_processor_alloy_furnace",2);
|
||||
mythallo125.addEnergyPerTickInput(80000);
|
||||
mythallo125.addItemInput(<simplyjetpacks:metaitemmods:3>);
|
||||
mythallo125.addItemInput(<ore:ingotConductiveIron>*10);
|
||||
mythallo125.addItemOutput(<simplyjetpacks:metaitemmods:4>);
|
||||
mythallo125.build();
|
||||
|
||||
val mythallo126 = RecipeBuilder.newBuilder("mythallo126","mythic_processor_alloy_furnace",2);
|
||||
mythallo126.addEnergyPerTickInput(80000);
|
||||
mythallo126.addItemInput(<enderio:item_material:66>);
|
||||
mythallo126.addItemInput(<enderio:item_material:67>);
|
||||
mythallo126.addItemOutput(<enderio:item_material:54>);
|
||||
mythallo126.build();
|
||||
|
||||
val mythallo127 = RecipeBuilder.newBuilder("mythallo127","mythic_processor_alloy_furnace",2);
|
||||
mythallo127.addEnergyPerTickInput(80000);
|
||||
mythallo127.addItemInput(<enderio:block_dark_iron_bars>);
|
||||
mythallo127.addItemInput(<minecraft:clay_ball>);
|
||||
mythallo127.addItemInput(<minecraft:string>*4);
|
||||
mythallo127.addItemOutput(<enderio:item_dark_steel_upgrade:0>);
|
||||
mythallo127.build();
|
||||
|
||||
|
||||
val mythallo128 = RecipeBuilder.newBuilder("mythallo128","mythic_processor_alloy_furnace",2);
|
||||
mythallo128.addEnergyPerTickInput(80000);
|
||||
mythallo128.addItemInput(<contenttweaker:dimensionally_ascended_garnet>);
|
||||
mythallo128.addItemInput(<projecte:item.pe_matter>*64);
|
||||
mythallo128.addItemOutput(<contenttweaker:alchemically_hyperactive_crystal>*64);
|
||||
mythallo128.build();
|
||||
|
||||
val mythallo129 = RecipeBuilder.newBuilder("mythallo129","mythic_processor_alloy_furnace",2);
|
||||
mythallo129.addEnergyPerTickInput(80000);
|
||||
mythallo129.addItemInput(<contenttweaker:dimensionally_ascended_garnet>);
|
||||
mythallo129.addItemInput(<contenttweaker:deep_dark_matter>*8);
|
||||
mythallo129.addItemOutput(<contenttweaker:alchemically_hyperactive_crystal>*64);
|
||||
mythallo129.build();
|
||||
|
||||
val mythallo130 = RecipeBuilder.newBuilder("mythallo130","mythic_processor_alloy_furnace",2);
|
||||
mythallo130.addEnergyPerTickInput(80000);
|
||||
mythallo130.addItemInput(<contenttweaker:fractal_stone>);
|
||||
mythallo130.addItemInput(<extrabees:misc:16>*4);
|
||||
mythallo130.addItemInput(<extrabees:misc:15>*4);
|
||||
mythallo130.addItemInput(<extrabees:misc:9>*4);
|
||||
mythallo130.addItemOutput(<contenttweaker:fractal_metal_clump>);
|
||||
mythallo130.build();
|
||||
|
||||
@@ -52,7 +52,7 @@ mythassmac7.build();
|
||||
val mythassmac8 = RecipeBuilder.newBuilder("mythassmac8","mythic_processor_assembling_machine",2);
|
||||
mythassmac8.addEnergyPerTickInput(40000);
|
||||
mythassmac8.addItemInput(<techreborn:part:41>);
|
||||
mythassmac8.addItemInput(<techreborn:part:42>);
|
||||
mythassmac8.addItemInput(<techreborn:part:42>*2);
|
||||
mythassmac8.addItemOutput(<techreborn:part:30>);
|
||||
mythassmac8.build();
|
||||
|
||||
|
||||
@@ -50,3 +50,32 @@ mythindblast7.addItemInput(<contenttweaker:freed_betrayed_soul>*55);
|
||||
mythindblast7.addItemInput(<contenttweaker:will_ensnaring_fabrial>);
|
||||
mythindblast7.addItemOutput(<contenttweaker:construct_of_liberation>);
|
||||
mythindblast7.build();
|
||||
|
||||
val mythindblast8 = RecipeBuilder.newBuilder("mythindblast8","mythic_processor_blaster",2);
|
||||
mythindblast8.addEnergyPerTickInput(200000);
|
||||
mythindblast8.addFluidInput(<fluid:dense_plasma>*200);
|
||||
mythindblast8.addItemInput(<contenttweaker:ice_dragonsteel_ore>);
|
||||
mythindblast8.addItemOutput(<iceandfire:dragonsteel_ice_ingot>*9);
|
||||
mythindblast8.build();
|
||||
|
||||
val mythindblast9 = RecipeBuilder.newBuilder("mythindblast9","mythic_processor_blaster",2);
|
||||
mythindblast9.addEnergyPerTickInput(200000);
|
||||
mythindblast9.addFluidInput(<fluid:dense_plasma>*200);
|
||||
mythindblast9.addItemInput(<contenttweaker:fire_dragonsteel_ore>);
|
||||
mythindblast9.addItemOutput(<iceandfire:dragonsteel_fire_ingot>*9);
|
||||
mythindblast9.build();
|
||||
|
||||
val mythindblast10 = RecipeBuilder.newBuilder("mythindblast10","mythic_processor_blaster",2);
|
||||
mythindblast10.addEnergyPerTickInput(200000);
|
||||
mythindblast10.addFluidInput(<fluid:dense_plasma>*200);
|
||||
mythindblast10.addItemInput(<contenttweaker:lightning_dragonsteel_ore>);
|
||||
mythindblast10.addItemOutput(<iceandfire:dragonsteel_lightning_ingot>*9);
|
||||
mythindblast10.build();
|
||||
|
||||
val mythindblast11 = RecipeBuilder.newBuilder("mythindblast11","mythic_processor_blaster",2);
|
||||
mythindblast11.addEnergyPerTickInput(200000);
|
||||
mythindblast11.addFluidInput(<fluid:dense_plasma>*30000);
|
||||
mythindblast11.addItemInput(<contenttweaker:hyperuranion_ingot>);
|
||||
mythindblast11.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>);
|
||||
mythindblast11.addItemOutput(<contenttweaker:actualizing_hyperuranion_ingot>);
|
||||
mythindblast11.build();
|
||||
|
||||
@@ -222,3 +222,11 @@ mythindgrind28.addFluidInput(<fluid:essence>*1000);
|
||||
mythindgrind28.addItemInput(<contenttweaker:naquadah_ore>);
|
||||
mythindgrind28.addItemOutput(<contenttweaker:naquadah_chunk>);
|
||||
mythindgrind28.build();
|
||||
|
||||
|
||||
val mythindgrind29 = RecipeBuilder.newBuilder("mythindgrind29","mythic_processor_grinder",2);
|
||||
mythindgrind29.addEnergyPerTickInput(2000000);
|
||||
mythindgrind29.addFluidInput(<fluid:sideral_life_essence>*1000);
|
||||
mythindgrind29.addItemInput(<contenttweaker:ingot_of_infinite_wishes>);
|
||||
mythindgrind29.addItemOutput(<contenttweaker:dust_of_infinite_wishes>*64);
|
||||
mythindgrind29.build();
|
||||
|
||||
@@ -116,14 +116,14 @@ val mythisotop17 = RecipeBuilder.newBuilder("mythisotop17","mythic_processor_iso
|
||||
mythisotop17.addEnergyPerTickInput(80000);
|
||||
mythisotop17.addItemInput(<ore:dustLithium> * 1);
|
||||
mythisotop17.addItemOutput(<nuclearcraft:lithium:2>);
|
||||
mythisotop17.addItemOutput(<nuclearcraft:lithium:1>);
|
||||
mythisotop17.addItemOutput(<nuclearcraft:lithium:1>*3);
|
||||
mythisotop17.build();
|
||||
|
||||
val mythisotop18 = RecipeBuilder.newBuilder("mythisotop18","mythic_processor_isotope_separator",2);
|
||||
mythisotop18.addEnergyPerTickInput(80000);
|
||||
mythisotop18.addItemInput(<ore:ingotLithium> * 1);
|
||||
mythisotop18.addItemOutput(<nuclearcraft:lithium:2>);
|
||||
mythisotop18.addItemOutput(<nuclearcraft:lithium:1>);
|
||||
mythisotop18.addItemOutput(<nuclearcraft:lithium:1>*3);
|
||||
mythisotop18.build();
|
||||
|
||||
val mythisotop19 = RecipeBuilder.newBuilder("mythisotop19","mythic_processor_isotope_separator",2);
|
||||
|
||||
@@ -660,4 +660,66 @@ val mythmelt646 = RecipeBuilder.newBuilder("mythmelt646","mythic_processor_melte
|
||||
mythmelt646.addEnergyPerTickInput(60000);
|
||||
mythmelt646.addItemInput(<contenttweaker:rosidian_ingot>);
|
||||
mythmelt646.addFluidOutput(<fluid:rosidian> * 144);
|
||||
mythmelt646.build();
|
||||
mythmelt646.build();
|
||||
|
||||
val mythmelt647 = RecipeBuilder.newBuilder("mythmelt647","mythic_processor_melter",2);
|
||||
mythmelt647.addEnergyPerTickInput(60000);
|
||||
mythmelt647.addItemInput(<contenttweaker:actualized_starlight_sphere>);
|
||||
mythmelt647.addFluidOutput(<fluid:astralsorcery.liquidstarlight> * 100000);
|
||||
mythmelt647.build();
|
||||
|
||||
val mythmelt648 = RecipeBuilder.newBuilder("mythmelt648","mythic_processor_melter",2);
|
||||
mythmelt648.addEnergyPerTickInput(60000);
|
||||
mythmelt648.addItemInput(<contenttweaker:stormlight_stone>);
|
||||
mythmelt648.addFluidOutput(<fluid:stormlight> * 10000);
|
||||
mythmelt648.build();
|
||||
|
||||
val mythmelt649 = RecipeBuilder.newBuilder("mythmelt649","mythic_processor_melter",2);
|
||||
mythmelt649.addEnergyPerTickInput(60000);
|
||||
mythmelt649.addItemInput(<contenttweaker:stone_of_shadesmar>);
|
||||
mythmelt649.addFluidOutput(<fluid:stormlight> * 100000);
|
||||
mythmelt649.build();
|
||||
|
||||
val mythmelt650 = RecipeBuilder.newBuilder("mythmelt650","mythic_processor_melter",2);
|
||||
mythmelt650.addEnergyPerTickInput(60000);
|
||||
mythmelt650.addItemInput(<contenttweaker:pure_egg>);
|
||||
mythmelt650.addFluidOutput(<fluid:purifying_fluid> * 1000);
|
||||
mythmelt650.build();
|
||||
|
||||
val mythmelt651 = RecipeBuilder.newBuilder("mythmelt651","mythic_processor_melter",2);
|
||||
mythmelt651.addEnergyPerTickInput(60000);
|
||||
mythmelt651.addItemInput(<contenttweaker:purified_titanium_ingot>);
|
||||
mythmelt651.addFluidOutput(<fluid:purified_titanium> * 144);
|
||||
mythmelt651.build();
|
||||
|
||||
val mythmelt652 = RecipeBuilder.newBuilder("mythmelt652","mythic_processor_melter",2);
|
||||
mythmelt652.addEnergyPerTickInput(60000);
|
||||
mythmelt652.addItemInput(<contenttweaker:starmetal_alloy_ingot>);
|
||||
mythmelt652.addFluidOutput(<fluid:starmetal_alloy> * 144);
|
||||
mythmelt652.build();
|
||||
|
||||
val mythmelt653 = RecipeBuilder.newBuilder("mythmelt653","mythic_processor_melter",2);
|
||||
mythmelt653.addEnergyPerTickInput(60000);
|
||||
mythmelt653.addItemInput(<contenttweaker:pure_twilight_matter>);
|
||||
mythmelt653.addFluidOutput(<fluid:twilight_matter> * 1000);
|
||||
mythmelt653.build();
|
||||
|
||||
val mythmelt654 = RecipeBuilder.newBuilder("mythmelt654","mythic_processor_melter",2);
|
||||
mythmelt654.addEnergyPerTickInput(60000);
|
||||
mythmelt654.addItemInput(<contenttweaker:chilled_helium_comb>);
|
||||
mythmelt654.addFluidOutput(<fluid:liquidhelium> * 1000);
|
||||
mythmelt654.build();
|
||||
|
||||
val mythmelt655 = RecipeBuilder.newBuilder("mythmelt655","mythic_processor_melter",2);
|
||||
mythmelt655.addEnergyPerTickInput(60000);
|
||||
mythmelt655.addItemInput(<gendustry:honey_comb:14028>);
|
||||
mythmelt655.addFluidOutput(<fluid:helium> * 1000);
|
||||
mythmelt655.build();
|
||||
|
||||
val mythmelt656 = RecipeBuilder.newBuilder("mythmelt656","mythic_processor_melter",2);
|
||||
mythmelt656.addEnergyPerTickInput(60000);
|
||||
mythmelt656.addItemInput(<ore:dustZirconium>);
|
||||
mythmelt656.addFluidOutput(<fluid:molten_zirconium> * 144);
|
||||
mythmelt656.build();
|
||||
|
||||
|
||||
|
||||
@@ -1290,3 +1290,24 @@ mythpulv206.addItemInput(<ore:itemClay> * 16);
|
||||
mythpulv206.addItemOutput(<techreborn:dust:12>*16);
|
||||
mythpulv206.build();
|
||||
|
||||
|
||||
val mythpulv207 = RecipeBuilder.newBuilder("mythpulv207","mythic_processor_pulverizer",2);
|
||||
mythpulv207.addEnergyPerTickInput(60000);
|
||||
mythpulv207.addItemInput(<contenttweaker:everburning_seed>);
|
||||
mythpulv207.addItemOutput(<contenttweaker:everburning_dust>*32);
|
||||
mythpulv207.build();
|
||||
|
||||
|
||||
val mythpulv208 = RecipeBuilder.newBuilder("mythpulv208","mythic_processor_pulverizer",2);
|
||||
mythpulv208.addEnergyPerTickInput(60000);
|
||||
mythpulv208.addItemInput(<contenttweaker:quasar_charged_gem>);
|
||||
mythpulv208.addItemOutput(<contenttweaker:quasar_charged_dust>*8);
|
||||
mythpulv208.build();
|
||||
|
||||
|
||||
val mythpulv209 = RecipeBuilder.newBuilder("mythpulv209","mythic_processor_pulverizer",2);
|
||||
mythpulv209.addEnergyPerTickInput(60000);
|
||||
mythpulv209.addItemInput(<contenttweaker:neutronium_pearl>);
|
||||
mythpulv209.addItemOutput(<avaritia:resource:2>*10000);
|
||||
mythpulv209.build();
|
||||
|
||||
|
||||
@@ -126,4 +126,15 @@ val mythroll17 = RecipeBuilder.newBuilder("mythroll17","mythic_processor_rolling
|
||||
mythroll17.addEnergyPerTickInput(60000);
|
||||
mythroll17.addItemInput(<ore:plateTitaniumIridium>*4);
|
||||
mythroll17.addItemOutput(<ore:sheetTitaniumIridium>*4);
|
||||
mythroll17.build();
|
||||
mythroll17.build();
|
||||
|
||||
val mythroll18 = RecipeBuilder.newBuilder("mythroll18","mythic_processor_rolling_machine",2);
|
||||
mythroll18.addEnergyPerTickInput(60000);
|
||||
mythroll18.addItemInput(<contenttweaker:divine_ironwood_ingot>);
|
||||
mythroll18.addItemInput(<contenttweaker:myrminiobite_ingot>);
|
||||
mythroll18.addItemInput(<contenttweaker:barathosynium_ingot>);
|
||||
mythroll18.addItemInput(<contenttweaker:deeply_etched_adamantium>);
|
||||
mythroll18.addItemInput(<contenttweaker:everburning_recursion_fragment>);
|
||||
mythroll18.addItemInput(<contenttweaker:infinity_plate>*4);
|
||||
mythroll18.addItemOutput(<contenttweaker:everburning_plating>);
|
||||
mythroll18.build();
|
||||
@@ -30,6 +30,7 @@ mods.chisel.Carving.addVariation("safencfission", <modularmachinery:itemblueprin
|
||||
mods.chisel.Carving.addVariation("safencfission", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hea242"}));
|
||||
mods.chisel.Carving.addVariation("safencfission", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hecm245"}));
|
||||
mods.chisel.Carving.addVariation("safencfission", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hecf249"}));
|
||||
mods.chisel.Carving.addVariation("safencfission", <modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:cryolattice_tbu"}));
|
||||
|
||||
recipes.addShapeless(<modularmachinery:safe_fission_leu235_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:safe_fission_leu235"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
recipes.addShapeless(<modularmachinery:safe_fission_tbu_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:safe_fission_tbu"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
@@ -57,6 +58,7 @@ recipes.addShapeless(<modularmachinery:active_cooled_heu233_controller>,[<modula
|
||||
recipes.addShapeless(<modularmachinery:active_cooled_hea242_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hea242"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
recipes.addShapeless(<modularmachinery:active_cooled_hecm245_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hecm245"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
recipes.addShapeless(<modularmachinery:active_cooled_hecf249_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:active_cooled_hecf249"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
recipes.addShapeless(<modularmachinery:cryolattice_tbu_controller>,[<modularmachinery:itemblueprint>.withTag({dynamicmachine: "modularmachinery:cryolattice_tbu"}).reuse(),<modularmachinery:blockcontroller>]);
|
||||
|
||||
mods.chisel.Carving.addGroup("safencfissioncont");
|
||||
mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:safe_fission_leu235_controller>);
|
||||
@@ -85,6 +87,7 @@ mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:active_c
|
||||
mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:active_cooled_hea242_controller>);
|
||||
mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:active_cooled_hecm245_controller>);
|
||||
mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:active_cooled_hecf249_controller>);
|
||||
mods.chisel.Carving.addVariation("safencfissioncont", <modularmachinery:cryolattice_tbu_controller>);
|
||||
|
||||
|
||||
recipes.addShapeless(<nuclearcraft:depleted_fuel_uranium:4>,
|
||||
@@ -225,4 +228,9 @@ recipes.addShapeless(<contenttweaker:depleted_herrr_fuel>,
|
||||
recipes.addShapeless(<nuclearcraft:depleted_fuel_californium:2>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>,
|
||||
<modularmachinery:active_cooled_hecf249_controller>,
|
||||
<nuclearcraft:fuel_californium:2>]);
|
||||
<nuclearcraft:fuel_californium:2>]);
|
||||
|
||||
recipes.addShapeless(<nuclearcraft:depleted_fuel_thorium:0>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>,
|
||||
<modularmachinery:cryolattice_tbu_controller>,
|
||||
<nuclearcraft:fuel_thorium:0>]);
|
||||
@@ -689,3 +689,84 @@ mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:tomato>*12,
|
||||
25000,
|
||||
<divinerpg:tomato_seeds>,
|
||||
105);
|
||||
|
||||
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<aoa3:heart_fruit>*4,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
<thermalfoundation:fertilizer:0>,
|
||||
25000,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<aoa3:heart_fruit>*8,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
<thermalfoundation:fertilizer:1>,
|
||||
25000,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<aoa3:heart_fruit>*12,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
<thermalfoundation:fertilizer:2>,
|
||||
25000,
|
||||
<aoa3:heart_fruit_seeds>,
|
||||
105);
|
||||
|
||||
|
||||
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:marsine>*4,
|
||||
<divinerpg:marsine_seeds>,
|
||||
<thermalfoundation:fertilizer:0>,
|
||||
25000,
|
||||
<divinerpg:marsine_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:marsine>*8,
|
||||
<divinerpg:marsine_seeds>,
|
||||
<thermalfoundation:fertilizer:1>,
|
||||
25000,
|
||||
<divinerpg:marsine_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:marsine>*12,
|
||||
<divinerpg:marsine_seeds>,
|
||||
<thermalfoundation:fertilizer:2>,
|
||||
25000,
|
||||
<divinerpg:marsine_seeds>,
|
||||
105);
|
||||
|
||||
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:white_mushroom>*4,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
<thermalfoundation:fertilizer:0>,
|
||||
25000,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:white_mushroom>*8,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
<thermalfoundation:fertilizer:1>,
|
||||
25000,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:white_mushroom>*12,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
<thermalfoundation:fertilizer:2>,
|
||||
25000,
|
||||
<divinerpg:white_mushroom_seeds>,
|
||||
105);
|
||||
|
||||
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:moonbulb>*4,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
<thermalfoundation:fertilizer:0>,
|
||||
25000,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:moonbulb>*8,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
<thermalfoundation:fertilizer:1>,
|
||||
25000,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
105);
|
||||
mods.thermalexpansion.Insolator.addRecipeMonoculture(<divinerpg:moonbulb>*12,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
<thermalfoundation:fertilizer:2>,
|
||||
25000,
|
||||
<divinerpg:moonbulb_seeds>,
|
||||
105);
|
||||
@@ -47,3 +47,20 @@ mods.extendedcrafting.TableCrafting.addShaped(<railcraft:coke_oven_red:0>,
|
||||
[[<minecraft:sand:1>, <tconstruct:materials:2>, <minecraft:sand:1>],
|
||||
[<tconstruct:materials:2>, <immersiveengineering:treated_wood>, <tconstruct:materials:2>],
|
||||
[<minecraft:sand:1>, <tconstruct:materials:2>, <minecraft:sand:1>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<railcraft:abyssal_stone>,
|
||||
[[<ore:stone>, <ore:stone>, <ore:stone>],
|
||||
[<ore:stone>, <ore:ingotAbyssalnite>, <ore:stone>],
|
||||
[<ore:stone>, <ore:stone>, <ore:stone>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<railcraft:jaded_stone>,
|
||||
[[<ore:stone>, <ore:gemAscendedJade>, <ore:stone>],
|
||||
[<ore:gemAscendedJade>, <minecraft:ender_pearl>, <ore:gemAscendedJade>],
|
||||
[<ore:stone>, <ore:gemAscendedJade>, <ore:stone>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<railcraft:quarried_stone>,
|
||||
[[<ore:stone>, <ore:stone>, <ore:stone>],
|
||||
[<ore:stone>, <minecraft:clay>, <ore:stone>],
|
||||
[<ore:stone>, <ore:stone>, <ore:stone>]]);
|
||||
|
||||
@@ -2244,6 +2244,8 @@ brewing.addBrew(<minecraft:potion>.withTag({Potion: "mod_lavacow:corrosive"}), <
|
||||
|
||||
brewing.removeRecipe(<minecraft:potion>.withTag({Potion: "extrautils2:xu2.doom"}), <minecraft:gunpowder>);
|
||||
|
||||
brewing.removeRecipe(<minecraft:potion>.withTag({Potion: "extrautils2:xu2.gravity.long"}), <minecraft:redstone>);
|
||||
|
||||
|
||||
recipes.remove(<xtones:base>);
|
||||
recipes.addShaped(<xtones:base>*4,
|
||||
@@ -2448,5 +2450,107 @@ recipes.addShapeless(<botania:rune:15>,
|
||||
[<contenttweaker:runic_altar_automation>, <botania:runealtar>, <botania:opencrate>, <minecraft:comparator>, <botania:twigwand>, <botania:livingrock>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:hiddenpowercallstone_loot>,
|
||||
[<contenttweaker:dungeon_drop>, <contenttweaker:hidden_power_callstone>]);
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:hiddenpowercallstone_loot>, <fluid:water>, <fluid:recursive_life_essence>]);
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<immersivepetroleum:metal_multiblock:3>, <fluid:water>, <fluid:stormlight>]);
|
||||
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:plasma_farm>, <fluid:water>, <fluid:plasma>]);
|
||||
|
||||
mods.nuclearcraft.melter.addRecipe([<ore:ingotAlumite>, <fluid:alumite>*144]);
|
||||
|
||||
|
||||
recipes.remove(<natura:nether_bookshelves:0>);
|
||||
recipes.addShaped(<natura:nether_bookshelves:0>,
|
||||
[[<natura:nether_planks:0>, <minecraft:book>, <natura:nether_planks:0>],
|
||||
[<natura:nether_planks:0>, <minecraft:book>, <natura:nether_planks:0>],
|
||||
[<natura:nether_planks:0>, <minecraft:book>, <natura:nether_planks:0>]]);
|
||||
|
||||
recipes.remove(<natura:nether_bookshelves:1>);
|
||||
recipes.addShaped(<natura:nether_bookshelves:1>,
|
||||
[[<natura:nether_planks:1>, <minecraft:book>, <natura:nether_planks:1>],
|
||||
[<natura:nether_planks:1>, <minecraft:book>, <natura:nether_planks:1>],
|
||||
[<natura:nether_planks:1>, <minecraft:book>, <natura:nether_planks:1>]]);
|
||||
|
||||
recipes.remove(<natura:nether_bookshelves:2>);
|
||||
recipes.addShaped(<natura:nether_bookshelves:2>,
|
||||
[[<natura:nether_planks:2>, <minecraft:book>, <natura:nether_planks:2>],
|
||||
[<natura:nether_planks:2>, <minecraft:book>, <natura:nether_planks:2>],
|
||||
[<natura:nether_planks:2>, <minecraft:book>, <natura:nether_planks:2>]]);
|
||||
|
||||
recipes.remove(<natura:nether_bookshelves:3>);
|
||||
recipes.addShaped(<natura:nether_bookshelves:3>,
|
||||
[[<natura:nether_planks:3>, <minecraft:book>, <natura:nether_planks:3>],
|
||||
[<natura:nether_planks:3>, <minecraft:book>, <natura:nether_planks:3>],
|
||||
[<natura:nether_planks:3>, <minecraft:book>, <natura:nether_planks:3>]]);
|
||||
|
||||
|
||||
mods.nuclearcraft.melter.addRecipe([<contenttweaker:ogerite_ore>, <fluid:ogerite>*360]);
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:jade_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:arlemite_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:realmite_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:limonite_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:rosite_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:rupee_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:amethyst_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:sapphire_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<contenttweaker:netherite_egg>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<chickens:liquid_egg:0>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<chickens:liquid_egg:1>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<forestry:fruits:2>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:5>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:1>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:6>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:3>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:4>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<forestry:fruits:0>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
|
||||
recipes.addShapeless(<extratrees:food:55>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:1>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:3>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:11>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:13>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:14>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:15>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:16>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:17>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:18>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:21>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
recipes.addShapeless(<extratrees:food:38>,
|
||||
[<contenttweaker:multiblock_input_swapping>, <actuallyadditions:block_phantomface>]);
|
||||
|
||||
@@ -519,3 +519,31 @@ recipes.addShapeless(<modularmachinery:active_cooled_hecm245_controller>,
|
||||
|
||||
recipes.addShapeless(<modularmachinery:active_cooled_hea242_controller>,
|
||||
[<modularmachinery:active_cooled_hea242_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:berserker_crucible_controller>,
|
||||
[<modularmachinery:berserker_crucible_controller>]);
|
||||
|
||||
|
||||
recipes.addShapeless(<modularmachinery:orb_of_infinite_wishes_controller>,
|
||||
[<modularmachinery:orb_of_infinite_wishes_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:catalyst_of_balance_controller>,
|
||||
[<modularmachinery:catalyst_of_balance_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:dyson_dynamizer_controller>,
|
||||
[<modularmachinery:dyson_dynamizer_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:dyson_scatterer_controller>,
|
||||
[<modularmachinery:dyson_scatterer_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:dyson_revolver_controller>,
|
||||
[<modularmachinery:dyson_revolver_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:recurrent_nightmare_synthesizer_controller>,
|
||||
[<modularmachinery:recurrent_nightmare_synthesizer_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:dyson_abater_controller>,
|
||||
[<modularmachinery:dyson_abater_controller>]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:black_hole_juicer_controller>,
|
||||
[<modularmachinery:black_hole_juicer_controller>]);
|
||||
|
||||
@@ -0,0 +1,373 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.appliedenergistics2.Inscriber;
|
||||
|
||||
|
||||
mods.nuclearcraft.manufactory.addRecipe([<contenttweaker:alchemical_crystal>, <contenttweaker:alchemical_dust>*18]);
|
||||
|
||||
val mythpulvalchem = RecipeBuilder.newBuilder("mythpulvalchem","mythic_processor_pulverizer",2);
|
||||
mythpulvalchem.addEnergyPerTickInput(60000);
|
||||
mythpulvalchem.addItemInput(<contenttweaker:alchemical_crystal>);
|
||||
mythpulvalchem.addItemOutput(<contenttweaker:alchemical_dust>*18);
|
||||
mythpulvalchem.build();
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:alchemical_dust>*2, <ore:ingotThaumium>, <contenttweaker:arcane_fissile_alloy>]);
|
||||
|
||||
val mythalloalchfiss = RecipeBuilder.newBuilder("mythalloalchfiss","mythic_processor_alloy_furnace",2);
|
||||
mythalloalchfiss.addEnergyPerTickInput(80000);
|
||||
mythalloalchfiss.addItemInput(<contenttweaker:alchemical_dust>*2);
|
||||
mythalloalchfiss.addItemInput(<ore:ingotThaumium>);
|
||||
mythalloalchfiss.addItemOutput(<contenttweaker:arcane_fissile_alloy>);
|
||||
mythalloalchfiss.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.fission.addRecipe([<contenttweaker:arcane_fissile_alloy>, <contenttweaker:depleted_arcane_fissile_alloy>, 86000.0, 1000.0, 52.0, "fissilethaumium", 1.0]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:depleted_arcane_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:safe_fission_leb248_controller>, <contenttweaker:arcane_fissile_alloy>]);
|
||||
|
||||
val twophasarcane1 = RecipeBuilder.newBuilder("twophasarcane1","two_phase_fission_reactor",20);
|
||||
twophasarcane1.addFluidInput(<fluid:nak>*10);
|
||||
twophasarcane1.addFluidInput(<fluid:flibe>*10);
|
||||
twophasarcane1.addFluidInput(<fluid:fluorine>*10);
|
||||
twophasarcane1.addFluidInput(<fluid:water>*10000);
|
||||
twophasarcane1.addFluidOutput(<fluid:high_pressure_steam>*10000);
|
||||
twophasarcane1.addFluidOutput(<fluid:nak_hot>*10);
|
||||
twophasarcane1.addFluidOutput(<fluid:spent_flibe>*10);
|
||||
twophasarcane1.addFluidOutput(<fluid:hot_fluorine>*10);
|
||||
twophasarcane1.addItemInput(<contenttweaker:arcane_fissile_alloy>*4);
|
||||
twophasarcane1.addItemOutput(<contenttweaker:depleted_arcane_fissile_alloy>*4);
|
||||
twophasarcane1.build();
|
||||
|
||||
|
||||
mods.thaumcraft.Crucible.registerRecipe("infusearcanefission", "", <contenttweaker:arcane_fissile_dust>*4, <contenttweaker:depleted_arcane_fissile_alloy>, [<aspect:potentia>*10, <aspect:perditio>*5]);
|
||||
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<materialpart:sednanite:ingot>, <ore:gemDilithium>, <contenttweaker:kampylotitum>*2]);
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:kampylotitum>, <materialpart:lunastone:ingot>, <contenttweaker:elleipsinyum>*2]);
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:elleipsinyum>, <materialpart:fluctuatite:ingot>, <contenttweaker:ekkremesynium>*2]);
|
||||
|
||||
val mythallospacewarp1 = RecipeBuilder.newBuilder("mythallospacewarp1","mythic_processor_alloy_furnace",2);
|
||||
mythallospacewarp1.addEnergyPerTickInput(80000);
|
||||
mythallospacewarp1.addItemInput(<ore:gemDilithium>);
|
||||
mythallospacewarp1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
mythallospacewarp1.addItemOutput(<contenttweaker:kampylotitum>*2);
|
||||
mythallospacewarp1.build();
|
||||
|
||||
val mythallospacewarp2 = RecipeBuilder.newBuilder("mythallospacewarp2","mythic_processor_alloy_furnace",2);
|
||||
mythallospacewarp2.addEnergyPerTickInput(80000);
|
||||
mythallospacewarp2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
mythallospacewarp2.addItemInput(<materialpart:lunastone:ingot>);
|
||||
mythallospacewarp2.addItemOutput(<contenttweaker:elleipsinyum>*2);
|
||||
mythallospacewarp2.build();
|
||||
|
||||
val mythallospacewarp3 = RecipeBuilder.newBuilder("mythallospacewarp3","mythic_processor_alloy_furnace",2);
|
||||
mythallospacewarp3.addEnergyPerTickInput(80000);
|
||||
mythallospacewarp3.addItemInput(<contenttweaker:kampylotitum>);
|
||||
mythallospacewarp3.addItemInput(<materialpart:fluctuatite:ingot>);
|
||||
mythallospacewarp3.addItemOutput(<contenttweaker:ekkremesynium>*2);
|
||||
mythallospacewarp3.build();
|
||||
|
||||
|
||||
val spatcrucarcanefiss1 = RecipeBuilder.newBuilder("spatcrucarcanefiss1","spatial_crucible",2);
|
||||
spatcrucarcanefiss1.addEnergyPerTickInput(80000);
|
||||
spatcrucarcanefiss1.addFluidInput(<fluid:signalum>*1000);
|
||||
spatcrucarcanefiss1.addItemInput(<contenttweaker:arcane_fissile_dust>);
|
||||
spatcrucarcanefiss1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
spatcrucarcanefiss1.addFluidOutput(<fluid:arcane_fissile_matter>*1000);
|
||||
spatcrucarcanefiss1.build();
|
||||
|
||||
val spatcrucarcanefiss2 = RecipeBuilder.newBuilder("spatcrucarcanefiss2","spatial_crucible",2);
|
||||
spatcrucarcanefiss2.addEnergyPerTickInput(80000);
|
||||
spatcrucarcanefiss2.addFluidInput(<fluid:signalum>*5000);
|
||||
spatcrucarcanefiss2.addItemInput(<contenttweaker:arcane_fissile_dust>);
|
||||
spatcrucarcanefiss2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
spatcrucarcanefiss2.addFluidOutput(<fluid:arcane_fissile_matter>*5000);
|
||||
spatcrucarcanefiss2.build();
|
||||
|
||||
val spatcrucarcanefiss3 = RecipeBuilder.newBuilder("spatcrucarcanefiss3","spatial_crucible",2);
|
||||
spatcrucarcanefiss3.addEnergyPerTickInput(80000);
|
||||
spatcrucarcanefiss3.addFluidInput(<fluid:signalum>*20000);
|
||||
spatcrucarcanefiss3.addItemInput(<contenttweaker:arcane_fissile_dust>);
|
||||
spatcrucarcanefiss3.addItemInput(<contenttweaker:elleipsinyum>);
|
||||
spatcrucarcanefiss3.addFluidOutput(<fluid:arcane_fissile_matter>*20000);
|
||||
spatcrucarcanefiss3.build();
|
||||
|
||||
val spatcrucarcanefiss4 = RecipeBuilder.newBuilder("spatcrucarcanefiss4","spatial_crucible",2);
|
||||
spatcrucarcanefiss4.addEnergyPerTickInput(80000);
|
||||
spatcrucarcanefiss4.addFluidInput(<fluid:signalum>*50000);
|
||||
spatcrucarcanefiss4.addItemInput(<contenttweaker:arcane_fissile_dust>);
|
||||
spatcrucarcanefiss4.addItemInput(<contenttweaker:ekkremesynium>);
|
||||
spatcrucarcanefiss4.addFluidOutput(<fluid:arcane_fissile_matter>*50000);
|
||||
spatcrucarcanefiss4.build();
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:arcane_fissile_dust>, <botania:manaresource:0>, <contenttweaker:apothecary_fissile_alloy>]);
|
||||
|
||||
val mythallobotfiss = RecipeBuilder.newBuilder("mythallobotfiss","mythic_processor_alloy_furnace",2);
|
||||
mythallobotfiss.addEnergyPerTickInput(80000);
|
||||
mythallobotfiss.addItemInput(<contenttweaker:arcane_fissile_dust>);
|
||||
mythallobotfiss.addItemInput(<botania:manaresource:0>);
|
||||
mythallobotfiss.addItemOutput(<contenttweaker:apothecary_fissile_alloy>);
|
||||
mythallobotfiss.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.fission.addRecipe([<contenttweaker:apothecary_fissile_alloy>, <contenttweaker:depleted_apothecary_fissile_alloy>, 68000.0, 1000.0, 408.0, "fissilebotan", 1.0]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:depleted_apothecary_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:safe_fission_hecm245_controller>, <contenttweaker:apothecary_fissile_alloy>]);
|
||||
recipes.addShapeless(<contenttweaker:depleted_apothecary_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:active_cooled_hecm245_controller>, <contenttweaker:apothecary_fissile_alloy>]);
|
||||
|
||||
|
||||
val twophasbotan1 = RecipeBuilder.newBuilder("twophasbotan1","two_phase_fission_reactor",20);
|
||||
twophasbotan1.addFluidInput(<fluid:nak>*10);
|
||||
twophasbotan1.addFluidInput(<fluid:flibe>*10);
|
||||
twophasbotan1.addFluidInput(<fluid:fluorine>*10);
|
||||
twophasbotan1.addFluidInput(<fluid:water>*10000);
|
||||
twophasbotan1.addFluidOutput(<fluid:high_pressure_steam>*10000);
|
||||
twophasbotan1.addFluidOutput(<fluid:nak_hot>*10);
|
||||
twophasbotan1.addFluidOutput(<fluid:spent_flibe>*10);
|
||||
twophasbotan1.addFluidOutput(<fluid:hot_fluorine>*10);
|
||||
twophasbotan1.addItemInput(<contenttweaker:apothecary_fissile_alloy>*4);
|
||||
twophasbotan1.addItemOutput(<contenttweaker:depleted_apothecary_fissile_alloy>*4);
|
||||
twophasbotan1.build();
|
||||
|
||||
mods.botania.ManaInfusion.addInfusion(<contenttweaker:apothecary_fissile_dust>*4, <contenttweaker:depleted_apothecary_fissile_alloy>, 100);
|
||||
|
||||
|
||||
val spatcrucapothfiss1 = RecipeBuilder.newBuilder("spatcrucapothfiss1","spatial_crucible",2);
|
||||
spatcrucapothfiss1.addEnergyPerTickInput(80000);
|
||||
spatcrucapothfiss1.addFluidInput(<fluid:enderium>*1000);
|
||||
spatcrucapothfiss1.addItemInput(<contenttweaker:apothecary_fissile_dust>);
|
||||
spatcrucapothfiss1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
spatcrucapothfiss1.addFluidOutput(<fluid:apothecary_fissile_matter>*1000);
|
||||
spatcrucapothfiss1.build();
|
||||
|
||||
val spatcrucapothfiss2 = RecipeBuilder.newBuilder("spatcrucapothfiss2","spatial_crucible",2);
|
||||
spatcrucapothfiss2.addEnergyPerTickInput(80000);
|
||||
spatcrucapothfiss2.addFluidInput(<fluid:enderium>*5000);
|
||||
spatcrucapothfiss2.addItemInput(<contenttweaker:apothecary_fissile_dust>);
|
||||
spatcrucapothfiss2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
spatcrucapothfiss2.addFluidOutput(<fluid:apothecary_fissile_matter>*5000);
|
||||
spatcrucapothfiss2.build();
|
||||
|
||||
val spatcrucapothfiss3 = RecipeBuilder.newBuilder("spatcrucapothfiss3","spatial_crucible",2);
|
||||
spatcrucapothfiss3.addEnergyPerTickInput(80000);
|
||||
spatcrucapothfiss3.addFluidInput(<fluid:enderium>*20000);
|
||||
spatcrucapothfiss3.addItemInput(<contenttweaker:apothecary_fissile_dust>);
|
||||
spatcrucapothfiss3.addItemInput(<contenttweaker:elleipsinyum>);
|
||||
spatcrucapothfiss3.addFluidOutput(<fluid:apothecary_fissile_matter>*20000);
|
||||
spatcrucapothfiss3.build();
|
||||
|
||||
val spatcrucapothfiss4 = RecipeBuilder.newBuilder("spatcrucapothfiss4","spatial_crucible",2);
|
||||
spatcrucapothfiss4.addEnergyPerTickInput(80000);
|
||||
spatcrucapothfiss4.addFluidInput(<fluid:enderium>*50000);
|
||||
spatcrucapothfiss4.addItemInput(<contenttweaker:apothecary_fissile_dust>);
|
||||
spatcrucapothfiss4.addItemInput(<contenttweaker:ekkremesynium>);
|
||||
spatcrucapothfiss4.addFluidOutput(<fluid:apothecary_fissile_matter>*50000);
|
||||
spatcrucapothfiss4.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:apothecary_fissile_dust>, <ore:ingotElvenElementium>, <contenttweaker:silvan_fissile_alloy>]);
|
||||
|
||||
|
||||
val mythalloelvfiss = RecipeBuilder.newBuilder("mythalloelvfiss","mythic_processor_alloy_furnace",2);
|
||||
mythalloelvfiss.addEnergyPerTickInput(80000);
|
||||
mythalloelvfiss.addItemInput(<contenttweaker:apothecary_fissile_dust>);
|
||||
mythalloelvfiss.addItemInput(<ore:ingotElvenElementium>);
|
||||
mythalloelvfiss.addItemOutput(<contenttweaker:silvan_fissile_alloy>);
|
||||
mythalloelvfiss.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.fission.addRecipe([<contenttweaker:silvan_fissile_alloy>, <contenttweaker:depleted_silvan_fissile_alloy>, 53000.0, 1000.0, 360.0, "fissileelven", 1.0]);
|
||||
|
||||
val twophassivan1 = RecipeBuilder.newBuilder("twophassivan1","two_phase_fission_reactor",20);
|
||||
twophassivan1.addFluidInput(<fluid:nak>*10);
|
||||
twophassivan1.addFluidInput(<fluid:flibe>*10);
|
||||
twophassivan1.addFluidInput(<fluid:fluorine>*10);
|
||||
twophassivan1.addFluidInput(<fluid:water>*10000);
|
||||
twophassivan1.addFluidOutput(<fluid:high_pressure_steam>*10000);
|
||||
twophassivan1.addFluidOutput(<fluid:nak_hot>*10);
|
||||
twophassivan1.addFluidOutput(<fluid:spent_flibe>*10);
|
||||
twophassivan1.addFluidOutput(<fluid:hot_fluorine>*10);
|
||||
twophassivan1.addItemInput(<contenttweaker:silvan_fissile_alloy>*4);
|
||||
twophassivan1.addItemOutput(<contenttweaker:depleted_silvan_fissile_alloy>*4);
|
||||
twophassivan1.build();
|
||||
|
||||
|
||||
recipes.addShapeless(<contenttweaker:depleted_silvan_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:safe_fission_heu233_controller>, <contenttweaker:silvan_fissile_alloy>]);
|
||||
recipes.addShapeless(<contenttweaker:depleted_silvan_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:active_cooled_heu233_controller>, <contenttweaker:silvan_fissile_alloy>]);
|
||||
|
||||
|
||||
mods.botania.ElvenTrade.addRecipe([<contenttweaker:silvan_fissile_dust>*4], [<contenttweaker:depleted_silvan_fissile_alloy>]);
|
||||
|
||||
|
||||
val spatcrucsilvafiss1 = RecipeBuilder.newBuilder("spatcrucsilvafiss1","spatial_crucible",2);
|
||||
spatcrucsilvafiss1.addEnergyPerTickInput(80000);
|
||||
spatcrucsilvafiss1.addFluidInput(<fluid:pulsating_iron>*1000);
|
||||
spatcrucsilvafiss1.addItemInput(<contenttweaker:silvan_fissile_dust>);
|
||||
spatcrucsilvafiss1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
spatcrucsilvafiss1.addFluidOutput(<fluid:silvan_fissile_matter>*1000);
|
||||
spatcrucsilvafiss1.build();
|
||||
|
||||
val spatcrucsilvafiss2 = RecipeBuilder.newBuilder("spatcrucsilvafiss2","spatial_crucible",2);
|
||||
spatcrucsilvafiss2.addEnergyPerTickInput(80000);
|
||||
spatcrucsilvafiss2.addFluidInput(<fluid:pulsating_iron>*5000);
|
||||
spatcrucsilvafiss2.addItemInput(<contenttweaker:silvan_fissile_dust>);
|
||||
spatcrucsilvafiss2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
spatcrucsilvafiss2.addFluidOutput(<fluid:silvan_fissile_matter>*5000);
|
||||
spatcrucsilvafiss2.build();
|
||||
|
||||
val spatcrucsilvafiss3 = RecipeBuilder.newBuilder("spatcrucsilvafiss3","spatial_crucible",2);
|
||||
spatcrucsilvafiss3.addEnergyPerTickInput(80000);
|
||||
spatcrucsilvafiss3.addFluidInput(<fluid:pulsating_iron>*20000);
|
||||
spatcrucsilvafiss3.addItemInput(<contenttweaker:silvan_fissile_dust>);
|
||||
spatcrucsilvafiss3.addItemInput(<contenttweaker:elleipsinyum>);
|
||||
spatcrucsilvafiss3.addFluidOutput(<fluid:silvan_fissile_matter>*20000);
|
||||
spatcrucsilvafiss3.build();
|
||||
|
||||
val spatcrucsilvafiss4 = RecipeBuilder.newBuilder("spatcrucsilvafiss4","spatial_crucible",2);
|
||||
spatcrucsilvafiss4.addEnergyPerTickInput(80000);
|
||||
spatcrucsilvafiss4.addFluidInput(<fluid:pulsating_iron>*50000);
|
||||
spatcrucsilvafiss4.addItemInput(<contenttweaker:silvan_fissile_dust>);
|
||||
spatcrucsilvafiss4.addItemInput(<contenttweaker:ekkremesynium>);
|
||||
spatcrucsilvafiss4.addFluidOutput(<fluid:silvan_fissile_matter>*50000);
|
||||
spatcrucsilvafiss4.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:silvan_fissile_dust>, <ore:ingotBloodInfusedIron>, <contenttweaker:innerved_fissile_alloy>]);
|
||||
|
||||
val mythallobloodfiss = RecipeBuilder.newBuilder("mythallobloodfiss","mythic_processor_alloy_furnace",2);
|
||||
mythallobloodfiss.addEnergyPerTickInput(80000);
|
||||
mythallobloodfiss.addItemInput(<contenttweaker:silvan_fissile_dust>);
|
||||
mythallobloodfiss.addItemInput(<ore:ingotBloodInfusedIron>);
|
||||
mythallobloodfiss.addItemOutput(<contenttweaker:innerved_fissile_alloy>);
|
||||
mythallobloodfiss.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.fission.addRecipe([<contenttweaker:innerved_fissile_alloy>, <contenttweaker:depleted_innerved_fissile_alloy>, 43000.0, 1000.0, 112.0, "fissileblood", 1.0]);
|
||||
|
||||
val twophasblood1 = RecipeBuilder.newBuilder("twophasblood1","two_phase_fission_reactor",20);
|
||||
twophasblood1.addFluidInput(<fluid:nak>*10);
|
||||
twophasblood1.addFluidInput(<fluid:flibe>*10);
|
||||
twophasblood1.addFluidInput(<fluid:fluorine>*10);
|
||||
twophasblood1.addFluidInput(<fluid:water>*10000);
|
||||
twophasblood1.addFluidOutput(<fluid:high_pressure_steam>*10000);
|
||||
twophasblood1.addFluidOutput(<fluid:nak_hot>*10);
|
||||
twophasblood1.addFluidOutput(<fluid:spent_flibe>*10);
|
||||
twophasblood1.addFluidOutput(<fluid:hot_fluorine>*10);
|
||||
twophasblood1.addItemInput(<contenttweaker:innerved_fissile_alloy>*4);
|
||||
twophasblood1.addItemOutput(<contenttweaker:depleted_innerved_fissile_alloy>*4);
|
||||
twophasblood1.build();
|
||||
|
||||
recipes.addShapeless(<contenttweaker:depleted_innerved_fissile_alloy>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>, <modularmachinery:safe_fission_lecm243_controller>, <contenttweaker:innerved_fissile_alloy>]);
|
||||
|
||||
|
||||
mods.bloodmagic.BloodAltar.addRecipe(<contenttweaker:innerved_fissile_dust>*4, <contenttweaker:depleted_innerved_fissile_alloy>, 1, 100, 100, 100);
|
||||
|
||||
val spatcrucinnerfiss1 = RecipeBuilder.newBuilder("spatcrucinnerfiss1","spatial_crucible",2);
|
||||
spatcrucinnerfiss1.addEnergyPerTickInput(80000);
|
||||
spatcrucinnerfiss1.addFluidInput(<fluid:energetic_alloy>*1000);
|
||||
spatcrucinnerfiss1.addItemInput(<contenttweaker:innerved_fissile_dust>);
|
||||
spatcrucinnerfiss1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
spatcrucinnerfiss1.addFluidOutput(<fluid:innerved_fissile_matter>*1000);
|
||||
spatcrucinnerfiss1.build();
|
||||
|
||||
val spatcrucinnerfiss2 = RecipeBuilder.newBuilder("spatcrucinnerfiss2","spatial_crucible",2);
|
||||
spatcrucinnerfiss2.addEnergyPerTickInput(80000);
|
||||
spatcrucinnerfiss2.addFluidInput(<fluid:energetic_alloy>*5000);
|
||||
spatcrucinnerfiss2.addItemInput(<contenttweaker:innerved_fissile_dust>);
|
||||
spatcrucinnerfiss2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
spatcrucinnerfiss2.addFluidOutput(<fluid:innerved_fissile_matter>*5000);
|
||||
spatcrucinnerfiss2.build();
|
||||
|
||||
val spatcrucinnerfiss3 = RecipeBuilder.newBuilder("spatcrucinnerfiss3","spatial_crucible",2);
|
||||
spatcrucinnerfiss3.addEnergyPerTickInput(80000);
|
||||
spatcrucinnerfiss3.addFluidInput(<fluid:energetic_alloy>*20000);
|
||||
spatcrucinnerfiss3.addItemInput(<contenttweaker:innerved_fissile_dust>);
|
||||
spatcrucinnerfiss3.addItemInput(<contenttweaker:elleipsinyum>);
|
||||
spatcrucinnerfiss3.addFluidOutput(<fluid:innerved_fissile_matter>*20000);
|
||||
spatcrucinnerfiss3.build();
|
||||
|
||||
val spatcrucinnerfiss4 = RecipeBuilder.newBuilder("spatcrucinnerfiss4","spatial_crucible",2);
|
||||
spatcrucinnerfiss4.addEnergyPerTickInput(80000);
|
||||
spatcrucinnerfiss4.addFluidInput(<fluid:energetic_alloy>*50000);
|
||||
spatcrucinnerfiss4.addItemInput(<contenttweaker:innerved_fissile_dust>);
|
||||
spatcrucinnerfiss4.addItemInput(<contenttweaker:ekkremesynium>);
|
||||
spatcrucinnerfiss4.addFluidOutput(<fluid:innerved_fissile_matter>*50000);
|
||||
spatcrucinnerfiss4.build();
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:innerved_fissile_dust>, <astralsorcery:itemcraftingcomponent:4>, <contenttweaker:radiant_fissile_alloy>]);
|
||||
|
||||
val mythallostarfiss = RecipeBuilder.newBuilder("mythallostarfiss","mythic_processor_alloy_furnace",2);
|
||||
mythallostarfiss.addEnergyPerTickInput(80000);
|
||||
mythallostarfiss.addItemInput(<contenttweaker:innerved_fissile_dust>);
|
||||
mythallostarfiss.addItemInput(<astralsorcery:itemcraftingcomponent:4>);
|
||||
mythallostarfiss.addItemOutput(<contenttweaker:radiant_fissile_alloy>);
|
||||
mythallostarfiss.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.fission.addRecipe([<contenttweaker:radiant_fissile_alloy>, <contenttweaker:depleted_radiant_fissile_alloy>, 100000.0, 1000.0, 1.0, "fissilestar", 1.0]);
|
||||
|
||||
val twophasastral1 = RecipeBuilder.newBuilder("twophasastral1","two_phase_fission_reactor",20);
|
||||
twophasastral1.addFluidInput(<fluid:nak>*10);
|
||||
twophasastral1.addFluidInput(<fluid:flibe>*10);
|
||||
twophasastral1.addFluidInput(<fluid:fluorine>*10);
|
||||
twophasastral1.addFluidInput(<fluid:water>*10000);
|
||||
twophasastral1.addFluidOutput(<fluid:high_pressure_steam>*10000);
|
||||
twophasastral1.addFluidOutput(<fluid:nak_hot>*10);
|
||||
twophasastral1.addFluidOutput(<fluid:spent_flibe>*10);
|
||||
twophasastral1.addFluidOutput(<fluid:hot_fluorine>*10);
|
||||
twophasastral1.addItemInput(<contenttweaker:radiant_fissile_alloy>*4);
|
||||
twophasastral1.addItemOutput(<contenttweaker:depleted_radiant_fissile_alloy>*4);
|
||||
twophasastral1.build();
|
||||
|
||||
|
||||
mods.astralsorcery.StarlightInfusion.addInfusion(<contenttweaker:depleted_radiant_fissile_alloy>, <contenttweaker:radiant_fissile_dust>*4, true, 0.1, 10);
|
||||
|
||||
|
||||
val whisperfountfiss = RecipeBuilder.newBuilder("whisperfountfiss","whispering_infusion_fountain",2);
|
||||
whisperfountfiss.addFluidInput(<fluid:whispering_starlight>*10);
|
||||
whisperfountfiss.addItemInput(<contenttweaker:depleted_radiant_fissile_alloy>);
|
||||
whisperfountfiss.addItemOutput(<contenttweaker:radiant_fissile_dust>*4);
|
||||
whisperfountfiss.build();
|
||||
|
||||
|
||||
|
||||
val spatcrucradiafiss1 = RecipeBuilder.newBuilder("spatcrucradiafiss1","spatial_crucible",2);
|
||||
spatcrucradiafiss1.addEnergyPerTickInput(80000);
|
||||
spatcrucradiafiss1.addFluidInput(<fluid:vibrant_alloy>*1000);
|
||||
spatcrucradiafiss1.addItemInput(<contenttweaker:radiant_fissile_dust>);
|
||||
spatcrucradiafiss1.addItemInput(<materialpart:sednanite:ingot>);
|
||||
spatcrucradiafiss1.addFluidOutput(<fluid:radiant_fissile_matter>*1000);
|
||||
spatcrucradiafiss1.build();
|
||||
|
||||
val spatcrucradiafiss2 = RecipeBuilder.newBuilder("spatcrucradiafiss2","spatial_crucible",2);
|
||||
spatcrucradiafiss2.addEnergyPerTickInput(80000);
|
||||
spatcrucradiafiss2.addFluidInput(<fluid:vibrant_alloy>*5000);
|
||||
spatcrucradiafiss2.addItemInput(<contenttweaker:radiant_fissile_dust>);
|
||||
spatcrucradiafiss2.addItemInput(<contenttweaker:kampylotitum>);
|
||||
spatcrucradiafiss2.addFluidOutput(<fluid:radiant_fissile_matter>*5000);
|
||||
spatcrucradiafiss2.build();
|
||||
|
||||
val spatcrucradiafiss3 = RecipeBuilder.newBuilder("spatcrucradiafiss3","spatial_crucible",2);
|
||||
spatcrucradiafiss3.addEnergyPerTickInput(80000);
|
||||
spatcrucradiafiss3.addFluidInput(<fluid:vibrant_alloy>*20000);
|
||||
spatcrucradiafiss3.addItemInput(<contenttweaker:radiant_fissile_dust>);
|
||||
spatcrucradiafiss3.addItemInput(<contenttweaker:elleipsinyum>);
|
||||
spatcrucradiafiss3.addFluidOutput(<fluid:radiant_fissile_matter>*20000);
|
||||
spatcrucradiafiss3.build();
|
||||
|
||||
val spatcrucradiafiss4 = RecipeBuilder.newBuilder("spatcrucradiafiss4","spatial_crucible",2);
|
||||
spatcrucradiafiss4.addEnergyPerTickInput(80000);
|
||||
spatcrucradiafiss4.addFluidInput(<fluid:vibrant_alloy>*50000);
|
||||
spatcrucradiafiss4.addItemInput(<contenttweaker:radiant_fissile_dust>);
|
||||
spatcrucradiafiss4.addItemInput(<contenttweaker:ekkremesynium>);
|
||||
spatcrucradiafiss4.addFluidOutput(<fluid:radiant_fissile_matter>*50000);
|
||||
spatcrucradiafiss4.build();
|
||||
@@ -0,0 +1,704 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.appliedenergistics2.Inscriber;
|
||||
import crafttweaker.data.IData;
|
||||
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infrecursiondimascension", "",
|
||||
<contenttweaker:recursion_of_dimensional_ascension>, 10,
|
||||
[<aspect:aer>*10000, <aspect:ignis>*10000, <aspect:aqua>*10000, <aspect:terra>*10000, <aspect:ordo>*10000, <aspect:perditio>*10000, <aspect:vitium>*10000],
|
||||
<contenttweaker:gem_of_dimensional_ascension>,
|
||||
[<contenttweaker:ingot_of_infinite_wishes>, <gendustry:gene_sample>.withTag({species: "rootBees", chromosome: 0, allele: "careerbees.energy"}),
|
||||
<avaritiaitem:cosmic_fractal_catalyzer>, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:ingot_of_infinite_wishes>, <gendustry:gene_sample>.withTag({species: "rootBees", chromosome: 0, allele: "careerbees.energy"}),
|
||||
<avaritiaitem:cosmic_fractal_catalyzer>, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:ingot_of_infinite_wishes>, <gendustry:gene_sample>.withTag({species: "rootBees", chromosome: 0, allele: "careerbees.energy"}),
|
||||
<avaritiaitem:cosmic_fractal_catalyzer>, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:ingot_of_infinite_wishes>, <gendustry:gene_sample>.withTag({species: "rootBees", chromosome: 0, allele: "careerbees.energy"}),
|
||||
<avaritiaitem:cosmic_fractal_catalyzer>, <contenttweaker:fractallite_quantum>]);
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infgreatnighmareblock", "",
|
||||
<contenttweaker:recurring_nightmare_block>, 10,
|
||||
[<aspect:gelum>*10000, <aspect:vacuos>*10000, <aspect:permutatio>*10000, <aspect:mortuus>*10000, <aspect:ventus>*10000, <aspect:fluctus>*10000],
|
||||
<contenttweaker:nightmare_block>,
|
||||
[<contenttweaker:echo_warren_alloy>, <contenttweaker:nightmare_of_annoyance>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:nightmare_of_annoyance>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:nightmare_of_annoyance>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:nightmare_of_annoyance>]);
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infechowarrenstone", "",
|
||||
<contenttweaker:echo_warren_stone>, 10,
|
||||
[<aspect:alienis>*10000, <aspect:praecantatio>*10000, <aspect:caeles>*10000, <aspect:mythus>*10000],
|
||||
<contenttweaker:fractal_stone>,
|
||||
[<contenttweaker:echo_warren_alloy>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:echo_warren_alloy>, <contenttweaker:light_of_shadesmar>]);
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infstoneworthiness", "",
|
||||
<contenttweaker:stone_of_worthiness>, 10,
|
||||
[<aspect:caeles>*2000, <aspect:mythus>*2000],
|
||||
<contenttweaker:fractal_stone>,
|
||||
[<contenttweaker:essence_of_worthiness>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:essence_of_worthiness>, <contenttweaker:light_of_shadesmar>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:light_of_shadesmar>]);
|
||||
|
||||
|
||||
val catalystbalance0 = RecipeBuilder.newBuilder("catalystbalance0","catalyst_of_balance",20);
|
||||
catalystbalance0.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance0.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>);
|
||||
catalystbalance0.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
catalystbalance0.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
catalystbalance0.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>*4);
|
||||
catalystbalance0.build();
|
||||
|
||||
|
||||
|
||||
val catalystbalance1 = RecipeBuilder.newBuilder("catalystbalance1","catalyst_of_balance",20);
|
||||
catalystbalance1.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance1.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>);
|
||||
catalystbalance1.addItemInput(<aoa3:abyss_tokens>*4);
|
||||
catalystbalance1.addItemInput(<aoa3:lelyetia_tokens>*4);
|
||||
catalystbalance1.addItemInput(<aoa3:precasian_tokens>*4);
|
||||
catalystbalance1.addItemInput(<aoa3:baron_tokens>*4);
|
||||
catalystbalance1.addItemInput(<aoa3:creeponia_tokens>*4);
|
||||
catalystbalance1.addItemInput(<aoa3:deeplands_tokens>*4);
|
||||
catalystbalance1.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 I§r"]}}));
|
||||
catalystbalance1.build();
|
||||
|
||||
|
||||
val catalystbalance2 = RecipeBuilder.newBuilder("catalystbalance2","catalyst_of_balance",20);
|
||||
catalystbalance2.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance2.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 I§r"]}}));
|
||||
catalystbalance2.addItemInput(<aoa3:vox_ponds_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:mysterium_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:candyland_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:haven_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:iromine_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:celeve_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:gardencia_tokens>*4);
|
||||
catalystbalance2.addItemInput(<aoa3:crystevia_tokens>*4);
|
||||
catalystbalance2.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 II§r"]}}));
|
||||
catalystbalance2.build();
|
||||
|
||||
|
||||
val catalystbalance3 = RecipeBuilder.newBuilder("catalystbalance3","catalyst_of_balance",20);
|
||||
catalystbalance3.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance3.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 II§r"]}}));
|
||||
catalystbalance3.addItemInput(<aoa3:runandor_tokens>*4);
|
||||
catalystbalance3.addItemInput(<aoa3:lunar_tokens>*4);
|
||||
catalystbalance3.addItemInput(<aoa3:borean_tokens>*4);
|
||||
catalystbalance3.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 III§r"]}}));
|
||||
catalystbalance3.build();
|
||||
|
||||
val catalystbalance4 = RecipeBuilder.newBuilder("catalystbalance4","catalyst_of_balance",20);
|
||||
catalystbalance4.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance4.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 III§r"]}}));
|
||||
catalystbalance4.addItemInput(<aoa3:dungeon_tokens>*4);
|
||||
catalystbalance4.addItemInput(<aoa3:dustopia_tokens>*4);
|
||||
catalystbalance4.addItemInput(<aoa3:greckon_tokens>*4);
|
||||
catalystbalance4.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 IV§r"]}}));
|
||||
catalystbalance4.build();
|
||||
|
||||
val catalystbalance5 = RecipeBuilder.newBuilder("catalystbalance5","catalyst_of_balance",20);
|
||||
catalystbalance5.addEnergyPerTickInput(2000000000);
|
||||
catalystbalance5.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 IV§r"]}}));
|
||||
catalystbalance5.addItemInput(<aoa3:shyrelands_tokens>*4);
|
||||
catalystbalance5.addItemOutput(<contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 V§r"]}}));
|
||||
catalystbalance5.build();
|
||||
|
||||
|
||||
val inffurnechowarrenalloy = RecipeBuilder.newBuilder("inffurnechowarrenalloy","infinity_furnace",5);
|
||||
inffurnechowarrenalloy.addFluidInput(<fluid:recursive_computing_matter>*1000);
|
||||
inffurnechowarrenalloy.addItemInput(<contenttweaker:recursion_of_dimensional_ascension>);
|
||||
inffurnechowarrenalloy.addItemInput(<ore:ingotFractalliteHalite>);
|
||||
inffurnechowarrenalloy.addItemInput(<avaritia:resource:6>*2);
|
||||
inffurnechowarrenalloy.addItemInput(<contenttweaker:warren_shard>);
|
||||
inffurnechowarrenalloy.addItemOutput(<contenttweaker:echo_warren_alloy>*3);
|
||||
inffurnechowarrenalloy.build();
|
||||
|
||||
val inffurnfinalwarrenalloy = RecipeBuilder.newBuilder("inffurnfinalwarrenalloy","infinity_furnace",5);
|
||||
inffurnfinalwarrenalloy.addFluidInput(<fluid:recursive_computing_matter>*5000000);
|
||||
inffurnfinalwarrenalloy.addItemInput(<contenttweaker:echo_warren_alloy>);
|
||||
inffurnfinalwarrenalloy.addItemInput(<contenttweaker:eleint_stone>);
|
||||
inffurnfinalwarrenalloy.addItemInput(<contenttweaker:ingot_of_infinite_wishes>);
|
||||
inffurnfinalwarrenalloy.addItemInput(<contenttweaker:cleansed_brightsteel_alloy_plate>);
|
||||
inffurnfinalwarrenalloy.addItemInput(<ore:ingotFractalliteHalite>*8);
|
||||
inffurnfinalwarrenalloy.addItemOutput(<contenttweaker:actualized_warren_alloy>);
|
||||
inffurnfinalwarrenalloy.build();
|
||||
|
||||
|
||||
val inffurnallthedraconium = RecipeBuilder.newBuilder("inffurnallthedraconium","infinity_furnace",20);
|
||||
inffurnallthedraconium.addFluidInput(<fluid:starmetal_alloy>*100);
|
||||
inffurnallthedraconium.addItemInput(<contenttweaker:ascended_draconic_alloy>);
|
||||
inffurnallthedraconium.addItemInput(<contenttweaker:meteoric_draconic_stone>*8);
|
||||
inffurnallthedraconium.addItemInput(<contenttweaker:energetic_draconium_ingot>*12);
|
||||
inffurnallthedraconium.addItemInput(<draconicevolution:chaos_shard:0>);
|
||||
inffurnallthedraconium.addItemInput(<draconicevolution:awakened_core>);
|
||||
inffurnallthedraconium.addItemOutput(<contenttweaker:fiery_recursion_fragment>);
|
||||
inffurnallthedraconium.build();
|
||||
|
||||
|
||||
|
||||
val arcautinfdracshades = RecipeBuilder.newBuilder("arcautinfdracshades","arcane_autoinfuser",60);
|
||||
arcautinfdracshades.addEnergyPerTickInput(1000000000);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:lux_vis_condensate>);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:draco_vis_condensate>);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:alienis_vis_condensate>);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:ignis_vis_condensate>);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:fiery_recursion_fragment>*4);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:light_of_shadesmar>*2);
|
||||
arcautinfdracshades.addItemInput(<avaritia:block_resource:1>*2);
|
||||
arcautinfdracshades.addItemInput(<contenttweaker:everburning_dust>*4);
|
||||
arcautinfdracshades.addItemOutput(<contenttweaker:everburning_recursion_fragment>*4);
|
||||
arcautinfdracshades.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:space_time_beam>*12,
|
||||
[[<contenttweaker:infinite_tainted_plate>, <contenttweaker:phasing_alloy_plate>, <tconstruct:tough_tool_rod>.withTag({Material: "adamantium"}), <contenttweaker:phasing_alloy_plate>, <contenttweaker:infinite_tainted_plate>],
|
||||
[<contenttweaker:phasing_alloy_plate>, <contenttweaker:exotic_dyson_conduit>, <contenttweaker:balanced_machine_casing>, <contenttweaker:exotic_dyson_conduit>, <contenttweaker:phasing_alloy_plate>],
|
||||
[<tconstruct:tough_tool_rod>.withTag({Material: "vibranium_alloy"}), <contenttweaker:balanced_machine_casing>, <contenttweaker:recursion_of_dimensional_ascension>.withTag({display: {Lore: ["§d§o叠壳 V§r"]}}), <contenttweaker:balanced_machine_casing>, <tconstruct:tough_tool_rod>.withTag({Material: "vibranium_alloy"})],
|
||||
[<contenttweaker:phasing_alloy_plate>, <contenttweaker:exotic_dyson_conduit>, <contenttweaker:balanced_machine_casing>, <contenttweaker:exotic_dyson_conduit>, <contenttweaker:phasing_alloy_plate>],
|
||||
[<contenttweaker:infinite_tainted_plate>, <contenttweaker:phasing_alloy_plate>, <tconstruct:tough_tool_rod>.withTag({Material: "adamantium"}), <contenttweaker:phasing_alloy_plate>, <contenttweaker:infinite_tainted_plate>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:quasar_stabilizer>*4,
|
||||
[[<contenttweaker:horizon_sustainer>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:defined_plate>, <contenttweaker:everburning_plating>, <contenttweaker:defined_plate>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:horizon_sustainer>],
|
||||
[<contenttweaker:perfected_gallifreyan_plate>, <avaritiaitem:self_actualizing_stone>, <glassential:glass_light>, <contenttweaker:balanced_machine_casing>, <glassential:glass_light>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:perfected_gallifreyan_plate>],
|
||||
[<contenttweaker:defined_plate>, <glassential:glass_light>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_redstone>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_light>, <contenttweaker:defined_plate>],
|
||||
[<contenttweaker:everburning_plating>, <contenttweaker:balanced_machine_casing>, <glassential:glass_redstone>, <contenttweaker:hypercapacitor_discharger_x1024>, <glassential:glass_redstone>, <contenttweaker:balanced_machine_casing>, <contenttweaker:everburning_plating>],
|
||||
[<contenttweaker:defined_plate>, <glassential:glass_light>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_redstone>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_light>, <contenttweaker:defined_plate>],
|
||||
[<contenttweaker:perfected_gallifreyan_plate>, <avaritiaitem:self_actualizing_stone>, <glassential:glass_light>, <contenttweaker:balanced_machine_casing>, <glassential:glass_light>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:perfected_gallifreyan_plate>],
|
||||
[<contenttweaker:horizon_sustainer>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:defined_plate>, <contenttweaker:everburning_plating>, <contenttweaker:defined_plate>, <contenttweaker:perfected_gallifreyan_plate>, <contenttweaker:horizon_sustainer>]]);
|
||||
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<contenttweaker:quasar_charged_gem>, <fluid:pure_recursion>*100, <fluid:doped_recursion>*100]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<glassential:glass_ethereal_reverse>*12,
|
||||
[[<contenttweaker:hyperuranion_casing>, <contenttweaker:brightsteel_conduit>, <contenttweaker:unidentified_plate>, <contenttweaker:trinity_ingot>, <contenttweaker:unidentified_plate>, <contenttweaker:brightsteel_conduit>, <contenttweaker:hyperuranion_casing>],
|
||||
[<contenttweaker:brightsteel_conduit>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <glassential:glass_ghostly>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <contenttweaker:brightsteel_conduit>],
|
||||
[<contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <glassential:glass_ghostly>, <ore:ingotFractalliteHalite>, <glassential:glass_ghostly>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>],
|
||||
[<contenttweaker:trinity_ingot>, <glassential:glass_ghostly>, <ore:ingotFractalliteHalite>, <contenttweaker:balanced_machine_casing>, <ore:ingotFractalliteHalite>, <glassential:glass_ghostly>, <contenttweaker:trinity_ingot>],
|
||||
[<contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <glassential:glass_ghostly>, <ore:ingotFractalliteHalite>, <glassential:glass_ghostly>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>],
|
||||
[<contenttweaker:brightsteel_conduit>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <glassential:glass_ghostly>, <contenttweaker:unidentified_plate>, <contenttweaker:unidentified_plate>, <contenttweaker:brightsteel_conduit>],
|
||||
[<contenttweaker:hyperuranion_casing>, <contenttweaker:brightsteel_conduit>, <contenttweaker:unidentified_plate>, <contenttweaker:trinity_ingot>, <contenttweaker:unidentified_plate>, <contenttweaker:brightsteel_conduit>, <contenttweaker:hyperuranion_casing>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:galaxy_conduit>*12,
|
||||
[[<contenttweaker:infinity_dyson_conduit>, <contenttweaker:irradiator_casing>, <contenttweaker:irradiator_casing>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:irradiator_casing>, <contenttweaker:irradiator_casing>, <contenttweaker:infinity_dyson_conduit>],
|
||||
[<contenttweaker:irradiator_casing>, <contenttweaker:entropy_director_element>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:entropy_director_element>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:entropy_director_element>, <contenttweaker:irradiator_casing>],
|
||||
[<contenttweaker:irradiator_casing>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:quantum_shard>, <contenttweaker:everburning_plating>, <contenttweaker:quantum_shard>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:irradiator_casing>],
|
||||
[<contenttweaker:infinity_dyson_conduit>, <contenttweaker:entropy_director_element>, <contenttweaker:everburning_plating>, <contenttweaker:balanced_machine_casing>, <contenttweaker:everburning_plating>, <contenttweaker:entropy_director_element>, <contenttweaker:infinity_dyson_conduit>],
|
||||
[<contenttweaker:irradiator_casing>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:quantum_shard>, <contenttweaker:everburning_plating>, <contenttweaker:quantum_shard>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:irradiator_casing>],
|
||||
[<contenttweaker:irradiator_casing>, <contenttweaker:entropy_director_element>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:entropy_director_element>, <contenttweaker:high_energy_ray_collector>, <contenttweaker:entropy_director_element>, <contenttweaker:irradiator_casing>],
|
||||
[<contenttweaker:infinity_dyson_conduit>, <contenttweaker:irradiator_casing>, <contenttweaker:irradiator_casing>, <contenttweaker:infinity_dyson_conduit>, <contenttweaker:irradiator_casing>, <contenttweaker:irradiator_casing>, <contenttweaker:infinity_dyson_conduit>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.EnderCrafting.addShaped(<contenttweaker:quasar_screen>,
|
||||
[[<contenttweaker:balanced_machine_casing>, <contenttweaker:hypercubic_energy_orb>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:hypercubic_energy_orb>, <contenttweaker:pulsar_screen>, <contenttweaker:hypercubic_energy_orb>],
|
||||
[<contenttweaker:balanced_machine_casing>, <contenttweaker:hypercubic_energy_orb>, <contenttweaker:balanced_machine_casing>]],
|
||||
10);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:ascended_fluix_etcher>,
|
||||
[[<contenttweaker:opalescent_matter>, <plustic:laser_medium>.withTag({Material: "fluixcrystal_plustic"}), <contenttweaker:opalescent_matter>],
|
||||
[<avaritiaitem:spatial_processor>, <contenttweaker:fluix_etcher>, <avaritiaitem:spatial_processor>],
|
||||
[<contenttweaker:opalescent_matter>, <plustic:laser_medium>.withTag({Material: "starmetal"}), <contenttweaker:opalescent_matter>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:naquadah_casing>,
|
||||
[[<contenttweaker:opalescent_matter>, <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:opalescent_matter>],
|
||||
[<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:naquadah_catalyst>, <contenttweaker:hyperuranon_actualizing_fabrial>],
|
||||
[<contenttweaker:opalescent_matter>, <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:opalescent_matter>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:galaxy_accelerator>*8,
|
||||
[[<contenttweaker:plasma_accelerator_tube>, <contenttweaker:mirroring_mithminite_prism>, <contenttweaker:defined_servo>, <contenttweaker:mirroring_mithminite_prism>, <contenttweaker:plasma_accelerator_tube>],
|
||||
[<contenttweaker:mirroring_mithminite_prism>, <contenttweaker:mythic_coil_t3>, <contenttweaker:defined_servo>, <contenttweaker:mythic_coil_t3>, <contenttweaker:mirroring_mithminite_prism>],
|
||||
[<contenttweaker:defined_servo>, <contenttweaker:defined_servo>, <contenttweaker:naquadah_casing>, <contenttweaker:defined_servo>, <contenttweaker:defined_servo>],
|
||||
[<contenttweaker:mirroring_mithminite_prism>, <contenttweaker:mythic_coil_t3>, <contenttweaker:defined_servo>, <contenttweaker:mythic_coil_t3>, <contenttweaker:mirroring_mithminite_prism>],
|
||||
[<contenttweaker:plasma_accelerator_tube>, <contenttweaker:mirroring_mithminite_prism>, <contenttweaker:defined_servo>, <contenttweaker:mirroring_mithminite_prism>, <contenttweaker:plasma_accelerator_tube>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:dark_matter_scattering_element>,
|
||||
[[<contenttweaker:alchemically_hyperactive_crystal>, <contenttweaker:fluctuatite_stabilizer>, <contenttweaker:stable_orbiting_device>, <contenttweaker:fluctuatite_stabilizer>, <contenttweaker:alchemically_hyperactive_crystal>],
|
||||
[<contenttweaker:fluctuatite_stabilizer>, <contenttweaker:trinity_ingot>, <openblocks:tank>.withTag({tank: {FluidName: "fluctuatite", Amount: 16000}}), <contenttweaker:trinity_ingot>, <contenttweaker:fluctuatite_stabilizer>],
|
||||
[<contenttweaker:stable_orbiting_device>, <extendedcrafting:singularity_custom:630>, <contenttweaker:definer_casing>, <extendedcrafting:singularity_custom:630>, <contenttweaker:stable_orbiting_device>],
|
||||
[<contenttweaker:fluctuatite_stabilizer>, <contenttweaker:trinity_ingot>, <openblocks:tank>.withTag({tank: {FluidName: "fluctuatite", Amount: 16000}}), <contenttweaker:trinity_ingot>, <contenttweaker:fluctuatite_stabilizer>],
|
||||
[<contenttweaker:alchemically_hyperactive_crystal>, <contenttweaker:fluctuatite_stabilizer>, <contenttweaker:stable_orbiting_device>, <contenttweaker:fluctuatite_stabilizer>, <contenttweaker:alchemically_hyperactive_crystal>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:dark_matter_node>,
|
||||
[[<contenttweaker:balanced_machine_casing>, <contenttweaker:fractallite_quantum>, <contenttweaker:dark_matter_scattering_element>, <contenttweaker:fractallite_quantum>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:fractallite_quantum>, <contenttweaker:empowered_gravitite>, <contenttweaker:nightmare_block>, <contenttweaker:empowered_gravitite>, <contenttweaker:fractallite_quantum>],
|
||||
[<contenttweaker:dark_matter_scattering_element>, <contenttweaker:nightmare_block>, <contenttweaker:naquadah_casing>, <contenttweaker:nightmare_block>, <contenttweaker:dark_matter_scattering_element>],
|
||||
[<contenttweaker:fractallite_quantum>, <contenttweaker:empowered_gravitite>, <contenttweaker:nightmare_block>, <contenttweaker:empowered_gravitite>, <contenttweaker:fractallite_quantum>],
|
||||
[<contenttweaker:balanced_machine_casing>, <contenttweaker:fractallite_quantum>, <contenttweaker:dark_matter_scattering_element>, <contenttweaker:fractallite_quantum>, <contenttweaker:balanced_machine_casing>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:fractal_metal_plate>,
|
||||
[[<forestry:bee_combs:2>, <mod_lavacow:moltenhammer>.reuse(), <extrabees:honey_comb:12>],
|
||||
[<extrabees:honey_drop:5>, <contenttweaker:fractal_metal_clump>, <extrabees:honey_drop:5>],
|
||||
[<extrabees:honey_comb:30>, <extrabees:honey_drop:5>, <extrabees:honey_comb:27>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:cosmic_balance_coil>*8,
|
||||
[[<contenttweaker:trinity_ingot>, <contenttweaker:fractal_metal_plate>, <contenttweaker:mythic_coil_t3>, <contenttweaker:fractal_metal_plate>, <contenttweaker:trinity_ingot>],
|
||||
[<contenttweaker:fractal_metal_plate>, <contenttweaker:trinity_ingot>, <contenttweaker:balanced_machine_casing>, <contenttweaker:trinity_ingot>, <contenttweaker:fractal_metal_plate>],
|
||||
[<contenttweaker:mythic_coil_t3>, <contenttweaker:balanced_machine_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:mythic_coil_t3>],
|
||||
[<contenttweaker:fractal_metal_plate>, <contenttweaker:trinity_ingot>, <contenttweaker:balanced_machine_casing>, <contenttweaker:trinity_ingot>, <contenttweaker:fractal_metal_plate>],
|
||||
[<contenttweaker:trinity_ingot>, <contenttweaker:fractal_metal_plate>, <contenttweaker:mythic_coil_t3>, <contenttweaker:fractal_metal_plate>, <contenttweaker:trinity_ingot>]]);
|
||||
|
||||
|
||||
var mapDargnipur as IData = {};
|
||||
val enchlistDragnipur as IEnchantmentDefinition[] = [<enchantment:draconicevolution:enchant_reaper>, <enchantment:soulshardsrespawn:soul_stealer>, <enchantment:mod_lavacow:lifesteal>, <enchantment:enderio:witherweapon>, <enchantment:minecraft:sweeping>];
|
||||
mapDargnipur += enchlistDragnipur[0].makeEnchantment(20000).makeTag();
|
||||
mapDargnipur += enchlistDragnipur[1].makeEnchantment(20000).makeTag();
|
||||
mapDargnipur += enchlistDragnipur[2].makeEnchantment(20000).makeTag();
|
||||
mapDargnipur += enchlistDragnipur[3].makeEnchantment(20000).makeTag();
|
||||
mapDargnipur += enchlistDragnipur[4].makeEnchantment(20000).makeTag();
|
||||
|
||||
recipes.addShapeless(<contenttweaker:echo_warren_bar>,
|
||||
[<aoa3:shadow_sword>.withTag(mapDargnipur).reuse(),
|
||||
<contenttweaker:echo_warren_alloy>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:defined_bar>,
|
||||
[<aoa3:shadow_sword>.withTag(mapDargnipur).reuse(),
|
||||
<contenttweaker:defined_ingot>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:sashimi_of_the_gate_of_darkness>,
|
||||
[<aoa3:shadow_sword>.withTag(mapDargnipur).reuse(),
|
||||
<minecraft:fish:1>]);
|
||||
|
||||
|
||||
val dysondynamizer = RecipeBuilder.newBuilder("dysondynamizer","dyson_dynamizer",100);
|
||||
dysondynamizer.addFluidInput(<fluid:pre_baryonic_plasma>*1000);
|
||||
dysondynamizer.addFluidInput(<fluid:strings>*400);
|
||||
dysondynamizer.addFluidInput(<fluid:gravitrons>*400);
|
||||
dysondynamizer.addFluidInput(<fluid:unbalanced_negative_matter>*400);
|
||||
dysondynamizer.addFluidInput(<fluid:plasma>*1000);
|
||||
dysondynamizer.addFluidOutput(<fluid:low_grade_space_time_fuel>*1000);
|
||||
dysondynamizer.addFluidOutput(<fluid:neutron>*2000);
|
||||
dysondynamizer.addItemInput(<contenttweaker:time_crystal>*4);
|
||||
dysondynamizer.addItemInput(<contenttweaker:gem_of_recursion>*4);
|
||||
dysondynamizer.addItemOutput(<contenttweaker:gravitational_time_crystal>*4);
|
||||
dysondynamizer.addItemOutput(<contenttweaker:quasar_charged_gem>*4);
|
||||
dysondynamizer.build();
|
||||
|
||||
|
||||
val dysonscatterer1 = RecipeBuilder.newBuilder("dysonscatterer1","dyson_scatterer",100);
|
||||
dysonscatterer1.addEnergyPerTickInput(1000000000);
|
||||
dysonscatterer1.addFluidInput(<fluid:strange_matter>*400);
|
||||
dysonscatterer1.addFluidInput(<fluid:gluons>*400);
|
||||
dysonscatterer1.addFluidOutput(<fluid:strange_quark_gluon_plasma>*800);
|
||||
dysonscatterer1.build();
|
||||
|
||||
val dysonscatterer2 = RecipeBuilder.newBuilder("dysonscatterer2","dyson_scatterer",100);
|
||||
dysonscatterer2.addEnergyPerTickInput(1000000000);
|
||||
dysonscatterer2.addFluidInput(<fluid:neutron>*400);
|
||||
dysonscatterer2.addFluidInput(<fluid:muons>*400);
|
||||
dysonscatterer2.addFluidOutput(<fluid:cosmic_ray_particle_mix>*800);
|
||||
dysonscatterer2.build();
|
||||
|
||||
val dysonscatterer3 = RecipeBuilder.newBuilder("dysonscatterer3","dyson_scatterer",100);
|
||||
dysonscatterer3.addEnergyPerTickInput(1000000000);
|
||||
dysonscatterer3.addFluidInput(<fluid:low_grade_space_time_fuel>*400);
|
||||
dysonscatterer3.addFluidInput(<fluid:cosmic_ray_particle_mix>*400);
|
||||
dysonscatterer3.addFluidOutput(<fluid:medium_grade_space_time_fuel>*800);
|
||||
dysonscatterer3.build();
|
||||
|
||||
val dysonscatterer4 = RecipeBuilder.newBuilder("dysonscatterer4","dyson_scatterer",100);
|
||||
dysonscatterer4.addEnergyPerTickInput(1000000000);
|
||||
dysonscatterer4.addFluidInput(<fluid:medium_grade_space_time_fuel>*400);
|
||||
dysonscatterer4.addFluidInput(<fluid:strange_quark_gluon_plasma>*400);
|
||||
dysonscatterer4.addFluidOutput(<fluid:high_grade_space_time_fuel>*800);
|
||||
dysonscatterer4.build();
|
||||
|
||||
|
||||
|
||||
val fracfurnspacetimef1 = RecipeBuilder.newBuilder("fracfurnspacetimef1","fractallite_furnace",10);
|
||||
fracfurnspacetimef1.addFluidInput(<fluid:low_grade_space_time_fuel>*100);
|
||||
fracfurnspacetimef1.addItemInput(<avaritia:block_resource:2>);
|
||||
fracfurnspacetimef1.addItemInput(<contenttweaker:superconducting_mithril>*4);
|
||||
fracfurnspacetimef1.addItemInput(<contenttweaker:essence_of_creation>);
|
||||
fracfurnspacetimef1.addItemOutput(<contenttweaker:galaxy_superconductor>*1);
|
||||
fracfurnspacetimef1.build();
|
||||
|
||||
val fracfurnspacetimef2 = RecipeBuilder.newBuilder("fracfurnspacetimef2","fractallite_furnace",10);
|
||||
fracfurnspacetimef2.addFluidInput(<fluid:medium_grade_space_time_fuel>*100);
|
||||
fracfurnspacetimef2.addItemInput(<avaritia:block_resource:2>);
|
||||
fracfurnspacetimef2.addItemInput(<contenttweaker:superconducting_mithril>*4);
|
||||
fracfurnspacetimef2.addItemInput(<contenttweaker:essence_of_creation>);
|
||||
fracfurnspacetimef2.addItemOutput(<contenttweaker:galaxy_superconductor>*4);
|
||||
fracfurnspacetimef2.build();
|
||||
|
||||
val fracfurnspacetimef3 = RecipeBuilder.newBuilder("fracfurnspacetimef3","fractallite_furnace",10);
|
||||
fracfurnspacetimef3.addFluidInput(<fluid:high_grade_space_time_fuel>*100);
|
||||
fracfurnspacetimef3.addItemInput(<avaritia:block_resource:2>);
|
||||
fracfurnspacetimef3.addItemInput(<contenttweaker:superconducting_mithril>*4);
|
||||
fracfurnspacetimef3.addItemInput(<contenttweaker:essence_of_creation>);
|
||||
fracfurnspacetimef3.addItemOutput(<contenttweaker:galaxy_superconductor>*16);
|
||||
fracfurnspacetimef3.build();
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:toroid_galaxy_tube>*8,
|
||||
[[<contenttweaker:spatial_anomaly>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <contenttweaker:spatial_anomaly>],
|
||||
[<appliedenergistics2:spatial_pylon>, <contenttweaker:actualizing_casing>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:actualizing_casing>, <appliedenergistics2:spatial_pylon>],
|
||||
[<appliedenergistics2:spatial_pylon>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:galaxy_accelerator>, <contenttweaker:galaxy_superconductor>, <contenttweaker:galaxy_accelerator>, <contenttweaker:fluid_matrix_conduit>, <appliedenergistics2:spatial_pylon>],
|
||||
[<appliedenergistics2:spatial_pylon>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:galaxy_superconductor>, <contenttweaker:naquadah_casing>, <contenttweaker:galaxy_superconductor>, <contenttweaker:hyperuranion_conduit>, <appliedenergistics2:spatial_pylon>],
|
||||
[<appliedenergistics2:spatial_pylon>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:galaxy_accelerator>, <contenttweaker:galaxy_superconductor>, <contenttweaker:galaxy_accelerator>, <contenttweaker:fluid_matrix_conduit>, <appliedenergistics2:spatial_pylon>],
|
||||
[<appliedenergistics2:spatial_pylon>, <contenttweaker:actualizing_casing>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:hyperuranion_conduit>, <contenttweaker:fluid_matrix_conduit>, <contenttweaker:actualizing_casing>, <appliedenergistics2:spatial_pylon>],
|
||||
[<contenttweaker:spatial_anomaly>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <appliedenergistics2:spatial_pylon>, <contenttweaker:spatial_anomaly>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:ghost_of_annoyance_callstone>,
|
||||
[[<industrialforegoing:black_hole_tank>.withTag({FluidName: "tritium", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>, null, <contenttweaker:infinity_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647}), <contenttweaker:infinity_plate>, null, <contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "deuterium", Amount: 2147483647})],
|
||||
[<contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "oxygen", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>, null, <contenttweaker:infinity_plate>, null, <contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "oxygen", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>],
|
||||
[null, <contenttweaker:perfected_gallifreyan_plate>, null, null, null, null, null, <contenttweaker:perfected_gallifreyan_plate>, null],
|
||||
[<contenttweaker:infinity_plate>, null, null, null, <contenttweaker:nightmare_block>, null, null, null, <contenttweaker:infinity_plate>],
|
||||
[<industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647}), <contenttweaker:infinity_plate>, null, <contenttweaker:nightmare_block>, <contenttweaker:dream_cluster>, <contenttweaker:nightmare_block>, null, <contenttweaker:infinity_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647})],
|
||||
[<contenttweaker:infinity_plate>, null, null, null, <contenttweaker:nightmare_block>, null, null, null, <contenttweaker:infinity_plate>],
|
||||
[null, <contenttweaker:perfected_gallifreyan_plate>, null, null, null, null, null, <contenttweaker:perfected_gallifreyan_plate>, null],
|
||||
[<contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "oxygen", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>, null, <contenttweaker:infinity_plate>, null, <contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "oxygen", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>],
|
||||
[<industrialforegoing:black_hole_tank>.withTag({FluidName: "deuterium", Amount: 2147483647}), <contenttweaker:perfected_gallifreyan_plate>, null, <contenttweaker:infinity_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "hydrogen", Amount: 2147483647}), <contenttweaker:infinity_plate>, null, <contenttweaker:perfected_gallifreyan_plate>, <industrialforegoing:black_hole_tank>.withTag({FluidName: "tritium", Amount: 2147483647})]]);
|
||||
|
||||
|
||||
|
||||
val dysonrevolver = RecipeBuilder.newBuilder("dysonrevolver","dyson_revolver",100);
|
||||
dysonrevolver.addEnergyPerTickInput(4000000000);
|
||||
dysonrevolver.addFluidInput(<fluid:hydrogen>*10000000);
|
||||
dysonrevolver.addFluidInput(<fluid:helium>*10000000);
|
||||
dysonrevolver.addFluidInput(<fluid:oxygen>*10000000);
|
||||
dysonrevolver.addFluidInput(<fluid:high_grade_space_time_fuel>*400);
|
||||
dysonrevolver.addFluidOutput(<fluid:galactic_plasma>*7500000);
|
||||
dysonrevolver.addFluidOutput(<fluid:galactic_plasma>*7500000);
|
||||
dysonrevolver.addFluidOutput(<fluid:galactic_plasma>*7500000);
|
||||
dysonrevolver.addFluidOutput(<fluid:galactic_plasma>*7500000);
|
||||
dysonrevolver.addItemInput(<contenttweaker:time_crystal_lattice>);
|
||||
dysonrevolver.addItemInput(<extendedcrafting:singularity_custom:2030>);
|
||||
dysonrevolver.addItemOutput(<contenttweaker:cosmic_string_primer>);
|
||||
dysonrevolver.addItemOutput(<avaritia:block_resource:0>*64);
|
||||
dysonrevolver.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:trinity_neutronium_casing>,
|
||||
100000000, <contenttweaker:gallifreyan_neutronium_casing>,
|
||||
[<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>,
|
||||
<contenttweaker:trinity_ingot>, <contenttweaker:cuendillar_plate>]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:quark_cosmic_module>,
|
||||
[[<contenttweaker:light_of_shadesmar>, <contenttweaker:cuendillar_plate>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:cuendillar_plate>, <contenttweaker:light_of_shadesmar>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:shard_of_the_cosmos>, <minecraft:bedrock>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:cuendillar_plate>],
|
||||
[<avaritiaitem:self_actualizing_stone>, <minecraft:bedrock>, <contenttweaker:quark_neutronium_module>, <minecraft:bedrock>, <avaritiaitem:self_actualizing_stone>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:shard_of_the_cosmos>, <minecraft:bedrock>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:cuendillar_plate>],
|
||||
[<contenttweaker:light_of_shadesmar>, <contenttweaker:cuendillar_plate>, <avaritiaitem:self_actualizing_stone>, <contenttweaker:cuendillar_plate>, <contenttweaker:light_of_shadesmar>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:cosmic_string_module>*8,
|
||||
[[<contenttweaker:echo_warren_bar>, <glassential:glass_ethereal_reverse>, <avaritia:block_resource:1>, <glassential:glass_ethereal_reverse>, <contenttweaker:echo_warren_bar>],
|
||||
[<glassential:glass_ethereal_reverse>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:everburning_plating>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_ethereal_reverse>],
|
||||
[<contenttweaker:white_hole>, <contenttweaker:everburning_plating>, <contenttweaker:naquadah_casing>, <contenttweaker:everburning_plating>, <contenttweaker:white_hole>],
|
||||
[<glassential:glass_ethereal_reverse>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:everburning_plating>, <contenttweaker:shard_of_the_cosmos>, <glassential:glass_ethereal_reverse>],
|
||||
[<contenttweaker:echo_warren_bar>, <glassential:glass_ethereal_reverse>, <avaritia:block_resource:1>, <glassential:glass_ethereal_reverse>, <contenttweaker:echo_warren_bar>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:mixed_metal_shard>*8,
|
||||
[[<tconstruct:shard>.withTag({Material: "phasing_alloy"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "manyullyn"}),
|
||||
<tconstruct:shard>.withTag({Material: "barathosynium"}), <tconstruct:shard>.withTag({Material: "ascended_draconic_alloy"}), <tconstruct:shard>.withTag({Material: "barathosynium"}),
|
||||
<tconstruct:shard>.withTag({Material: "manyullyn"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "phasing_alloy"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_enchanted_metal"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "rosidian"}),
|
||||
<tconstruct:shard>.withTag({Material: "starmetal"}), <tconstruct:shard>.withTag({Material: "blood_infused_glitch"}), <tconstruct:shard>.withTag({Material: "starmetal"}),
|
||||
<tconstruct:shard>.withTag({Material: "rosidian"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "xu_enchanted_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_demonic_metal"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "ma.soulium"}),
|
||||
<tconstruct:shard>.withTag({Material: "adamantium"}), <tconstruct:shard>.withTag({Material: "wrought_iron"}), <tconstruct:shard>.withTag({Material: "adamantium"}),
|
||||
<tconstruct:shard>.withTag({Material: "ma.soulium"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "xu_demonic_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "terrasteel"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "blutonium"}),
|
||||
<tconstruct:shard>.withTag({Material: "vibranium_alloy"}), <tconstruct:shard>.withTag({Material: "ichorium"}), <tconstruct:shard>.withTag({Material: "vibranium_alloy"}),
|
||||
<tconstruct:shard>.withTag({Material: "blutonium"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "terrasteel"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "elecanium"}), <tconstruct:shard>.withTag({Material: "brightsteel_alloy"}), <tconstruct:shard>.withTag({Material: "berserk_steel"}),
|
||||
<tconstruct:shard>.withTag({Material: "parafrosynium"}), <tconstruct:shard>.withTag({Material: "infinity_avaritia_plustic"}), <tconstruct:shard>.withTag({Material: "hihi_irokane"}),
|
||||
<tconstruct:shard>.withTag({Material: "berserk_steel"}), <tconstruct:shard>.withTag({Material: "brightsteel_alloy"}), <tconstruct:shard>.withTag({Material: "elecanium"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "terrasteel"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "blutonium"}),
|
||||
<tconstruct:shard>.withTag({Material: "vibranium_alloy"}), <tconstruct:shard>.withTag({Material: "orichalcum"}), <tconstruct:shard>.withTag({Material: "vibranium_alloy"}),
|
||||
<tconstruct:shard>.withTag({Material: "blutonium"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "terrasteel"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_demonic_metal"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "ma.soulium"}),
|
||||
<tconstruct:shard>.withTag({Material: "adamantium"}), <tconstruct:shard>.withTag({Material: "wrought_iron"}), <tconstruct:shard>.withTag({Material: "adamantium"}),
|
||||
<tconstruct:shard>.withTag({Material: "ma.soulium"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "xu_demonic_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_enchanted_metal"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "rosidian"}),
|
||||
<tconstruct:shard>.withTag({Material: "starmetal"}), <tconstruct:shard>.withTag({Material: "blood_infused_glitch"}), <tconstruct:shard>.withTag({Material: "starmetal"}),
|
||||
<tconstruct:shard>.withTag({Material: "rosidian"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "xu_enchanted_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "phasing_alloy"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "manyullyn"}),
|
||||
<tconstruct:shard>.withTag({Material: "barathosynium"}), <tconstruct:shard>.withTag({Material: "ascended_draconic_alloy"}), <tconstruct:shard>.withTag({Material: "barathosynium"}),
|
||||
<tconstruct:shard>.withTag({Material: "manyullyn"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "phasing_alloy"})]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:mixed_metal_shard>*32,
|
||||
[[<tconstruct:shard>.withTag({Material: "phasing_alloy"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "manyullyn"}),
|
||||
<tconstruct:shard>.withTag({Material: "barathosynium"}), <tconstruct:shard>.withTag({Material: "ascended_draconic_alloy"}), <tconstruct:shard>.withTag({Material: "barathosynium"}),
|
||||
<tconstruct:shard>.withTag({Material: "manyullyn"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "phasing_alloy"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_enchanted_metal"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "rosidian"}),
|
||||
<tconstruct:shard>.withTag({Material: "starmetal"}), <tconstruct:shard>.withTag({Material: "blood_infused_glitch"}), <tconstruct:shard>.withTag({Material: "starmetal"}),
|
||||
<tconstruct:shard>.withTag({Material: "rosidian"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "xu_enchanted_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_demonic_metal"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "ma.soulium"}),
|
||||
<tconstruct:shard>.withTag({Material: "adamantium"}), <tconstruct:shard>.withTag({Material: "wrought_iron"}), <tconstruct:shard>.withTag({Material: "adamantium"}),
|
||||
<tconstruct:shard>.withTag({Material: "ma.soulium"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "xu_demonic_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "terrasteel"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "blutonium"}),
|
||||
<tconstruct:shard>.withTag({Material: "vibranium_alloy"}), <tconstruct:shard>.withTag({Material: "ichorium"}), <tconstruct:shard>.withTag({Material: "vibranium_alloy"}),
|
||||
<tconstruct:shard>.withTag({Material: "blutonium"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "terrasteel"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "elecanium"}), <tconstruct:shard>.withTag({Material: "brightsteel_alloy"}), <tconstruct:shard>.withTag({Material: "berserk_steel"}),
|
||||
<tconstruct:shard>.withTag({Material: "parafrosynium"}), <tconstruct:shard>.withTag({Material: "trinity"}), <tconstruct:shard>.withTag({Material: "hihi_irokane"}),
|
||||
<tconstruct:shard>.withTag({Material: "berserk_steel"}), <tconstruct:shard>.withTag({Material: "brightsteel_alloy"}), <tconstruct:shard>.withTag({Material: "elecanium"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "terrasteel"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "blutonium"}),
|
||||
<tconstruct:shard>.withTag({Material: "vibranium_alloy"}), <tconstruct:shard>.withTag({Material: "orichalcum"}), <tconstruct:shard>.withTag({Material: "vibranium_alloy"}),
|
||||
<tconstruct:shard>.withTag({Material: "blutonium"}), <tconstruct:shard>.withTag({Material: "mirion"}), <tconstruct:shard>.withTag({Material: "terrasteel"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_demonic_metal"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "ma.soulium"}),
|
||||
<tconstruct:shard>.withTag({Material: "adamantium"}), <tconstruct:shard>.withTag({Material: "wrought_iron"}), <tconstruct:shard>.withTag({Material: "adamantium"}),
|
||||
<tconstruct:shard>.withTag({Material: "ma.soulium"}), <tconstruct:shard>.withTag({Material: "xu_evil_metal"}), <tconstruct:shard>.withTag({Material: "xu_demonic_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "xu_enchanted_metal"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "rosidian"}),
|
||||
<tconstruct:shard>.withTag({Material: "starmetal"}), <tconstruct:shard>.withTag({Material: "blood_infused_glitch"}), <tconstruct:shard>.withTag({Material: "starmetal"}),
|
||||
<tconstruct:shard>.withTag({Material: "rosidian"}), <tconstruct:shard>.withTag({Material: "psi"}), <tconstruct:shard>.withTag({Material: "xu_enchanted_metal"})],
|
||||
|
||||
[<tconstruct:shard>.withTag({Material: "phasing_alloy"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "manyullyn"}),
|
||||
<tconstruct:shard>.withTag({Material: "barathosynium"}), <tconstruct:shard>.withTag({Material: "ascended_draconic_alloy"}), <tconstruct:shard>.withTag({Material: "barathosynium"}),
|
||||
<tconstruct:shard>.withTag({Material: "manyullyn"}), <tconstruct:shard>.withTag({Material: "bloodmaster"}), <tconstruct:shard>.withTag({Material: "phasing_alloy"})]]);
|
||||
|
||||
|
||||
|
||||
val dysoncompressorshard = RecipeBuilder.newBuilder("dysoncompressorshard","dyson_compressor",2);
|
||||
dysoncompressorshard.addEnergyPerTickInput(1000000000);
|
||||
dysoncompressorshard.addItemInput(<contenttweaker:mixed_metal_shard>*32);
|
||||
dysoncompressorshard.addItemOutput(<contenttweaker:black_hole_alloy_clump>);
|
||||
dysoncompressorshard.build();
|
||||
|
||||
val nukeinfiniteunholy = RecipeBuilder.newBuilder("nukeinfiniteunholy","safe_nuke_environment",2);
|
||||
nukeinfiniteunholy.addItemInput(<techreborn:nuke>);
|
||||
nukeinfiniteunholy.addFluidInput(<fluid:infinitely_unholy_radioactive_mix>*1);
|
||||
nukeinfiniteunholy.addFluidOutput(<fluid:cold_plasma>*1000);
|
||||
nukeinfiniteunholy.build();
|
||||
|
||||
|
||||
val irradiationrainbowtopblack = RecipeBuilder.newBuilder("irradiationrainbowtopblack","dyson_irradiator_top",2);
|
||||
irradiationrainbowtopblack.addFluidInput(<fluid:fluidmercury>*100000);
|
||||
irradiationrainbowtopblack.addItemInput(<contenttweaker:black_hole_alloy_clump>);
|
||||
irradiationrainbowtopblack.addItemInput(<contenttweaker:fractal_metal_clump>);
|
||||
irradiationrainbowtopblack.addItemInput(<contenttweaker:fractallite_quantum>);
|
||||
irradiationrainbowtopblack.addItemInput(<contenttweaker:meteoric_draconic_stone>*16);
|
||||
irradiationrainbowtopblack.addItemOutput(<contenttweaker:softened_black_hole_alloy_clump>);
|
||||
irradiationrainbowtopblack.addItemOutput(<contenttweaker:neutronium_pearl>);
|
||||
irradiationrainbowtopblack.build();
|
||||
|
||||
|
||||
|
||||
val irradiationblackhole = RecipeBuilder.newBuilder("irradiationblackhole","dyson_irradiator",2);
|
||||
irradiationblackhole.addEnergyPerTickInput(500000000);
|
||||
irradiationblackhole.addFluidInput(<fluid:magnatar_stabilizer>*20000);
|
||||
irradiationblackhole.addFluidInput(<fluid:helium3>*100000);
|
||||
irradiationblackhole.addFluidInput(<fluid:tritium>*100000);
|
||||
irradiationblackhole.addItemInput(<contenttweaker:softened_black_hole_alloy_clump>);
|
||||
irradiationblackhole.addItemInput(<extendedcrafting:singularity_custom:2042>);
|
||||
irradiationblackhole.addItemOutput(<contenttweaker:drawn_black_hole_alloy_clump>);
|
||||
irradiationblackhole.build();
|
||||
|
||||
val irradiatioblackholebot = RecipeBuilder.newBuilder("irradiatioblackholebot","dyson_irradiator_bottom",2);
|
||||
irradiatioblackholebot.addFluidInput(<fluid:cold_plasma>*1000);
|
||||
irradiatioblackholebot.addItemInput(<contenttweaker:drawn_black_hole_alloy_clump>);
|
||||
irradiatioblackholebot.addItemInput(<contenttweaker:fine_mineral_dust>*8);
|
||||
irradiatioblackholebot.addItemInput(<extrabees:honey_drop:1>*12);
|
||||
irradiatioblackholebot.addItemInput(<enderio:block_infinity_fog:0>*8);
|
||||
irradiatioblackholebot.addItemOutput(<contenttweaker:quenched_black_hole_alloy_clump>);
|
||||
irradiatioblackholebot.addItemOutput(<enderio:item_material:20>*8);
|
||||
irradiatioblackholebot.build();
|
||||
|
||||
|
||||
val dysonabater = RecipeBuilder.newBuilder("dysonabater","dyson_abater",100);
|
||||
dysonabater.addItemInput(<contenttweaker:charged_dyson_capacitor>*64);
|
||||
dysonabater.addItemInput(<contenttweaker:charged_dyson_capacitor>*64);
|
||||
dysonabater.addItemOutput(<contenttweaker:dyson_capacitor>*64);
|
||||
dysonabater.addItemOutput(<contenttweaker:dyson_capacitor>*64);
|
||||
dysonabater.addFluidInput(<fluid:galactic_plasma>*5000000);
|
||||
dysonabater.addFluidInput(<fluid:galactic_plasma>*5000000);
|
||||
dysonabater.addFluidInput(<fluid:galactic_plasma>*5000000);
|
||||
dysonabater.addFluidInput(<fluid:neutron>*500000);
|
||||
dysonabater.addFluidInput(<fluid:neutron>*500000);
|
||||
dysonabater.addFluidInput(<fluid:iron>*500000);
|
||||
dysonabater.addFluidInput(<fluid:nickel>*500000);
|
||||
dysonabater.addFluidInput(<fluid:lead>*500000);
|
||||
dysonabater.addItemInput(<contenttweaker:cosmic_string_primer>);
|
||||
dysonabater.addItemInput(<contenttweaker:quenched_black_hole_alloy_clump>);
|
||||
dysonabater.addItemInput(<contenttweaker:actualized_warren_alloy>);
|
||||
dysonabater.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
dysonabater.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
dysonabater.addItemOutput(<contenttweaker:black_hole_alloy_ingot>);
|
||||
dysonabater.addItemOutput(<contenttweaker:cosmic_string>);
|
||||
dysonabater.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:galactic_power_unit>,
|
||||
[[<contenttweaker:black_hole_alloy_ingot>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:black_hole_alloy_ingot>],
|
||||
[<contenttweaker:balanced_machine_casing>, <glassential:glass_ethereal_reverse>, <glassential:glass_ethereal_reverse>, <glassential:glass_ethereal_reverse>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:balanced_machine_casing>, <glassential:glass_ethereal_reverse>, <contenttweaker:galactic_core>, <glassential:glass_ethereal_reverse>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:balanced_machine_casing>, <glassential:glass_ethereal_reverse>, <glassential:glass_ethereal_reverse>, <glassential:glass_ethereal_reverse>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:black_hole_alloy_ingot>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:black_hole_alloy_ingot>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:tardis_casing>,
|
||||
[[<contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:balanced_machine_casing>, <ore:ingotFractalliteHalite>, <contenttweaker:dark_matter_node>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:dark_matter_node>, <ore:ingotFractalliteHalite>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:naquadah_casing>, <contenttweaker:dark_matter_node>, <ore:ingotFractalliteHalite>, <contenttweaker:cosmic_string_conduit>, <ore:ingotFractalliteHalite>, <contenttweaker:dark_matter_node>, <contenttweaker:naquadah_casing>],
|
||||
[<contenttweaker:naquadah_casing>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:galactic_power_unit>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:naquadah_casing>],
|
||||
[<contenttweaker:naquadah_casing>, <contenttweaker:dark_matter_node>, <ore:ingotFractalliteHalite>, <contenttweaker:cosmic_string_conduit>, <ore:ingotFractalliteHalite>, <contenttweaker:dark_matter_node>, <contenttweaker:naquadah_casing>],
|
||||
[<contenttweaker:balanced_machine_casing>, <ore:ingotFractalliteHalite>, <contenttweaker:dark_matter_node>, <contenttweaker:cosmic_string_conduit>, <contenttweaker:dark_matter_node>, <ore:ingotFractalliteHalite>, <contenttweaker:balanced_machine_casing>],
|
||||
[<contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:naquadah_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:tardis_stem>,
|
||||
|
||||
[[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <avaritiaitem:cosmic_balance>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:actualized_warren_alloy>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <avaritiaitem:cosmic_balance>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:everburning_seed>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:everburning_seed>, <contenttweaker:tardis_casing>, <contenttweaker:everburning_seed>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:coralos_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:everburning_seed>, <contenttweaker:tardis_casing>, <contenttweaker:everburning_seed>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:coralos_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:everburning_seed>, <contenttweaker:tardis_casing>, <contenttweaker:everburning_seed>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:everburning_seed>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <avaritiaitem:cosmic_balance>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:actualized_warren_alloy>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <avaritiaitem:cosmic_balance>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>,
|
||||
<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:tardis_branch>,
|
||||
[[<contenttweaker:self_actualizing_warren_rift>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:black_hole_alloy_ingot>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:self_actualizing_warren_rift>],
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:herba_vis_condensate>, <contenttweaker:tardis_casing>, <contenttweaker:herba_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
[<contenttweaker:black_hole_alloy_ingot>, <contenttweaker:tardis_casing>, <contenttweaker:tardis_stem>, <contenttweaker:tardis_casing>, <contenttweaker:black_hole_alloy_ingot>],
|
||||
[<contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:herba_vis_condensate>, <contenttweaker:tardis_casing>, <contenttweaker:herba_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>],
|
||||
[<contenttweaker:self_actualizing_warren_rift>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:black_hole_alloy_ingot>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:self_actualizing_warren_rift>]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:tardis_polyp>,
|
||||
[[<contenttweaker:cosmic_string_module>, <contenttweaker:singular_fractal>, <contenttweaker:eye_of_gallifrey>, <contenttweaker:black_hole_alloy_ingot>, <contenttweaker:eye_of_gallifrey>, <contenttweaker:singular_fractal>, <contenttweaker:cosmic_string_module>],
|
||||
[<contenttweaker:singular_fractal>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:aqua_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:singular_fractal>],
|
||||
[<contenttweaker:eye_of_gallifrey>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:tardis_branch>, <contenttweaker:balanced_machine_casing>, <contenttweaker:tardis_branch>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:eye_of_gallifrey>],
|
||||
[<contenttweaker:black_hole_alloy_ingot>, <contenttweaker:aqua_vis_condensate>, <contenttweaker:balanced_machine_casing>, <contenttweaker:tardis_branch>, <contenttweaker:balanced_machine_casing>, <contenttweaker:aqua_vis_condensate>, <contenttweaker:black_hole_alloy_ingot>],
|
||||
[<contenttweaker:eye_of_gallifrey>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:tardis_branch>, <contenttweaker:balanced_machine_casing>, <contenttweaker:tardis_branch>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:eye_of_gallifrey>],
|
||||
[<contenttweaker:singular_fractal>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:aqua_vis_condensate>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:adamantium_reinforced_petrified_wood>, <contenttweaker:singular_fractal>],
|
||||
[<contenttweaker:cosmic_string_module>, <contenttweaker:singular_fractal>, <contenttweaker:eye_of_gallifrey>, <contenttweaker:black_hole_alloy_ingot>, <contenttweaker:eye_of_gallifrey>, <contenttweaker:singular_fractal>, <contenttweaker:cosmic_string_module>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:eye_of_harmony_power_unit>,
|
||||
|
||||
[[null, null, null,
|
||||
<contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:dark_matter_node>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>, null],
|
||||
|
||||
[null, <contenttweaker:quasar_stabilizer>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:dark_matter_node>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:quasar_stabilizer>, null],
|
||||
|
||||
[<contenttweaker:quasar_stabilizer>, <contenttweaker:tardis_casing>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:astral_insight_100>, <contenttweaker:dark_matter_node>, <contenttweaker:astral_insight_100>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:tardis_casing>, <contenttweaker:quasar_stabilizer>],
|
||||
|
||||
[<contenttweaker:quasar_stabilizer>, <contenttweaker:dark_matter_node>, <contenttweaker:dark_matter_node>,
|
||||
<contenttweaker:dark_matter_node>, <contenttweaker:quasar_core>, <contenttweaker:dark_matter_node>,
|
||||
<contenttweaker:dark_matter_node>, <contenttweaker:dark_matter_node>, <contenttweaker:quasar_stabilizer>],
|
||||
|
||||
[<contenttweaker:quasar_stabilizer>, <contenttweaker:tardis_casing>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:astral_insight_100>, <contenttweaker:dark_matter_node>, <contenttweaker:astral_insight_100>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:tardis_casing>, <contenttweaker:quasar_stabilizer>],
|
||||
|
||||
[null, <contenttweaker:quasar_stabilizer>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:dark_matter_node>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:quasar_stabilizer>, null],
|
||||
|
||||
[null, <contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>,
|
||||
<contenttweaker:tardis_casing>, <contenttweaker:dark_matter_node>, <contenttweaker:tardis_casing>,
|
||||
<contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>, null],
|
||||
|
||||
[null, null, null,
|
||||
<contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>, <contenttweaker:quasar_stabilizer>,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
recipes.remove(<tardis:key>);
|
||||
recipes.removeShaped(<tardis:tardis_coral>);
|
||||
|
||||
|
||||
|
||||
val blackholejuice = RecipeBuilder.newBuilder("blackholejuice","black_hole_juicer",2);
|
||||
blackholejuice.addEnergyPerTickInput(4000000000);
|
||||
blackholejuice.addItemInput(<contenttweaker:black_hole_alloy_ingot>);
|
||||
blackholejuice.addItemInput(<contenttweaker:cosmic_string>);
|
||||
blackholejuice.addFluidOutput(<fluid:black_hole_juice>*10);
|
||||
blackholejuice.build();
|
||||
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<minecraft:bucket>, <fluid:black_hole_juice>*500, <contenttweaker:black_hole_juice>, 1.0, 1.0, 1.0]);
|
||||
@@ -1,15 +0,0 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
|
||||
recipes.removeShaped(<tardis:tardis_coral>);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<tardis:tardis_coral>,
|
||||
[[<avaritia:block_resource:1>, <contenttweaker:hypercubic_energy_orb>, <avaritia:block_resource:1>],
|
||||
[<contenttweaker:hypercubic_energy_orb>, <ore:ingotFractalliteHalite>, <contenttweaker:hypercubic_energy_orb>],
|
||||
[<avaritia:block_resource:1>, <contenttweaker:hypercubic_energy_orb>, <avaritia:block_resource:1>]]);
|
||||
|
||||
recipes.remove(<tardis:key>);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<tardis:key>,
|
||||
[[<avaritia:block_resource:1>, <contenttweaker:hypercubic_energy_orb>, <avaritia:block_resource:1>],
|
||||
[<contenttweaker:hypercubic_energy_orb>, <iceandfire:dread_key>, <contenttweaker:hypercubic_energy_orb>],
|
||||
[<avaritia:block_resource:1>, <contenttweaker:hypercubic_energy_orb>, <avaritia:block_resource:1>]]);
|
||||
@@ -259,3 +259,52 @@ recipes.addShaped(<techreborn:dragon_egg_syphon>,
|
||||
[[<techreborn:part:0>,<techreborn:medium_voltage_su>,<techreborn:part:0>],
|
||||
[<techreborn:plates:38>,<techreborn:part:17>,<techreborn:plates:38>],
|
||||
[<techreborn:part:0>,<contenttweaker:better_lapotronic_orb>,<techreborn:part:0>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<techreborn:part:29>*32,
|
||||
[[<techreborn:cable:5>,<techreborn:cable:5>,<techreborn:cable:5>],
|
||||
[<minecraft:redstone>,<avaritiaitem:self_actualizing_stone>,<minecraft:redstone>],
|
||||
[<techreborn:cable:5>,<techreborn:cable:5>,<techreborn:cable:5>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<techreborn:part:30>*8,
|
||||
[[<techreborn:cable:6>,<techreborn:cable:6>,<techreborn:cable:6>],
|
||||
[<avaritiaitem:self_actualizing_stone>,<techreborn:part:29>,<avaritiaitem:self_actualizing_stone>],
|
||||
[<techreborn:cable:6>,<techreborn:cable:6>,<techreborn:cable:6>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:better_energy_crystal>*16,
|
||||
[[<minecraft:redstone>,<minecraft:redstone>,<minecraft:redstone>],
|
||||
[<minecraft:redstone>,<minecraft:redstone>,<minecraft:redstone>],
|
||||
[<minecraft:redstone>,<avaritiaitem:self_actualizing_stone>,<minecraft:redstone>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:better_lapotron_crystal>*8,
|
||||
[[<minecraft:dye:4>,<techreborn:part:29>,<minecraft:dye:4>],
|
||||
[<avaritiaitem:self_actualizing_stone>,<contenttweaker:better_energy_crystal>,<avaritiaitem:self_actualizing_stone>],
|
||||
[<minecraft:dye:4>,<techreborn:part:29>,<minecraft:dye:4>]]);
|
||||
|
||||
|
||||
recipes.addShaped(<techreborn:part:32>*32,
|
||||
[[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<aoa3:shyre_weed>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>]]);
|
||||
|
||||
recipes.addShaped(<techreborn:part:32>*32,
|
||||
[[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<aoa3:arcbulb>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>]]);
|
||||
|
||||
recipes.addShaped(<techreborn:part:32>*32,
|
||||
[[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<aoa3:horizon_daisies>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>]]);
|
||||
|
||||
recipes.addShaped(<techreborn:part:32>*32,
|
||||
[[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<aoa3:arcflower>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>]]);
|
||||
|
||||
recipes.addShaped(<techreborn:part:32>*32,
|
||||
[[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<aoa3:shyre_cap>,<techreborn:part:31>],
|
||||
[<techreborn:part:31>,<techreborn:part:31>,<techreborn:part:31>]]);
|
||||
|
||||
@@ -461,6 +461,24 @@ blackholecore.itemRightClick = function(stack, world, player, hand) {
|
||||
blackholecore.glowing = true;
|
||||
blackholecore.register();
|
||||
|
||||
var whiteholecore = VanillaFactory.createItem("white_hole_core");
|
||||
whiteholecore.maxStackSize = 1;
|
||||
whiteholecore.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("fill ~-1 ~-1 ~-1 ~1 ~1 ~1 contenttweaker:miniature_white_hole 0 replace contenttweaker:sednanite_stabilizer", player, world, true, true);
|
||||
return "Pass";
|
||||
};
|
||||
whiteholecore.glowing = true;
|
||||
whiteholecore.register();
|
||||
|
||||
var quasarcore = VanillaFactory.createItem("quasar_core");
|
||||
quasarcore.maxStackSize = 1;
|
||||
quasarcore.itemRightClick = function(stack, world, player, hand) {
|
||||
Commands.call("fill ~-1 ~-1 ~-1 ~1 ~1 ~1 contenttweaker:miniature_quasar 0 replace contenttweaker:sednanite_stabilizer", player, world, true, true);
|
||||
return "Pass";
|
||||
};
|
||||
quasarcore.glowing = true;
|
||||
quasarcore.register();
|
||||
|
||||
|
||||
var condensedessence = VanillaFactory.createItem("condensed_essence");
|
||||
condensedessence.maxStackSize = 64;
|
||||
|
||||
@@ -68,12 +68,25 @@ recipes.addShaped(<draconicevolution:draconic_spawner>.withTag({BCTileData: {BCM
|
||||
[<botania:rune:9>, <extrautils2:simpledecorative:2>, <botania:rune:9>]]);
|
||||
|
||||
|
||||
|
||||
val spatcrucinsanity = RecipeBuilder.newBuilder("spatcrucinsanity","spatial_crucible",20);
|
||||
spatcrucinsanity.addEnergyPerTickInput(100000);
|
||||
spatcrucinsanity.addItemInput(<contenttweaker:clausurae>);
|
||||
spatcrucinsanity.addFluidOutput(<fluid:hint_of_insanity>*4000);
|
||||
spatcrucinsanity.build();
|
||||
|
||||
recipes.addShaped(<contenttweaker:finis>*4,
|
||||
[[<contenttweaker:clausurae>, <contenttweaker:sentient_meatball>, <contenttweaker:clausurae>],
|
||||
[<contenttweaker:sentient_meatball>, <contenttweaker:staff_of_the_lord_of_gluttony>.reuse(), <contenttweaker:sentient_meatball>],
|
||||
[<contenttweaker:clausurae>, <contenttweaker:sentient_meatball>, <contenttweaker:clausurae>]]);
|
||||
|
||||
val spatcrucinsanitybetter = RecipeBuilder.newBuilder("spatcrucinsanitybetter","spatial_crucible",10);
|
||||
spatcrucinsanitybetter.addEnergyPerTickInput(100000);
|
||||
spatcrucinsanitybetter.addItemInput(<contenttweaker:finis>);
|
||||
spatcrucinsanitybetter.addFluidOutput(<fluid:hint_of_insanity>*16000);
|
||||
spatcrucinsanitybetter.build();
|
||||
|
||||
|
||||
val twilightdivineiron = RecipeBuilder.newBuilder("twilightdivineiron","carminite_empowerer",20);
|
||||
twilightdivineiron.addEnergyPerTickInput(15000);
|
||||
twilightdivineiron.addAspectInput("mythus",20);
|
||||
@@ -91,6 +104,19 @@ spatcrucdivinity.addItemInput(<contenttweaker:divine_ironwood_ingot>);
|
||||
spatcrucdivinity.addFluidOutput(<fluid:hint_of_divinity>*4000);
|
||||
spatcrucdivinity.build();
|
||||
|
||||
recipes.addShaped(<contenttweaker:token_of_the_meatball_man>,
|
||||
[[<aoa3:gold_coin>, <contenttweaker:sentient_meatball>, <aoa3:gold_coin>],
|
||||
[<contenttweaker:sentient_meatball>, <contenttweaker:staff_of_the_lord_of_gluttony>.reuse(), <contenttweaker:sentient_meatball>],
|
||||
[<aoa3:gold_coin>, <contenttweaker:sentient_meatball>, <aoa3:gold_coin>]]);
|
||||
|
||||
val spatcrucdivinitybetter = RecipeBuilder.newBuilder("spatcrucdivinitybetter","spatial_crucible",10);
|
||||
spatcrucdivinitybetter.addEnergyPerTickInput(500000000);
|
||||
spatcrucdivinitybetter.addItemInput(<divinerpg:divine_stone>);
|
||||
spatcrucdivinitybetter.addItemInput(<contenttweaker:token_of_the_meatball_man>*8);
|
||||
spatcrucdivinitybetter.addItemInput(<contenttweaker:divine_ironwood_ingot>);
|
||||
spatcrucdivinitybetter.addFluidOutput(<fluid:hint_of_divinity>*16000);
|
||||
spatcrucdivinitybetter.build();
|
||||
|
||||
|
||||
mods.thermalexpansion.Enchanter.addRecipe(<contenttweaker:polonium_encrusted_egg>, <contenttweaker:vox_ponds_garnet>, <contenttweaker:polonium_egg>, 1000, 1, false);
|
||||
mods.thermalexpansion.Enchanter.addRecipe(<contenttweaker:polonium_encrusted_egg>, <contenttweaker:cut_voxponds_garnet>, <contenttweaker:polonium_egg>, 1000, 1, false);
|
||||
|
||||
+300
-10
@@ -134,6 +134,14 @@
|
||||
|
||||
<divinerpg:corrupted_maul>.addTooltip(format.red("可施加超限附魔"));
|
||||
|
||||
<mod_lavacow:scarab_wand>.addTooltip(format.red("可施加超限附魔"));
|
||||
<mod_lavacow:sludge_wand>.addTooltip(format.red("可施加超限附魔"));
|
||||
<thaumcraft:crimson_blade>.addTooltip(format.red("可施加超限附魔"));
|
||||
<aoa3:runic_sword>.addTooltip(format.red("可施加超限附魔"));
|
||||
<aoa3:shadow_sword>.addTooltip(format.red("可施加超限附魔"));
|
||||
<divinerpg:karos_rockmaul>.addTooltip(format.red("可施加超限附魔"));
|
||||
<xreliquary:mercy_cross>.addTooltip(format.red("可施加超限附魔"));
|
||||
|
||||
<contenttweaker:anomaly_detector_stage_1>.addTooltip(format.red("发现于光精界"));
|
||||
|
||||
<contenttweaker:anomaly_detector_stage_1>.addTooltip(format.red("感谢Josip绘制的纹理!"));
|
||||
@@ -376,7 +384,6 @@
|
||||
<aoa3:elecanium_ingot>.addTooltip(format.red("用熔融荧银填满开放式方块模组的蓄水槽,并用正确的符文(8个)环绕,符境将指引你"));
|
||||
<aoa3:elecanium_ore>.addTooltip(format.red("用熔融荧银填满开放式方块模组的蓄水槽,并用正确的符文(8个)环绕,符境将指引你"));
|
||||
|
||||
<thaumicwonders:alienist_stone>.addTooltip(format.red("最好附上最高等级的耐久魔咒来进行奇异矿簇自动化"));
|
||||
|
||||
<openblocks:stencil:0>.addTooltip(format.green("可重复使用"));
|
||||
<openblocks:stencil:1>.addTooltip(format.green("可重复使用"));
|
||||
@@ -475,7 +482,7 @@
|
||||
|
||||
<contenttweaker:phasing_fluix_construct>.addTooltip(format.red("通过福鲁伊克斯史学家召唤石获得"));
|
||||
|
||||
<contenttweaker:master_wizardry_catalyst>.addTooltip(format.red("困难模式是你的朋友 ;)"));
|
||||
<contenttweaker:master_wizardry_catalyst>.addTooltip(format.red("困难模式会很有用 ;)"));
|
||||
|
||||
<contenttweaker:phasing_fluix_construct>.addTooltip(format.red("与正确的龙之进化模组的生物灵魂(8个)结合,四处看看"));
|
||||
<contenttweaker:phasing_fluix_construct>.addTooltip(format.red("某个超限附魔会很有用 ;)"));
|
||||
@@ -849,6 +856,14 @@
|
||||
|
||||
<contenttweaker:pack_supporter_token>.addTooltip(format.red("Reclipse有个点子!"));
|
||||
|
||||
<contenttweaker:corrupted_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:ender_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:ice_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:jungle_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:molten_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:shadow_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
<contenttweaker:terran_divine_ore>.addTooltip(format.red("在递归处理器:阿肯粉碎机中产量最高"));
|
||||
|
||||
<contenttweaker:corrupted_divine_ore>.addTooltip(format.red("在伽里弗雷维度,使用斗轮式挖掘机开采Gallifreyan Stones矿床"));
|
||||
<contenttweaker:ender_divine_ore>.addTooltip(format.red("在伽里弗雷维度,使用斗轮式挖掘机开采Gallifreyan Stones矿床"));
|
||||
<contenttweaker:ice_divine_ore>.addTooltip(format.red("在伽里弗雷维度,使用斗轮式挖掘机开采Gallifreyan Stones矿床"));
|
||||
@@ -1022,6 +1037,8 @@
|
||||
|
||||
<contenttweaker:monumentally_sentient_meatball>.addTooltip(format.red("要获得所需的合成材料,使用正确的建筑方块环绕正确的肉丸人贡物,孤寂界的一本书将指引你"));
|
||||
|
||||
<contenttweaker:shield_of_the_arbiter>.addTooltip(format.red("要获得所需的合成材料,使用正确的建筑方块环绕正确的理序主之盾,树龙界的一本书将指引你"));
|
||||
|
||||
<contenttweaker:rainbow_fire>.addTooltip(format.red("献给肉丸人的贡物"));
|
||||
<contenttweaker:blue_hair>.addTooltip(format.red("献给肉丸人的贡物"));
|
||||
<contenttweaker:ai_art>.addTooltip(format.red("献给肉丸人的贡物"));
|
||||
@@ -1032,6 +1049,17 @@
|
||||
<contenttweaker:sausage_sandwich>.addTooltip(format.red("献给肉丸人的贡物"));
|
||||
<contenttweaker:kitty_smile>.addTooltip(format.red("献给肉丸人的贡物"));
|
||||
|
||||
<contenttweaker:spooder_glasses>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:massive_boomboom>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:emc_crown>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:atomic_glasses>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:cool_walking_stick>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:horrible_unedited_fanfiction>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:null_pointer>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:p0rtals_redish_white_hat>.addTooltip(format.red("理序主之盾"));
|
||||
<contenttweaker:collar_bells>.addTooltip(format.red("理序主之盾"));
|
||||
|
||||
|
||||
<thaumcraft:stone_ancient_rock>.addTooltip(format.red("感谢Artemis和birdie添加的装饰方块的小方块!"));
|
||||
<botania:bifrostperm>.addTooltip(format.red("感谢Artemis和birdie添加的装饰方块的小方块!"));
|
||||
|
||||
@@ -1243,7 +1271,7 @@
|
||||
<contenttweaker:summons_of_the_shyre_warden>.addTooltip(format.red("警告:骑士只会被反骑士之杖击败"));
|
||||
<contenttweaker:deknighting_stick>.addTooltip(format.red("对塞尔瑞帝国监守者右击"));
|
||||
|
||||
<contenttweaker:eye_of_limbo>.addTooltip(format.green("在召唤塞尔瑞监守者配方中可重复使用"));
|
||||
<contenttweaker:eye_of_limbo>.addTooltip(format.green("在塞尔瑞监守者召唤物配方中可重复使用"));
|
||||
|
||||
<ebwizardry:master_wand>.addTooltip(format.green("在召唤石配方中可重复使用"));
|
||||
|
||||
@@ -1496,6 +1524,10 @@
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("Origami10004, Lumamaster, Kafuruu (团队)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("MrRepside (单人)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("hael (单人)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("adrin58 (单人)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("Broomey2 (单人)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("The2ThatR1 (单人)"));
|
||||
<ore:ingotFractalliteHalite>.addTooltip(format.red("mewmaister (单人)"));
|
||||
|
||||
<contenttweaker:terrestrial_animator_0>.addTooltip(format.red("可被使用者使用"));
|
||||
<contenttweaker:terrestrial_animator_1>.addTooltip(format.red("可被使用者使用"));
|
||||
@@ -1535,6 +1567,9 @@
|
||||
|
||||
<contenttweaker:flesh_of_the_gluttonous_one>.addTooltip(format.red("感谢Foucs绘制的暴食血肉合成线物品纹理!"));
|
||||
<contenttweaker:fluit_of_flesh>.addTooltip(format.red("感谢Foucs绘制的暴食血肉合成线物品纹理!"));
|
||||
|
||||
<contenttweaker:hungering_flesh_ingot>.addTooltip(format.red("一开始需要手动合成第一桶背叛精华,然后就可以复制了"));
|
||||
|
||||
<contenttweaker:hungering_flesh_ingot>.addTooltip(format.red("感谢Foucs绘制的暴食血肉合成线物品纹理!"));
|
||||
|
||||
<mod_lavacow:sharptooth>.addTooltip(format.red("雾妖、群猎者以及疫猪掉落"));
|
||||
@@ -1658,7 +1693,7 @@
|
||||
<contenttweaker:requiem_of_the_arbiter>.addTooltip(format.red("召唤石"));
|
||||
|
||||
<contenttweaker:entropic_channeling_stone>.addTooltip(format.red("四个角落放置混沌宝石,上下左右放置背叛之星,中间放置耐久度正确(错误)的生命水晶"));
|
||||
<contenttweaker:entropic_channeling_stone>.addTooltip(format.red("仲裁者安魂曲将指引你"));
|
||||
<contenttweaker:entropic_channeling_stone>.addTooltip(format.red("理序主安魂曲将指引你"));
|
||||
|
||||
<contenttweaker:entropic_channeling_fabrial>.addTooltip(format.red("对一头被驯服的冰火传说模组的龙右击"));
|
||||
<contenttweaker:entropic_channeling_fabrial>.addTooltip(format.red("别担心,不会伤害到它们的"));
|
||||
@@ -1681,7 +1716,7 @@
|
||||
<contenttweaker:fiery_unguent_bottle>.addTooltip(format.red("感谢Foucs绘制的瓶装巫师之路材料纹理!"));
|
||||
<contenttweaker:stone_ichor_bottle>.addTooltip(format.red("感谢Foucs绘制的瓶装巫师之路材料纹理!"));
|
||||
|
||||
<contenttweaker:abomination_of_true_power>.addTooltip(format.red("将精铸福鲁伊克斯水晶与仲裁者之触、龙之晶核、憎恶蛋,以及正确的Animus模组的生物灵魂(5个)结合"));
|
||||
<contenttweaker:abomination_of_true_power>.addTooltip(format.red("将精铸福鲁伊克斯水晶与理序主之触、龙之晶核、憎恶蛋,以及正确的Animus模组的生物灵魂(5个)结合"));
|
||||
<contenttweaker:abomination_of_true_power>.addTooltip(format.red("地方界的蜘蛛?为啥啊?在树桩那儿?"));
|
||||
|
||||
|
||||
@@ -1689,7 +1724,7 @@
|
||||
|
||||
<contenttweaker:skelebone_fragment>.addTooltip(format.red("Light喜欢均等消耗物品!"));
|
||||
|
||||
<testdummy2:dummy>.addTooltip(format.red("警告:不要为试验假人穿戴盔甲,会导致bug"));
|
||||
<testdummy:dummy>.addTooltip(format.red("警告:不要为试验假人穿戴盔甲,会导致bug"));
|
||||
|
||||
<contenttweaker:star_of_betrayal>.addTooltip(format.red("感谢Vamael搞清楚了护盾属性!"));
|
||||
|
||||
@@ -1702,31 +1737,33 @@
|
||||
<botania:lens:4>.addTooltip(format.red("魔力流失速度x0.2,流失前的时间x1.1"));
|
||||
|
||||
<botania:spreader:0>.addTooltip(format.red("感谢koos编写了发射器数据!"));
|
||||
//Mana spreader
|
||||
<botania:spreader:0>.addTooltip(format.red("可容纳1000魔力"));
|
||||
<botania:spreader:0>.addTooltip(format.red("每次脉冲发送160魔力"));
|
||||
<botania:spreader:0>.addTooltip(format.red("脉冲每秒移动4格"));
|
||||
<botania:spreader:0>.addTooltip(format.red("脉冲在移动12格,或者3秒后,开始流失魔力"));
|
||||
<botania:spreader:0>.addTooltip(format.red("脉冲魔力流失速度为4/t"));
|
||||
|
||||
<botania:spreader:1>.addTooltip(format.red("接收到红石信号时才会发出脉冲"));
|
||||
//Pulse spreader
|
||||
<botania:spreader:1>.addTooltip(format.red("可容纳1000魔力"));
|
||||
<botania:spreader:1>.addTooltip(format.red("每次脉冲发送160魔力"));
|
||||
<botania:spreader:1>.addTooltip(format.red("脉冲每秒移动4格"));
|
||||
<botania:spreader:1>.addTooltip(format.red("脉冲在移动12格,或者3秒后,开始流失魔力"));
|
||||
<botania:spreader:1>.addTooltip(format.red("脉冲魔力流失速度为4/t"));
|
||||
|
||||
//Elven spreader
|
||||
<botania:spreader:2>.addTooltip(format.red("可容纳1000魔力"));
|
||||
<botania:spreader:2>.addTooltip(format.red("每次脉冲发送240魔力"));
|
||||
<botania:spreader:2>.addTooltip(format.red("脉冲每秒移动5格"));
|
||||
<botania:spreader:2>.addTooltip(format.red("脉冲在移动20格,或者4秒后,开始流失魔力"));
|
||||
<botania:spreader:2>.addTooltip(format.red("脉冲魔力流失速度为4/t"));
|
||||
|
||||
//Gaia spreader
|
||||
<botania:spreader:3>.addTooltip(format.red("可容纳6400魔力"));
|
||||
<botania:spreader:3>.addTooltip(format.red("每次脉冲发送640魔力"));
|
||||
<botania:spreader:3>.addTooltip(format.red("脉冲每秒移动8格"));
|
||||
<botania:spreader:3>.addTooltip(format.red("脉冲在移动48格,或者6秒后,开始流失魔力"));
|
||||
<botania:spreader:3>.addTooltip(format.red("脉冲魔力流失速度为20/t"));
|
||||
|
||||
<gendustry:honey_comb:14023>.addTooltip(format.red("为了让Light和LordRaine高兴"));
|
||||
|
||||
<extrabotany:ultimatehammer>.addTooltip(format.red("作为武器使用时消耗魔力"));
|
||||
@@ -1757,6 +1794,7 @@
|
||||
<thaumadditions:mithminite_smelter>.addTooltip(format.red("多方块升级,龙炎锻炉:输出x8"));
|
||||
<contenttweaker:plated_photonium>.addTooltip(format.red("多方块升级,附魔温室:速度x10"));
|
||||
<contenttweaker:vibrating_stone>.addTooltip(format.red("多方块升级,源质结晶器:输出x4"));
|
||||
<contenttweaker:echo_warren_stone>.addTooltip(format.red("多方块升级,源质结晶器:输出x20"));
|
||||
<contenttweaker:plasma_wood>.addTooltip(format.red("多方块升级,盖亚祭坛:速度x6"));
|
||||
<nuclearcraft:block_depleted_curium>.addTooltip(format.red("多方块升级,重力晶附魔器:流体消耗减免95%"));
|
||||
<contenttweaker:darkstar_collector>.addTooltip(format.red("多方块升级,重力晶附魔器:流体消耗减免95%,速度x20"));
|
||||
@@ -1773,6 +1811,22 @@
|
||||
<abyssalcraft:ethaxiumbrick:2>.addTooltip(format.red("多方块升级,英玫之门:速度x5"));
|
||||
<contenttweaker:elemental_harmonizer>.addTooltip(format.red("多方块升级,巫术组合台:速度x20"));
|
||||
<tardis:toyota_hexagon_4>.addTooltip(format.red("多方块升级,神话开掘反应堆:速度x20"));
|
||||
<contenttweaker:focused_plasma_collider>.addTooltip(format.red("多方块升级,线性等离子加速器:x10并行"));
|
||||
<contenttweaker:superfocused_plasma_collider>.addTooltip(format.red("多方块升级,线性等离子加速器:x100并行"));
|
||||
<contenttweaker:hyperfocused_plasma_collider>.addTooltip(format.red("多方块升级,线性等离子加速器:x1000并行"));
|
||||
<contenttweaker:halite_bejewelled_ichorium_catalyst>.addTooltip(format.red("多方块升级,神秘复制机:流体输出x2"));
|
||||
<contenttweaker:catalyst_of_the_warrens>.addTooltip(format.red("多方块升级,神秘复制机:流体输出x10"));
|
||||
<contenttweaker:hihi_irokane_block>.addTooltip(format.red("多方块升级,坠星仪:速度x8"));
|
||||
<contenttweaker:plasma_accelerator_tube>.addTooltip(format.red("多方块升级,粒子加速器&神话加速器:速度x5"));
|
||||
<contenttweaker:gallifreyan_neutronium_casing>.addTooltip(format.red("多方块升级,中子素炮&中子素轰击器:速度x5"));
|
||||
<contenttweaker:quark_neutronium_module>.addTooltip(format.red("多方块升级,夸克分解器&强脉冲加速器:速度x5"));
|
||||
<contenttweaker:well_defined_machine_case>.addTooltip(format.red("多方块升级,『立方』:速度x5"));
|
||||
<contenttweaker:ascended_fluix_etcher>.addTooltip(format.red("多方块升级,超净间加工机:速度x10"));
|
||||
<contenttweaker:naquadah_casing>.addTooltip(format.red("多方块升级,相对论坍缩器:速度x200"));
|
||||
<contenttweaker:dyson_extruder>.addTooltip(format.red("多方块升级,粒子加速器&神话加速器:速度x20"));
|
||||
<contenttweaker:trinity_neutronium_casing>.addTooltip(format.red("多方块升级,中子素炮&中子素轰击器:速度x20"));
|
||||
<contenttweaker:quark_cosmic_module>.addTooltip(format.red("多方块升级,夸克分解器&强脉冲加速器:速度x20"));
|
||||
<contenttweaker:naquadah_casing>.addTooltip(format.red("方块升级,『立方』:速度x20"));
|
||||
|
||||
|
||||
<thebetweenlands:lurker_skin_pouch>.addTooltip(format.red("该物品可以将物品带进梦魇世界(好耶!)"));
|
||||
@@ -1879,7 +1933,7 @@
|
||||
<contenttweaker:dimensional_ingot>.addTooltip(format.red("感谢Foucs绘制的维度锭纹理!"));
|
||||
|
||||
<contenttweaker:memory_restoration_ritual>.addTooltip(format.red("将意志陷落法器与正确的真名物品(8个)以正确的顺序结合"));
|
||||
<contenttweaker:memory_restoration_ritual>.addTooltip(format.red("仲裁者的一位忠实信徒将指引你"));
|
||||
<contenttweaker:memory_restoration_ritual>.addTooltip(format.red("理序主的一位忠实信徒将指引你"));
|
||||
|
||||
<contenttweaker:dread_cleansing_fabrial>.addTooltip(format.red("通过悚怖净化召唤石获得"));
|
||||
|
||||
@@ -1892,7 +1946,7 @@
|
||||
|
||||
|
||||
<contenttweaker:runes_of_liberation>.addTooltip(format.red("将源语符文、从记忆恢复仪式获得的四种真相之卷,以及虚无世界模组的四种技能胸甲结合。"));
|
||||
<contenttweaker:runes_of_liberation>.addTooltip(format.red("仲裁者的一位忠实信徒,以及任务书,将指引你"));
|
||||
<contenttweaker:runes_of_liberation>.addTooltip(format.red("理序主的一位忠实信徒,以及任务书,将指引你"));
|
||||
|
||||
<divinerpg:dark_dream_bricks>.addTooltip(format.red("PocketSkeleton有些困惑"));
|
||||
|
||||
@@ -2049,6 +2103,7 @@
|
||||
<buildcraftsilicon:laser>.addTooltip(format.red("面向装配台来为其供能"));
|
||||
<buildcraftsilicon:laser>.addTooltip(format.red("使用末影接口模组的能量导管连接,热力的能量管道经常会断连!"));
|
||||
|
||||
<contenttweaker:singular_gravity_honey>.addTooltip(format.red("允许在塞德娜及其之前的所有维度使用创造飞行"));
|
||||
<contenttweaker:singular_gravity_honey>.addTooltip(format.red("Light想腾出点背包空间!"));
|
||||
|
||||
<aoa3:distorting_artifact>.addTooltip(format.red("消除赫尔维蒂维度中的重力影响"));
|
||||
@@ -2150,6 +2205,7 @@
|
||||
<contenttweaker:possessed_sky_stone>.addTooltip(format.red("要是有咒法主宰能命令(Order)我就好了……"));
|
||||
|
||||
<contenttweaker:freed_sky_stone>.addTooltip(format.red("只有咒法主宰才能获得!"));
|
||||
<contenttweaker:freed_sky_stone>.addTooltip(format.red("推荐用使用者 :)"));
|
||||
|
||||
<draconicevolution:fusion_crafting_core>.addTooltip(format.red("警告:不要对其使用超级消音器,会造成卡顿"));
|
||||
|
||||
@@ -2207,6 +2263,240 @@
|
||||
<contenttweaker:draconium_electromagnet>.addTooltip(format.red("对于神话处理器,ME机械输出总线是输出产物最快的方式"));
|
||||
<contenttweaker:awakened_electromagnet>.addTooltip(format.red("对于神话处理器,ME机械输出总线是输出产物最快的方式"));
|
||||
|
||||
<contenttweaker:infinite_alchemical_plate>.addTooltip(format.red("匠魂锤材料:狂乱坚韧手柄、爵士元素锤头、艾德曼左大板、锻铁右大板"));
|
||||
<contenttweaker:infinite_recursive_plate>.addTooltip(format.red("匠魂锤材料:符银坚韧手柄、山铜锤头、开宇左大板、中子素右大板"));
|
||||
<contenttweaker:infinite_entropic_plate>.addTooltip(format.red("匠魂锤材料:混沌核心坚韧手柄、振金合金左大板、飞升神龙合金右大板"));
|
||||
<contenttweaker:infinite_entropic_plate>.addTooltip(format.red("匠魂锤材料:银坚韧手柄、神秘锤头、注血故障左大板、黄铜右大板"));
|
||||
|
||||
<contenttweaker:alchemical_deep_rock>.addTooltip(format.red("破坏一些沉睡之石"));
|
||||
|
||||
<contenttweaker:hypercharged_wool>.addTooltip(format.red("使用渐消羊毛右击一只特殊的羊"));
|
||||
<contenttweaker:hypercharged_wool>.addTooltip(format.red("咒法主宰可能知道是哪只羊……"));
|
||||
|
||||
<modularmachinery:blockmefluidoutputbus>.addTooltip(format.red("使用容量卡以提高缓存容量,部分机器可能会用得到"));
|
||||
|
||||
<contenttweaker:white_hole_core>.addTooltip(format.red("站在塞德娜金属稳定器上"));
|
||||
|
||||
|
||||
<contenttweaker:shard_of_forgiven_lost_time>.addTooltip(format.red("感谢NerdySpider绘制的碎片纹理!"));
|
||||
<contenttweaker:shard_of_humble_education>.addTooltip(format.red("感谢NerdySpider绘制的碎片纹理!"));
|
||||
<contenttweaker:shard_of_surrender>.addTooltip(format.red("感谢NerdySpider绘制的碎片纹理!"));
|
||||
<contenttweaker:shard_of_restored_faith>.addTooltip(format.red("感谢NerdySpider绘制的碎片纹理!"));
|
||||
|
||||
<contenttweaker:abyssal_alloy_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:adamantium_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:ascended_draconium_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:berserker_steel_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:brightsteel_alloy_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:divine_ironwood_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:fluctuating_alloy>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:high_refraction_alloy_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
<contenttweaker:phasing_alloy_ingot>.addTooltip(format.red("感谢NerdySpider重绘的锭纹理!"));
|
||||
|
||||
<contenttweaker:eden_refined_gem>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:wildwood_refined_gem>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:apalachia_refined_gem>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:skythern_refined_gem>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
|
||||
<contenttweaker:warren_splitter_fabrial>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:strings_crystal>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:stone_of_anima>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:shyre_chunk>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:recursion_of_war>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:rhenium_catalyst>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:solidified_memory>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:supertranslucent_catalyst>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:aesir_rift>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
|
||||
<contenttweaker:annealed_high_density_frame>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:arc_coil>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:call_of_the_arbiter>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
|
||||
<contenttweaker:charged_dyson_capacitor>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:pure_warp>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:botanical_pillar>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:eldritch_flower>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:chaotic_summoner>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:clausurae>.addTooltip(format.red("感谢NerdySpider为该合成线绘制的纹理!"));
|
||||
|
||||
<contenttweaker:stable_orbiting_device>.addTooltip(format.red("感谢NerdySpider为该合成线绘制的纹理!"));
|
||||
|
||||
<contenttweaker:dream_cluster>.addTooltip(format.red("感谢NerdySpider为该合成线绘制的纹理!"));
|
||||
<contenttweaker:mithminite_prism>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:crystalline_lens>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:cursed_myrmitite_catalyst>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:core_of_mirroring>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:high_strength_transmission>.addTooltip(format.red("感谢NerdySpider为该合成线绘制的纹理!"));
|
||||
<contenttweaker:ethereal_infusion_stone>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:resonating_eldritch_artifact>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:organic_jade_plate>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:mystical_gem>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:myrmitite_catalyst>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
|
||||
<contenttweaker:defined_plate>.addTooltip(format.red("感谢NerdySpider重绘的定义系列物品纹理!"));
|
||||
<contenttweaker:defined_redstone_chipset>.addTooltip(format.red("感谢NerdySpider重绘的定义系列物品纹理!"));
|
||||
<contenttweaker:defined_insanium_cluster>.addTooltip(format.red("感谢NerdySpider重绘的定义系列物品纹理!"));
|
||||
<contenttweaker:defined_inferium_cluster>.addTooltip(format.red("感谢NerdySpider重绘的定义系列物品纹理!"));
|
||||
<contenttweaker:unidentified_plate>.addTooltip(format.red("感谢NerdySpider重绘的定义系列物品纹理!"));
|
||||
|
||||
<contenttweaker:actualized_warren_alloy>.addTooltip(format.red("感谢NerdySpider绘制的迷道合金纹理!"));
|
||||
|
||||
<contenttweaker:unleashed_mithril_3>.addTooltip(format.red("感谢NerdySpider绘制的解封秘银纹理!"));
|
||||
|
||||
<contenttweaker:recursium_ingot>.addTooltip(format.red("感谢NerdySpider绘制的递归素纹理!"));
|
||||
|
||||
|
||||
<contenttweaker:arcane_fissile_alloy>.addTooltip(format.aqua("基础持续时间:72 min"));
|
||||
<contenttweaker:arcane_fissile_alloy>.addTooltip(format.aqua("基础能量:1000 RF/t"));
|
||||
<contenttweaker:arcane_fissile_alloy>.addTooltip(format.aqua("基础产热:52 H/t"));
|
||||
|
||||
<contenttweaker:apothecary_fissile_alloy>.addTooltip(format.aqua("基础持续时间:57 min"));
|
||||
<contenttweaker:apothecary_fissile_alloy>.addTooltip(format.aqua("基础能量:1000 RF/t"));
|
||||
<contenttweaker:apothecary_fissile_alloy>.addTooltip(format.aqua("基础产热:408 H/t"));
|
||||
|
||||
<contenttweaker:silvan_fissile_alloy>.addTooltip(format.aqua("基础持续时间:44 min"));
|
||||
<contenttweaker:silvan_fissile_alloy>.addTooltip(format.aqua("基础能量:1000 RF/t"));
|
||||
<contenttweaker:silvan_fissile_alloy>.addTooltip(format.aqua("基础产热:360 H/t"));
|
||||
|
||||
<contenttweaker:innerved_fissile_alloy>.addTooltip(format.aqua("基础持续时间:36 min"));
|
||||
<contenttweaker:innerved_fissile_alloy>.addTooltip(format.aqua("基础能量:1000 RF/t"));
|
||||
<contenttweaker:innerved_fissile_alloy>.addTooltip(format.aqua("基础产热:112 H/t"));
|
||||
|
||||
<contenttweaker:radiant_fissile_alloy>.addTooltip(format.aqua("基础持续时间:83 min"));
|
||||
<contenttweaker:radiant_fissile_alloy>.addTooltip(format.aqua("基础能量:1000 RF/t"));
|
||||
<contenttweaker:radiant_fissile_alloy>.addTooltip(format.aqua("基础产热:1 H/t"));
|
||||
|
||||
|
||||
|
||||
<contenttweaker:actualizing_casing>.addTooltip(format.red("注意:建议为迷道提取器多方块结构设计红石控制的自动停机机制,否则可能会造成卡顿"));
|
||||
<contenttweaker:hyperuranion_actualizer_naquadah>.addTooltip(format.red("注意:建议为迷道提取器多方块结构设计红石控制的自动停机机制,否则可能会造成卡顿"));
|
||||
<contenttweaker:hyperuranion_actualizer_dimshard>.addTooltip(format.red("注意:建议为迷道提取器多方块结构设计红石控制的自动停机机制,否则可能会造成卡顿"));
|
||||
<contenttweaker:hyperuranion_actualizer_dragonsteel>.addTooltip(format.red("注意:建议为迷道提取器多方块结构设计红石控制的自动停机机制,否则可能会造成卡顿"));
|
||||
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("跃迁器"));
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("站在JEI中显示的结构中心来激活"));
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("警告:若世界是在beta-0.18版本之前创建的,你需要手动生成维度"));
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("关闭整合包,备份存档"));
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("从config > advRocketry文件夹中复制'plantDefs.xml'文件到saves > worldname > advRocketry"));
|
||||
<contenttweaker:call_to_mission>.addTooltip(format.red("打开整合包,重新使用该物品"));
|
||||
|
||||
<modularmachinery:cryolattice_tbu_controller>.addTooltip(format.red("同样适用于其他多种燃料!"));
|
||||
|
||||
<contenttweaker:summons_of_the_realmshifter_cherubim>.addTooltip(format.red("站在叁壹界中发现的陶瓦上使用"));
|
||||
|
||||
<contenttweaker:call_of_the_lover>.addTooltip(format.red("右击正确的维境跃迁者,维境跃迁者智天使召唤物将指引你"));
|
||||
<contenttweaker:call_of_the_loved>.addTooltip(format.red("右击正确的维境跃迁者,维境跃迁者智天使召唤物将指引你"));
|
||||
<contenttweaker:call_of_the_love>.addTooltip(format.red("右击正确的维境跃迁者,维境跃迁者智天使召唤物将指引你"));
|
||||
|
||||
<tombstone:grave_key>.addTooltip(format.red("若由于某些原因,坟墓没有生成,可使用该命令恢复物品栏物品:"));
|
||||
<tombstone:grave_key>.addTooltip(format.red("/ob_inventory restore [玩家名称] [物品栏备份]"));
|
||||
<tombstone:grave_key>.addTooltip(format.red("使用TAB键来选择最近一次死亡时的[物品栏备份]"));
|
||||
|
||||
<contenttweaker:cuendillar_catalyst_1>.addTooltip(format.red("使用源语誓约右击叁壹召唤石中的三一生物"));
|
||||
<contenttweaker:cuendillar_catalyst_2>.addTooltip(format.red("使用源语誓约右击叁壹召唤石中的三一生物"));
|
||||
<contenttweaker:cuendillar_catalyst_3>.addTooltip(format.red("使用源语誓约右击叁壹召唤石中的三一生物"));
|
||||
|
||||
<contenttweaker:recursive_quantum>.addTooltip(format.red("推荐进行结构共用"));
|
||||
<contenttweaker:fractallite_quantum>.addTooltip(format.red("推荐进行结构共用"));
|
||||
|
||||
<aoa3:immortal_banner>.addTooltip(format.red("通过与不朽之地入口处的令牌交易者交易获得"));
|
||||
|
||||
<contenttweaker:charm_of_the_falling_tower>.addTooltip(format.red("感谢ChaosStrikez帮忙实现!"));
|
||||
<contenttweaker:charm_of_the_falling_tower>.addTooltip(format.red("在主世界中右击以召唤一颗血魔法模组的陨星"));
|
||||
<contenttweaker:charm_of_the_falling_tower>.addTooltip(format.red("可通过正确配置使用者和黑曜石以实现自动化"));
|
||||
|
||||
<contenttweaker:infinite_plate_stamp>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:cuendillar_plate>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:infinite_alchemical_plate>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:infinite_entropic_plate>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
<contenttweaker:infinite_recursive_plate>.addTooltip(format.red("感谢NerdySpider绘制的纹理!"));
|
||||
|
||||
<contenttweaker:multiblock_input_swapping>.addTooltip(format.red("避免重复建造大量多方块结构的提示技巧!"));
|
||||
|
||||
<contenttweaker:cursed_dragon_egg>.addTooltip(format.red("咒法主宰才能获得"));
|
||||
|
||||
<contenttweaker:void_ichorium_rift>.addTooltip(format.red("跃迁器"));
|
||||
|
||||
<contenttweaker:tainted_alchemic_catalyst>.addTooltip(format.red("需要装满10点咒波的咒波容器"));
|
||||
|
||||
<thaumicwonders:flux_capacitor>.addTooltip(format.red("放置后会吸收对应区块内的咒波"));
|
||||
<thaumicwonders:flux_capacitor>.addTooltip(format.red("最多可容纳10点咒波"));
|
||||
|
||||
<contenttweaker:void_ichorium_jewel>.addTooltip(format.red("造成(大量)魔法伤害 ;)"));
|
||||
|
||||
<contenttweaker:tainted_prison_key>.addTooltip(format.red("召唤石"));
|
||||
|
||||
<contenttweaker:undead_soil>.addTooltip(format.red("将(未使用过的)暴食领主之杖与正确的(7种)地表方块结合"));
|
||||
<contenttweaker:undead_soil>.addTooltip(format.red("争竞界将指引你,记得用精准采集"));
|
||||
|
||||
<contenttweaker:oath_of_the_seven_undead_lords>.addTooltip(format.red("在争竞界的每种生物群系中使用该物品"));
|
||||
<contenttweaker:oath_of_the_seven_undead_lords>.addTooltip(format.red("该物品使用时会消耗,所以多做一些"));
|
||||
|
||||
<avaritia:matter_cluster>.addTooltip(format.red("通过无尽贪婪模组工具的右击功能获得"));
|
||||
|
||||
|
||||
<aoa3:abyssal_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:ancient_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:apoco_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:clown_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:darkly_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:floro_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:golden_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:haunted_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:lelyetian_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:light_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:lunar_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:nether_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:precasian_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:predator_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:rocky_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:runic_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:seaside_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
<aoa3:smiley_upgrade_kit>.addTooltip(format.red("发现于第4、5、6、7章的所有维度中的塞尔瑞结构"));
|
||||
|
||||
|
||||
<contenttweaker:vow_to_death>.addTooltip(format.red("我太爱赌博了,特别是暮色战士这款"));
|
||||
|
||||
<contenttweaker:gun_devil_limb>.addTooltip(format.red("我太爱赌博了,特别是塞尔瑞战士这款"));
|
||||
|
||||
<avaritiaitem:bedrock_blaster>.addTooltip(format.red("对基岩右击以破坏周围基岩"));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<contenttweaker:lucky_box_aether_bronze>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
<contenttweaker:lucky_box_aether_silver>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
<contenttweaker:lucky_box_aether_gold>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
<contenttweaker:lucky_box_twilight_books>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
<contenttweaker:lucky_box_twilight_weapons>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
<contenttweaker:lucky_box_advent_armor>.addTooltip(format.red("这是个装有随机物品的战利品箱,可自动化其放置与破坏过程 ;)"));
|
||||
|
||||
<contenttweaker:astral_mastery_tome>.addTooltip(format.red("将星能力等级上限提升至100"));
|
||||
|
||||
<thaumicwonders:alienist_stone>.addTooltip(format.red("可合成为不毁版本,用其进行自动化"));
|
||||
|
||||
<contenttweaker:quasar_core>.addTooltip(format.red("轮回噩梦合成器喝硅岩外壳能帮得上忙"));
|
||||
|
||||
<divinerpg:halite_phaser>.addTooltip(format.red("轮回噩梦合成器喝硅岩外壳能帮得上忙"));
|
||||
|
||||
<tardis:key>.addTooltip(format.red("通过完全生长的塔迪斯珊瑚获得"));
|
||||
|
||||
<contenttweaker:nineteen_blocks>.addTooltip(format.red("预览中只显示了4个方块,但实际上有19个"));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
+12
-8
@@ -100,7 +100,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:ayeraco_heart>.addTooltip(format.red("发现于末地的潜影贝祭坛"));
|
||||
|
||||
<minecraft:totem_of_undying>.addTooltip(format.red("唤魔者刷怪蛋存在配方"));
|
||||
<minecraft:totem_of_undying>.addTooltip(format.red("递归之卷会很有用"));
|
||||
|
||||
<thaumcraft:curio:6>.addTooltip(format.red("血腥传送门可发现于主世界"));
|
||||
|
||||
@@ -230,7 +230,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:pure_warp>.addTooltip(format.red("使用恐灾右击获得"));
|
||||
|
||||
<enderio:item_broken_spawner>.addTooltip(format.red("破损的僵尸刷怪箱存在配方"));
|
||||
<enderio:item_broken_spawner>.addTooltip(format.red("破损的僵丨尸刷怪箱存在配方"));
|
||||
|
||||
<thaumcraft:void_seed>.addTooltip(format.red("通过坍缩大型咒波裂隙获得"));
|
||||
|
||||
@@ -574,6 +574,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:aeldunari>.addTooltip(format.green("在无序配方中可重复使用"));
|
||||
|
||||
|
||||
<techreborn:industrial_blast_furnace>.addTooltip(format.red("3x4x3的中空立方体,机器在最底层中间"));
|
||||
<techreborn:industrial_blast_furnace>.addTooltip(format.red("可进行以下操作以提升温度:"));
|
||||
<techreborn:industrial_blast_furnace>.addTooltip(format.red("- 使用更高级别的机械外壳"));
|
||||
@@ -602,6 +603,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<techreborn:fusion_control_computer>.addTooltip(format.red("可使用线圈右击控制器进行自动放置"));
|
||||
|
||||
|
||||
<nuclearcraft:part:2>.addTooltip(format.red("钚粉是不错的产铀来源,但是怎么获得呢??"));
|
||||
|
||||
<contenttweaker:nethengeic_rune>.addTooltip(format.red("纹理有点错位,但这是我的处女作,所以我觉得OK :)"));
|
||||
@@ -745,7 +747,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<appliedenergistics2:crystal_seed:1200>.addTooltip(format.red("得等上好一会儿,或许该先去打点Boss,探索探索……"));
|
||||
|
||||
<erebus:materials:38>.addTooltip(format.red("使用绿宝石、钻石以及黑曜石右击贡献祭坛"));
|
||||
<erebus:materials:38>.addTooltip(format.red("使用绿宝石、钻石以及黑曜石右击奉献祭坛"));
|
||||
|
||||
<minecraft:chest>.addTooltip(format.red("感谢Sandman366在修复JEI搜索木板导致崩溃的问题方面的帮助 ;)"));
|
||||
|
||||
@@ -1112,6 +1114,7 @@ import crafttweaker.item.IItemCondition;
|
||||
<contenttweaker:mortum_star>.addTooltip(format.red("你解开神圣之地的秘密了吗?"));
|
||||
|
||||
<contenttweaker:sacred_acorn>.addTooltip(format.red("与正确的树皮结合以分别获得两种神圣树苗"));
|
||||
<contenttweaker:sacred_acorn>.addTooltip(format.red("神圣召唤石将指引你"));
|
||||
|
||||
<extrabotany:allforone>.addTooltip(format.red("很有可能不起作用(Forge的bug)"));
|
||||
|
||||
@@ -1469,7 +1472,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:matrix_ore>.addTooltip(format.red("在塞尔瑞维度,使用斗轮式挖掘机开采Matrix矿床"));
|
||||
|
||||
<contenttweaker:everlasting_fusor>.addTooltip(format.red("制作4个即可"));
|
||||
<contenttweaker:everlasting_fusor>.addTooltip(format.red("正统结局需要制作5个"));
|
||||
|
||||
<materialpart:abyssite:ingot>.addTooltip(format.red("可从聚变反应堆中泵出等离子体"));
|
||||
|
||||
@@ -1490,7 +1493,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:tennessine_gem>.addTooltip(format.red("等级越高,概率越大"));
|
||||
|
||||
<contenttweaker:scale_of_the_ancient_heart>.addTooltip(format.red("使用仲裁者之唤"));
|
||||
<contenttweaker:scale_of_the_ancient_heart>.addTooltip(format.red("使用理序主之唤"));
|
||||
|
||||
<contenttweaker:pure_egg>.addTooltip(format.red("发现于谐律界"));
|
||||
|
||||
@@ -1967,7 +1970,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<astralsorcery:blockaltar:0>.addTooltip(format.red("配方可能会出bug,星辉和凿子的大理石都试试!"));
|
||||
|
||||
<contenttweaker:europa_spinel>.addTooltip(format.red("通过和平誓言召唤石获得"));
|
||||
<contenttweaker:europa_spinel>.addTooltip(format.red("通过和平誓约召唤石获得"));
|
||||
|
||||
<contenttweaker:hator_spinel>.addTooltip(format.red("通过三一召唤石获得"));
|
||||
|
||||
@@ -2017,6 +2020,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:myrmex_coolant_cell>.addTooltip(format.red("诅咒恐蚁金属流体桶存在配方"));
|
||||
|
||||
|
||||
<contenttweaker:black_hole_honey>.addTooltip(format.red("允许在所有维度使用创造飞行"));
|
||||
|
||||
<immersiveengineering:stone_decoration:0>.addTooltip(format.red("在基础工作台之前不需要合成,焦煤块可以在主世界找到"));
|
||||
@@ -2133,7 +2137,7 @@ import crafttweaker.item.IItemCondition;
|
||||
<contenttweaker:fluix_etcher>.addTooltip(format.red("Paronity和Kherune非常喜欢自动合成"));
|
||||
|
||||
<tardis:tardis_coral>.addTooltip(format.red("警告:放置该物品将导致卡顿,离基地远点"));
|
||||
<tardis:tardis_coral>.addTooltip(format.red("推荐在第一次进入TARDIS之后,立即转用其他传送手段"));
|
||||
<tardis:tardis_coral>.addTooltip(format.red("推荐在第一次进入塔迪斯之后,立即转用其他传送手段"));
|
||||
|
||||
<tardis:tardis_coral>.addTooltip(format.red("放置在草方块上,等待一些MC日以让其生长"));
|
||||
|
||||
@@ -3640,7 +3644,6 @@ import crafttweaker.item.IItemCondition;
|
||||
<contenttweaker:nuclearcraft_fission_interior>.addTooltip(format.red("使用配方中的模块化控制器来自动搭建不同燃料反应堆的内部构造!"));
|
||||
<contenttweaker:nuclearcraft_fission_interior>.addTooltip(format.red("感谢cry想出的这个点子!"));
|
||||
|
||||
<modularmachinery:safe_fission_tbu_controller>.addTooltip(format.red("同样适用于许多其他燃料!"));
|
||||
|
||||
<contenttweaker:active_cryotheum_cooler>.addTooltip(format.red("使用核电工艺模组的液冷器替换该方块!"));
|
||||
<contenttweaker:active_cryotheum_cooler>.addTooltip(format.red("用缓存器替换反应堆外墙的外壳,对其输送流体!"));
|
||||
@@ -3653,3 +3656,4 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,164 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.appliedenergistics2.Inscriber;
|
||||
import crafttweaker.data.IData;
|
||||
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
mods.abyssalcraft.InfusionRitual.addRitual("TravixteWarperThingy",
|
||||
4, 0,
|
||||
100000,
|
||||
true,
|
||||
<contenttweaker:summons_to_the_meatball_man>,
|
||||
<contenttweaker:wormhole_catalyst>,
|
||||
[<contenttweaker:star_of_betrayal>,<contenttweaker:orichalcum>,
|
||||
<contenttweaker:star_of_betrayal>,<contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:star_of_betrayal>,<contenttweaker:orichalcum>,
|
||||
<contenttweaker:star_of_betrayal>,<contenttweaker:shard_of_the_cosmos>]);
|
||||
game.setLocalization("ac.ritual.TravixteWarperThingy", "争竞界大兄弟");
|
||||
game.setLocalization("ac.ritual.TravixteWarperThingy.desc", "争竞,争竞,争竞界!");
|
||||
|
||||
|
||||
|
||||
scripts.PuzzleUtil.addPuzzleShapeless("undeadsoiltravixte",
|
||||
<contenttweaker:undead_soil>,
|
||||
[<contenttweaker:staff_of_the_lord_of_gluttony>.reuse(),
|
||||
<aoa3:borean_grass>,
|
||||
<aoa3:iromine_grass>,
|
||||
<aoa3:celeve_grass>,
|
||||
<aoa3:runic_grass>,
|
||||
<aoa3:baron_ground>,
|
||||
<aoa3:mysterium_grass>,
|
||||
<minecraft:snow>]);
|
||||
|
||||
|
||||
mods.abyssalcraft.InfusionRitual.addRitual("TravixteOathLords",
|
||||
4, 0,
|
||||
100000,
|
||||
true,
|
||||
<contenttweaker:oath_of_the_seven_undead_lords>,
|
||||
<tconstruct:large_plate>.withTag({Material: "mod_lavacow.holy_sludge"}),
|
||||
[<contenttweaker:true_tongue_oath>,<contenttweaker:undead_soil>,
|
||||
<contenttweaker:true_tongue_oath>,<contenttweaker:undead_soil>,
|
||||
<contenttweaker:true_tongue_oath>,<contenttweaker:undead_soil>,
|
||||
<contenttweaker:true_tongue_oath>,<contenttweaker:undead_soil>]);
|
||||
game.setLocalization("ac.ritual.TravixteOathLords", "争竞界大兄弟");
|
||||
game.setLocalization("ac.ritual.TravixteOathLords.desc", "争竞,争竞,争竞界!");
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infdeathcallstonedeath", "",
|
||||
<contenttweaker:mission_of_undeath_callstone>, 10,
|
||||
[<aspect:mortuus>*10000, <aspect:spiritus>*10000, <aspect:vinculum>*10000, <aspect:exanimis>*10000],
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
[<contenttweaker:respect_of_the_lord_of_envy>,
|
||||
<contenttweaker:respect_of_the_lord_of_greed>,
|
||||
<contenttweaker:respect_of_the_lord_of_lust>,
|
||||
<contenttweaker:respect_of_the_lord_of_pride>,
|
||||
<contenttweaker:respect_of_the_lord_of_sloth>,
|
||||
<contenttweaker:respect_of_the_lord_of_wrath>]);
|
||||
|
||||
|
||||
mods.abyssalcraft.InfusionRitual.addRitual("TravixteVowDeath",
|
||||
4, 0,
|
||||
100000,
|
||||
true,
|
||||
<contenttweaker:vow_to_death>,
|
||||
<tfspellpack:amulet_life_charm>,
|
||||
[<tconstruct:pan_head>.withTag({Material: "mod_lavacow.ectoplasm"}),<contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:true_tongue_oath>,<contenttweaker:shard_of_the_cosmos>,
|
||||
<tconstruct:pan_head>.withTag({Material: "mod_lavacow.ectoplasm"}),<contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:true_tongue_oath>,<contenttweaker:shard_of_the_cosmos>]);
|
||||
game.setLocalization("ac.ritual.TravixteVowDeath", "争竞界大兄弟");
|
||||
game.setLocalization("ac.ritual.TravixteVowDeath.desc", "争竞,争竞,争竞界!");
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infdeathrecursiongluttony", "",
|
||||
<contenttweaker:recursion_of_gluttony>, 10,
|
||||
[<aspect:mortuus>*10000, <aspect:spiritus>*10000, <aspect:vinculum>*10000, <aspect:exanimis>*10000],
|
||||
<contenttweaker:respect_of_death>,
|
||||
[<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:oath_of_the_lord_of_gluttony>]);
|
||||
|
||||
|
||||
mods.thaumcraft.Crucible.registerRecipe("crucrecgluttony", "", <contenttweaker:recursion_of_gluttony>*2, <contenttweaker:recursion_of_gluttony>, [<aspect:sensus>*10, <aspect:desiderium>*10, <aspect:vacuos>*10, <aspect:humanus>*10]);
|
||||
|
||||
|
||||
val infbucketofundeath = RecipeBuilder.newBuilder("infbucketofundeath","arcane_autoinfuser",120);
|
||||
infbucketofundeath.addEnergyPerTickInput(100);
|
||||
infbucketofundeath.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "mortuus"}]})*30);
|
||||
infbucketofundeath.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "infernum"}]})*20);
|
||||
infbucketofundeath.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "vitium"}]})*10);
|
||||
infbucketofundeath.addItemInput(<forge:bucketfilled>.withTag({FluidName: "liquid_death", Amount: 1000}));
|
||||
infbucketofundeath.addItemInput(<contenttweaker:recursion_of_gluttony>*2);
|
||||
infbucketofundeath.addItemInput(<contenttweaker:cuendillar_plate>*2);
|
||||
infbucketofundeath.addItemOutput(<forge:bucketfilled>.withTag({FluidName: "mastery_of_undeath", Amount: 1000}));
|
||||
infbucketofundeath.build();
|
||||
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infgundevillimb", "",
|
||||
<contenttweaker:gun_devil_limb>, 10,
|
||||
[<aspect:aversio>*1000, <aspect:visum>*1000, <aspect:diabolus>*1000, <aspect:fabrico>*1000, <aspect:infernum>*1000, <aspect:imperium>*1000, <aspect:sonus>*1000, <aspect:spiritus>*1000, <aspect:motus>*1000, <aspect:exitium>*1000, <aspect:machina>*1000],
|
||||
<contenttweaker:gun_devil_piece>,
|
||||
[<aoa3:tiger_tommy>,
|
||||
<aoa3:aqua_magnum>,
|
||||
<aoa3:smile_blaster>,
|
||||
<aoa3:gold_bringer>,
|
||||
<aoa3:skullifact>,
|
||||
<aoa3:bomb_launcher>,
|
||||
<contenttweaker:recursion_of_gluttony>,
|
||||
<aoa3:soul_drainer>,
|
||||
<aoa3:fungal_cannon>,
|
||||
<aoa3:hiver>,
|
||||
<aoa3:floro_rpg>,
|
||||
<aoa3:bomb_launcher>,
|
||||
<aoa3:moon_maker>,
|
||||
<contenttweaker:recursion_of_gluttony>]);
|
||||
|
||||
mods.abyssalcraft.InfusionRitual.addRitual("TravixteGunDevil",
|
||||
4, 0,
|
||||
100000,
|
||||
true,
|
||||
<contenttweaker:gun_devil_confrontation_callstone>,
|
||||
<contenttweaker:gun_devil_limb>,
|
||||
[<contenttweaker:gun_devil_piece>,<contenttweaker:gun_devil_piece>,
|
||||
<contenttweaker:gun_devil_piece>,<contenttweaker:gun_devil_piece>,
|
||||
<contenttweaker:gun_devil_piece>,<contenttweaker:gun_devil_piece>,
|
||||
<contenttweaker:gun_devil_piece>,<contenttweaker:gun_devil_piece>]);
|
||||
game.setLocalization("ac.ritual.TravixteGunDevil", "争竞界大兄弟");
|
||||
game.setLocalization("ac.ritual.TravixteGunDevil.desc", "争竞,争竞,争竞界!");
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infbedrockblaster", "",
|
||||
<avaritiaitem:bedrock_blaster>, 10,
|
||||
[<aspect:perditio>*10000],
|
||||
<divinerpg:bedrock_chunk>,
|
||||
[<contenttweaker:magazine_of_the_gun_devil>,
|
||||
<divinerpg:arcanite_blaster>,
|
||||
<contenttweaker:magazine_of_the_gun_devil>,
|
||||
<divinerpg:arcanite_blaster>,
|
||||
<contenttweaker:magazine_of_the_gun_devil>,
|
||||
<divinerpg:arcanite_blaster>,
|
||||
<contenttweaker:magazine_of_the_gun_devil>,
|
||||
<divinerpg:arcanite_blaster>]);
|
||||
|
||||
|
||||
|
||||
// summon aoa3:nightfly ~ ~5 ~ {ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:10.0}],Health:1000000f,CustomName:"Piece of the Gun Devil",Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:precasian_slugger"},{Count:1,id:"aoa3:baronator"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:fungal_cannon"},{Count:1,id:"aoa3:flower_cannon"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:gold_bringer"},{Count:1,id:"aoa3:golder_bomber"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:shadow_blaster"},{Count:1,id:"aoa3:demolisher"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:dark_destroyer"},{Count:1,id:"aoa3:minigun"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Passengers:[{id:"thaumcraft:cultistknight",CustomName:"Piece of the Gun Devil",IsBaby:1,Invulnerable:1,PersistenceRequired:1,HandItems:[{Count:1,id:"aoa3:abominator"},{Count:1,id:"aoa3:bubble_horn"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}]}]}]}]}]}]}]}
|
||||
|
||||
|
||||
// summon aoa3:nightfly ~ ~5 ~ {ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}],Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:10.0}],Health:1000000f,CustomName:"Subject of the Gun Devil",Passengers:[{id:zombie,CustomName:"Subject of the Gun Devil",Attributes:[{Name:generic.maxHealth, Base:1000000.0},{Name:generic.attackDamage, Base:10.0}],Health:1000000f,PersistenceRequired:1,HandItems:[{count:1,id:"contenttweaker:bullet_of_the_gun_devil"},{Count:1,id:"aoa3:baronator"}],HandDropChances:[1.0f,1.0f],ActiveEffects:[{Id:14,Amplifier:0,Duration:999999}]}]}
|
||||
@@ -0,0 +1,815 @@
|
||||
import mods.modularmachinery.RecipeBuilder;
|
||||
import mods.thaumcraft.Crucible;
|
||||
import mods.thaumcraft.Infusion;
|
||||
import mods.appliedenergistics2.Inscriber;
|
||||
import crafttweaker.data.IData;
|
||||
import scripts.enchantwrapper.EnchantUtil.EnchantMap;
|
||||
import scripts.enchantwrapper.EnchantWrapper.SuperEnchantedItem;
|
||||
import crafttweaker.enchantments.IEnchantmentDefinition;
|
||||
|
||||
|
||||
|
||||
|
||||
val inffurnacecosmosshard = RecipeBuilder.newBuilder("inffurnacecosmosshard","infinity_furnace",20);
|
||||
inffurnacecosmosshard.addFluidInput(<fluid:pre_baryonic_plasma>*1000);
|
||||
inffurnacecosmosshard.addItemInput(<contenttweaker:upper_fragment_cosmos>);
|
||||
inffurnacecosmosshard.addItemInput(<contenttweaker:lower_fragment_cosmos>);
|
||||
inffurnacecosmosshard.addItemInput(<contenttweaker:perfected_gem_of_the_cosmos>);
|
||||
inffurnacecosmosshard.addItemInput(<ore:ingotFractalliteHalite>);
|
||||
inffurnacecosmosshard.addItemOutput(<contenttweaker:shard_of_the_cosmos>);
|
||||
inffurnacecosmosshard.build();
|
||||
|
||||
|
||||
|
||||
mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/altar/trinitaswarper",
|
||||
<contenttweaker:call_to_mission>,
|
||||
5000, 500,
|
||||
[
|
||||
<contenttweaker:true_tongue_oath>, <contenttweaker:primordial_star>, <contenttweaker:true_tongue_oath>,
|
||||
<contenttweaker:primordial_star>, <contenttweaker:self_actualizing_warren_rift>, <contenttweaker:primordial_star>,
|
||||
<contenttweaker:true_tongue_oath>, <contenttweaker:primordial_star>, <contenttweaker:true_tongue_oath>,
|
||||
<contenttweaker:shard_of_the_cosmos>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:shard_of_the_cosmos>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>, <contenttweaker:opalescent_matter>,
|
||||
<contenttweaker:stone_of_universal_balance>, <careerbees:ingredients:13>,
|
||||
<contenttweaker:stone_of_universal_balance>, <careerbees:ingredients:13>,
|
||||
<contenttweaker:stone_of_universal_balance>, <careerbees:ingredients:13>,
|
||||
<contenttweaker:stone_of_universal_balance>, <careerbees:ingredients:13>
|
||||
],
|
||||
"astralsorcery.constellation.aevitas");
|
||||
|
||||
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infusecherubimtrinitas", "",
|
||||
<contenttweaker:summons_of_the_realmshifter_cherubim>, 10,
|
||||
[<aspect:humanus>*2000, <aspect:cognitio>*2000, <aspect:stellae>*2000, <aspect:sol>*2000, <aspect:luna>*2000, <aspect:caeles>*2000],
|
||||
<contenttweaker:defined_ingot>.withTag({display: {Name: "ᛑᛂᚠᛁᚿᛂᛑ᛫ᚧ",Lore:["§d§o真名§r"]}}),
|
||||
[<contenttweaker:prophetic_paper>, <contenttweaker:trinity_runes>, <careerbees:ingredients:13>,
|
||||
<contenttweaker:prophetic_paper>, <contenttweaker:trinity_runes>, <careerbees:ingredients:13>,
|
||||
<contenttweaker:prophetic_paper>, <contenttweaker:trinity_runes>, <careerbees:ingredients:13>]);
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:runes_of_the_love>,
|
||||
|
||||
[[<contenttweaker:freedomsteel_ingot>, null, <contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}),
|
||||
null, <extendedcrafting:singularity_custom:992>, null,
|
||||
<contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}), null, <contenttweaker:freedomsteel_ingot>],
|
||||
|
||||
[null, <contenttweaker:freedomsteel_ingot>, null,
|
||||
null, <extendedcrafting:singularity_custom:992>, null,
|
||||
null, <contenttweaker:freedomsteel_ingot>, null],
|
||||
|
||||
[<contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}), null, <contenttweaker:freedomsteel_ingot>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <extendedcrafting:singularity_custom:992>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:freedomsteel_ingot>, null, <contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}})],
|
||||
|
||||
[null, null, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:freedomsteel_ingot>, <extendedcrafting:singularity_custom:992>, <contenttweaker:freedomsteel_ingot>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, null, null],
|
||||
|
||||
[<extendedcrafting:singularity_custom:992>, <extendedcrafting:singularity_custom:992>, <extendedcrafting:singularity_custom:992>,
|
||||
<extendedcrafting:singularity_custom:992>, <contenttweaker:alchemical_particle>, <extendedcrafting:singularity_custom:992>,
|
||||
<extendedcrafting:singularity_custom:992>, <extendedcrafting:singularity_custom:992>, <extendedcrafting:singularity_custom:992>],
|
||||
|
||||
[null, null, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:freedomsteel_ingot>, <extendedcrafting:singularity_custom:992>, <contenttweaker:freedomsteel_ingot>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, null, null],
|
||||
|
||||
[<contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}), null, <contenttweaker:freedomsteel_ingot>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <extendedcrafting:singularity_custom:992>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:freedomsteel_ingot>, null, <contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}})],
|
||||
|
||||
[null, <contenttweaker:freedomsteel_ingot>, null,
|
||||
null, <extendedcrafting:singularity_custom:992>, null,
|
||||
null, <contenttweaker:freedomsteel_ingot>, null],
|
||||
|
||||
[<contenttweaker:freedomsteel_ingot>, null, <contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}),
|
||||
null, <extendedcrafting:singularity_custom:992>, null,
|
||||
<contenttweaker:time_crystal>.withTag({display: {Name: "ᛞᛊᛊᛔ",Lore:["§d§o真名§r"]}}), null, <contenttweaker:freedomsteel_ingot>]]);
|
||||
|
||||
|
||||
mods.chisel.Carving.addVariation("trinityrunestrin", <contenttweaker:runes_of_the_lover>);
|
||||
mods.chisel.Carving.addVariation("trinityrunestrin", <contenttweaker:runes_of_the_loved>);
|
||||
mods.chisel.Carving.addVariation("trinityrunestrin", <contenttweaker:runes_of_the_love>);
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:shard_of_the_cosmos>, <contenttweaker:call_of_the_love>, <contenttweaker:call_of_the_love>*4]);
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:shard_of_the_cosmos>, <contenttweaker:call_of_the_lover>, <contenttweaker:call_of_the_lover>*4]);
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<contenttweaker:shard_of_the_cosmos>, <contenttweaker:call_of_the_loved>, <contenttweaker:call_of_the_loved>*4]);
|
||||
|
||||
|
||||
val inffurnacesupermithril1 = RecipeBuilder.newBuilder("inffurnacesupermithril1","infinity_furnace",20);
|
||||
inffurnacesupermithril1.addFluidInput(<fluid:pre_baryonic_plasma>*100);
|
||||
inffurnacesupermithril1.addItemInput(<extendedcrafting:singularity:29>);
|
||||
inffurnacesupermithril1.addItemInput(<contenttweaker:call_of_the_lover>);
|
||||
inffurnacesupermithril1.addItemOutput(<contenttweaker:unleashed_mithril_1>);
|
||||
inffurnacesupermithril1.build();
|
||||
|
||||
val inffurnacesupermithril2 = RecipeBuilder.newBuilder("inffurnacesupermithril2","infinity_furnace",20);
|
||||
inffurnacesupermithril2.addFluidInput(<fluid:pre_baryonic_plasma>*100);
|
||||
inffurnacesupermithril2.addItemInput(<extendedcrafting:singularity:29>);
|
||||
inffurnacesupermithril2.addItemInput(<contenttweaker:call_of_the_loved>);
|
||||
inffurnacesupermithril2.addItemOutput(<contenttweaker:unleashed_mithril_2>);
|
||||
inffurnacesupermithril2.build();
|
||||
|
||||
val inffurnacesupermithril3 = RecipeBuilder.newBuilder("inffurnacesupermithril3","infinity_furnace",20);
|
||||
inffurnacesupermithril3.addFluidInput(<fluid:pre_baryonic_plasma>*100);
|
||||
inffurnacesupermithril3.addItemInput(<extendedcrafting:singularity:29>);
|
||||
inffurnacesupermithril3.addItemInput(<contenttweaker:call_of_the_love>);
|
||||
inffurnacesupermithril3.addItemOutput(<contenttweaker:unleashed_mithril_3>);
|
||||
inffurnacesupermithril3.build();
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:unleashed_triquetra>,
|
||||
1000000,
|
||||
<careerbees:ingredients:13>,
|
||||
[<contenttweaker:unleashed_mithril_1>, <contenttweaker:unleashed_mithril_2>, <contenttweaker:unleashed_mithril_3>]);
|
||||
|
||||
|
||||
mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/altar/trinitascallstone",
|
||||
<contenttweaker:trinitas_callstone>,
|
||||
5000, 500,
|
||||
[
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:lovely_egg>, <contenttweaker:stone_of_universal_balance>,
|
||||
<contenttweaker:lovely_egg>, <contenttweaker:shard_of_the_cosmos>, <contenttweaker:lovely_egg>,
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:lovely_egg>, <contenttweaker:stone_of_universal_balance>,
|
||||
<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>,
|
||||
<contenttweaker:cuendillar_seal>, <contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:cuendillar_seal>, <contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:cuendillar_seal>, <contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:cuendillar_seal>, <contenttweaker:cuendillar_seal>,
|
||||
<contenttweaker:alchemical_particle>, <contenttweaker:alchemical_particle>, <contenttweaker:alchemical_particle>, <contenttweaker:alchemical_particle>,
|
||||
<avaritia:block_resource:2>, <contenttweaker:unleashed_triquetra>,
|
||||
<avaritia:block_resource:2>, <contenttweaker:unleashed_triquetra>,
|
||||
<avaritia:block_resource:2>, <contenttweaker:unleashed_triquetra>
|
||||
],
|
||||
"astralsorcery.constellation.aevitas");
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:prayer_to_the_trinity_of_love>,
|
||||
[[<contenttweaker:stone_of_universal_balance>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:stone_of_universal_balance>],
|
||||
[<contenttweaker:hungering_machine_case>, <contenttweaker:staff_of_the_lord_of_gluttony>.reuse(), <contenttweaker:hungering_machine_case>],
|
||||
[<contenttweaker:stone_of_universal_balance>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:stone_of_universal_balance>]]);
|
||||
|
||||
|
||||
val inffurncuendillar1 = RecipeBuilder.newBuilder("inffurncuendillar1","infinity_furnace",20);
|
||||
inffurncuendillar1.addFluidInput(<fluid:pre_baryonic_plasma>*30);
|
||||
inffurncuendillar1.addItemInput(<contenttweaker:cuendillar_catalyst_1>);
|
||||
inffurncuendillar1.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
inffurncuendillar1.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
inffurncuendillar1.addItemInput(<contenttweaker:cuendillar_plate>);
|
||||
inffurncuendillar1.addItemOutput(<contenttweaker:cuendillar_catalyst_1>*2);
|
||||
inffurncuendillar1.build();
|
||||
|
||||
val inffurncuendillar2 = RecipeBuilder.newBuilder("inffurncuendillar2","infinity_furnace",20);
|
||||
inffurncuendillar2.addFluidInput(<fluid:pre_baryonic_plasma>*30);
|
||||
inffurncuendillar2.addItemInput(<contenttweaker:cuendillar_catalyst_2>);
|
||||
inffurncuendillar2.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
inffurncuendillar2.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
inffurncuendillar2.addItemInput(<contenttweaker:cuendillar_plate>);
|
||||
inffurncuendillar2.addItemOutput(<contenttweaker:cuendillar_catalyst_2>*2);
|
||||
inffurncuendillar2.build();
|
||||
|
||||
val inffurncuendillar3 = RecipeBuilder.newBuilder("inffurncuendillar3","infinity_furnace",20);
|
||||
inffurncuendillar3.addFluidInput(<fluid:pre_baryonic_plasma>*30);
|
||||
inffurncuendillar3.addItemInput(<contenttweaker:cuendillar_catalyst_3>);
|
||||
inffurncuendillar3.addItemInput(<contenttweaker:ascended_fluix_crystal>);
|
||||
inffurncuendillar3.addItemInput(<contenttweaker:hungering_flesh_ingot>);
|
||||
inffurncuendillar3.addItemInput(<contenttweaker:cuendillar_plate>);
|
||||
inffurncuendillar3.addItemOutput(<contenttweaker:cuendillar_catalyst_3>*2);
|
||||
inffurncuendillar3.build();
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.CompressionCrafting.addRecipe(<contenttweaker:singular_fractal>, <contenttweaker:singular_recursion>, 100, <extendedcrafting:material:11>, 100000);
|
||||
|
||||
val compresssingularfractal = RecipeBuilder.newBuilder("compresssingularfractal","quantum_condenser",10);
|
||||
compresssingularfractal.addItemInput(<contenttweaker:singular_recursion>*100);
|
||||
compresssingularfractal.addItemOutput(<contenttweaker:singular_fractal>);
|
||||
compresssingularfractal.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:seal_of_freedom>,
|
||||
1000000,
|
||||
<contenttweaker:cuendillar_seal>,
|
||||
[<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_1>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_2>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_3>, <contenttweaker:freedomsteel_ingot>]);
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:trinity_ingot>,
|
||||
1000000,
|
||||
<contenttweaker:actualizing_hyperuranion_ingot>,
|
||||
[<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_1>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_2>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:unleashed_triquetra>, <contenttweaker:cuendillar_catalyst_3>, <contenttweaker:freedomsteel_ingot>]);
|
||||
|
||||
recipes.addShapeless(<contenttweaker:trinity_nugget>*9,
|
||||
[<contenttweaker:trinity_ingot>]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:trinity_ingot>,
|
||||
[[<contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>],
|
||||
[<contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>],
|
||||
[<contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>, <contenttweaker:trinity_nugget>]]);
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makesupergemofthecosmosbb",
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>*2,
|
||||
[[<contenttweaker:paradigm_of_dominion>, <contenttweaker:recursive_powder>, <extrautils2:decorativesolid:8>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:cursed_sapphire>, <contenttweaker:freedomsteel_ingot>,
|
||||
<extrautils2:decorativesolid:8>, <contenttweaker:recursive_powder>, <contenttweaker:paradigm_of_dominion>],
|
||||
|
||||
[<contenttweaker:recursive_powder>, <contenttweaker:recursion_of_war>, <contenttweaker:big_slime>,
|
||||
<contenttweaker:tennessine_gem>, <contenttweaker:cursed_sapphire>, <contenttweaker:tennessine_gem>,
|
||||
<contenttweaker:big_slime>, <contenttweaker:recursion_of_war>, <contenttweaker:recursive_powder>],
|
||||
|
||||
[<contenttweaker:clunky_chunky_brick>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:will_ensnaring_fabrial>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:corrupted_aragonite>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:will_ensnaring_fabrial>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:clunky_chunky_brick>],
|
||||
|
||||
[<contenttweaker:stable_oganesson>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:nightmare_block>, <contenttweaker:planetary_essence>, <contenttweaker:nightmare_block>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:stable_oganesson>],
|
||||
|
||||
[<contenttweaker:cursed_sapphire>, <contenttweaker:cosmic_fracture>, <contenttweaker:corrupted_aragonite>,
|
||||
<contenttweaker:planetary_essence>, <contenttweaker:imperfect_gem_of_the_cosmos>, <contenttweaker:planetary_essence>,
|
||||
<contenttweaker:corrupted_aragonite>, <contenttweaker:cosmic_fracture>, <contenttweaker:cursed_sapphire>],
|
||||
|
||||
[<contenttweaker:stable_oganesson>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:nightmare_block>, <contenttweaker:planetary_essence>, <contenttweaker:nightmare_block>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:stable_oganesson>],
|
||||
|
||||
[<contenttweaker:clunky_chunky_brick>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:will_ensnaring_fabrial>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:corrupted_aragonite>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:will_ensnaring_fabrial>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:clunky_chunky_brick>],
|
||||
|
||||
[<contenttweaker:recursive_powder>, <contenttweaker:recursion_of_war>, <contenttweaker:big_slime>,
|
||||
<contenttweaker:tennessine_gem>, <contenttweaker:cursed_sapphire>, <contenttweaker:tennessine_gem>,
|
||||
<contenttweaker:big_slime>, <contenttweaker:recursion_of_war>, <contenttweaker:recursive_powder>],
|
||||
|
||||
[<contenttweaker:paradigm_of_dominion>, <contenttweaker:recursive_powder>, <extrautils2:decorativesolid:8>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:cursed_sapphire>, <contenttweaker:freedomsteel_ingot>,
|
||||
<extrautils2:decorativesolid:8>, <contenttweaker:recursive_powder>, <contenttweaker:paradigm_of_dominion>]]);
|
||||
|
||||
|
||||
var fulfilleddata as IData = {
|
||||
display: {Lore:["§d§o终锻完满§r"]}
|
||||
};
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("makesupergemofthecosmosff",
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>*12,
|
||||
[[<contenttweaker:paradigm_of_dominion>, <contenttweaker:recursive_powder>, <extrautils2:decorativesolid:8>,
|
||||
<contenttweaker:ascended_gallifreyan_alloy>.withTag(fulfilleddata), <contenttweaker:cursed_sapphire>, <contenttweaker:ascended_gallifreyan_alloy>.withTag(fulfilleddata),
|
||||
<extrautils2:decorativesolid:8>, <contenttweaker:recursive_powder>, <contenttweaker:paradigm_of_dominion>],
|
||||
|
||||
[<contenttweaker:recursive_powder>, <contenttweaker:recursion_of_war>, <contenttweaker:big_slime>,
|
||||
<contenttweaker:tennessine_gem>, <contenttweaker:cursed_sapphire>, <contenttweaker:tennessine_gem>,
|
||||
<contenttweaker:big_slime>, <contenttweaker:recursion_of_war>, <contenttweaker:recursive_powder>],
|
||||
|
||||
[<contenttweaker:clunky_chunky_brick>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:will_ensnaring_fabrial>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:corrupted_aragonite>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:will_ensnaring_fabrial>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:clunky_chunky_brick>],
|
||||
|
||||
[<contenttweaker:stable_oganesson>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:nightmare_block>, <contenttweaker:planetary_essence>, <contenttweaker:nightmare_block>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:stable_oganesson>],
|
||||
|
||||
[<contenttweaker:cursed_sapphire>, <contenttweaker:cosmic_fracture>, <contenttweaker:corrupted_aragonite>,
|
||||
<contenttweaker:planetary_essence>, <contenttweaker:imperfect_gem_of_the_cosmos>, <contenttweaker:planetary_essence>,
|
||||
<contenttweaker:corrupted_aragonite>, <contenttweaker:cosmic_fracture>, <contenttweaker:cursed_sapphire>],
|
||||
|
||||
[<contenttweaker:stable_oganesson>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:nightmare_block>, <contenttweaker:planetary_essence>, <contenttweaker:nightmare_block>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:will_ensnaring_fabrial>, <contenttweaker:stable_oganesson>],
|
||||
|
||||
[<contenttweaker:clunky_chunky_brick>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:will_ensnaring_fabrial>,
|
||||
<contenttweaker:astral_lizardite>, <contenttweaker:corrupted_aragonite>, <contenttweaker:astral_lizardite>,
|
||||
<contenttweaker:will_ensnaring_fabrial>, <contenttweaker:warren_splitter_fabrial>, <contenttweaker:clunky_chunky_brick>],
|
||||
|
||||
[<contenttweaker:recursive_powder>, <contenttweaker:recursion_of_war>, <contenttweaker:big_slime>,
|
||||
<contenttweaker:tennessine_gem>, <contenttweaker:cursed_sapphire>, <contenttweaker:tennessine_gem>,
|
||||
<contenttweaker:big_slime>, <contenttweaker:recursion_of_war>, <contenttweaker:recursive_powder>],
|
||||
|
||||
[<contenttweaker:paradigm_of_dominion>, <contenttweaker:recursive_powder>, <extrautils2:decorativesolid:8>,
|
||||
<contenttweaker:ascended_gallifreyan_alloy>.withTag(fulfilleddata), <contenttweaker:cursed_sapphire>, <contenttweaker:ascended_gallifreyan_alloy>.withTag(fulfilleddata),
|
||||
<extrautils2:decorativesolid:8>, <contenttweaker:recursive_powder>, <contenttweaker:paradigm_of_dominion>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_blacksmith>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <ore:ingotFractalliteHalite>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>,
|
||||
null, <ore:ingotFractalliteHalite>, null,
|
||||
<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <ore:ingotSacrificeMetal>,
|
||||
<ore:ingotFractalliteHalite>, <contenttweaker:singular_fractal>, <ore:ingotFractalliteHalite>,
|
||||
<ore:ingotSacrificeMetal>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, null, <ore:ingotFractalliteHalite>,
|
||||
<ore:ingotSacrificeMetal>, <contenttweaker:freedomsteel_ingot>, <ore:ingotSacrificeMetal>,
|
||||
<ore:ingotFractalliteHalite>, null, null],
|
||||
|
||||
[<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, <contenttweaker:singular_fractal>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:seal_of_freedom>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:singular_fractal>, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>],
|
||||
|
||||
[null, null, <ore:ingotFractalliteHalite>,
|
||||
<ore:ingotSacrificeMetal>, <contenttweaker:freedomsteel_ingot>, <ore:ingotSacrificeMetal>,
|
||||
<ore:ingotFractalliteHalite>, null, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <ore:ingotSacrificeMetal>,
|
||||
<ore:ingotFractalliteHalite>, <contenttweaker:singular_fractal>, <ore:ingotFractalliteHalite>,
|
||||
<ore:ingotSacrificeMetal>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, <ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>,
|
||||
null, <ore:ingotFractalliteHalite>, null,
|
||||
<ore:ingotFractalliteHalite>, <ore:ingotFractalliteHalite>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <ore:ingotFractalliteHalite>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:dimensionally_ascended_garnet>,
|
||||
10000000,
|
||||
<aoa3:ancient_rock>, [
|
||||
<extendedcrafting:singularity_custom:1001>,
|
||||
<extendedcrafting:singularity_custom:1002>,
|
||||
<extendedcrafting:singularity_custom:1003>,
|
||||
<extendedcrafting:singularity_custom:1004>,
|
||||
<extendedcrafting:singularity_custom:1005>,
|
||||
<extendedcrafting:singularity_custom:1006>,
|
||||
<extendedcrafting:singularity_custom:1007>,
|
||||
<extendedcrafting:singularity_custom:1008>,
|
||||
<extendedcrafting:singularity_custom:1009>,
|
||||
<extendedcrafting:singularity_custom:1010>,
|
||||
<extendedcrafting:singularity_custom:1011>,
|
||||
<extendedcrafting:singularity_custom:1012>,
|
||||
<extendedcrafting:singularity_custom:1013>,
|
||||
<extendedcrafting:singularity_custom:1014>,
|
||||
<extendedcrafting:singularity_custom:1015>,
|
||||
<extendedcrafting:singularity_custom:1016>,
|
||||
<extendedcrafting:singularity_custom:1017>,
|
||||
<extendedcrafting:singularity_custom:1018>,
|
||||
<extendedcrafting:singularity_custom:1019>,
|
||||
<extendedcrafting:singularity_custom:1020>,
|
||||
<extendedcrafting:singularity_custom:1021>,
|
||||
<extendedcrafting:singularity_custom:1022>,
|
||||
<extendedcrafting:singularity_custom:1023>]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_gemcutter>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <avaritiaitem:fractallite_halite_catalyst>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
null, <avaritiaitem:fractallite_halite_catalyst>, null,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>, null],
|
||||
|
||||
[null, <avaritiaitem:fractallite_halite_catalyst>, <contenttweaker:rune_of_freedom>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <contenttweaker:dimensionally_ascended_garnet>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:rune_of_freedom>, <avaritiaitem:fractallite_halite_catalyst>, null],
|
||||
|
||||
[null, null, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:rune_of_freedom>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:rune_of_freedom>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, null, null],
|
||||
|
||||
[<avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>, <contenttweaker:dimensionally_ascended_garnet>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:seal_of_freedom>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:dimensionally_ascended_garnet>, <avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>],
|
||||
|
||||
[null, null, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:rune_of_freedom>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:rune_of_freedom>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, null, null],
|
||||
|
||||
[null, <avaritiaitem:fractallite_halite_catalyst>, <contenttweaker:rune_of_freedom>,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <contenttweaker:dimensionally_ascended_garnet>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
<contenttweaker:rune_of_freedom>, <avaritiaitem:fractallite_halite_catalyst>, null],
|
||||
|
||||
[null, <avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>,
|
||||
null, <avaritiaitem:fractallite_halite_catalyst>, null,
|
||||
<avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <avaritiaitem:fractallite_halite_catalyst>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:infinite_processor>,
|
||||
[[<ore:blockInfinity>, <contenttweaker:hypercubic_energy_orb>, <ore:blockInfinity>],
|
||||
[<contenttweaker:hypercubic_energy_orb>, <contenttweaker:fluix_etcher>, <contenttweaker:hypercubic_energy_orb>],
|
||||
[<ore:blockInfinity>, <contenttweaker:hypercubic_energy_orb>, <ore:blockInfinity>]]);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:balanced_machine_casing>,
|
||||
[[<contenttweaker:hungering_machine_case>, <contenttweaker:cuendillar_plate>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:cuendillar_plate>, <contenttweaker:hungering_machine_case>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:everburner>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:everburner>, <contenttweaker:cuendillar_plate>],
|
||||
[<contenttweaker:ascended_spatial_chassis>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:ascended_spatial_chassis>],
|
||||
[<contenttweaker:cuendillar_plate>, <contenttweaker:everburner>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:everburner>, <contenttweaker:cuendillar_plate>],
|
||||
[<contenttweaker:hungering_machine_case>, <contenttweaker:cuendillar_plate>, <contenttweaker:ascended_spatial_chassis>, <contenttweaker:cuendillar_plate>, <contenttweaker:hungering_machine_case>]]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_engineer>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:balanced_machine_casing>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>,
|
||||
null, <contenttweaker:balanced_machine_casing>, null,
|
||||
<contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, null],
|
||||
|
||||
[null, <contenttweaker:balanced_machine_casing>, <contenttweaker:hyperuranon_actualizing_fabrial>,
|
||||
<contenttweaker:balanced_machine_casing>, <contenttweaker:infinite_processor>, <contenttweaker:balanced_machine_casing>,
|
||||
<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:balanced_machine_casing>, null],
|
||||
|
||||
[null, null, <contenttweaker:balanced_machine_casing>,
|
||||
<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:hyperuranon_actualizing_fabrial>,
|
||||
<contenttweaker:balanced_machine_casing>, null, null],
|
||||
|
||||
[<contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, <contenttweaker:infinite_processor>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:seal_of_freedom>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:infinite_processor>, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>],
|
||||
|
||||
[null, null, <contenttweaker:balanced_machine_casing>,
|
||||
<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:hyperuranon_actualizing_fabrial>,
|
||||
<contenttweaker:balanced_machine_casing>, null, null],
|
||||
|
||||
[null, <contenttweaker:balanced_machine_casing>, <contenttweaker:hyperuranon_actualizing_fabrial>,
|
||||
<contenttweaker:balanced_machine_casing>, <contenttweaker:infinite_processor>, <contenttweaker:balanced_machine_casing>,
|
||||
<contenttweaker:hyperuranon_actualizing_fabrial>, <contenttweaker:balanced_machine_casing>, null],
|
||||
|
||||
[null, <contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>,
|
||||
null, <contenttweaker:balanced_machine_casing>, null,
|
||||
<contenttweaker:balanced_machine_casing>, <contenttweaker:balanced_machine_casing>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:balanced_machine_casing>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
val mythexclattice1 = RecipeBuilder.newBuilder("mythexclattice1","mythic_excavation_lattice",20);
|
||||
mythexclattice1.addFluidInput(<fluid:recursive_life_essence>*1);
|
||||
mythexclattice1.addItemInput(<contenttweaker:clump_of_mythic_matter>);
|
||||
mythexclattice1.addItemOutput(<contenttweaker:recursive_quantum>);
|
||||
mythexclattice1.setChance(0.05);
|
||||
mythexclattice1.build();
|
||||
|
||||
val mythexclattice2 = RecipeBuilder.newBuilder("mythexclattice2","mythic_excavation_lattice",20);
|
||||
mythexclattice2.addFluidInput(<fluid:recursive_life_essence>*1);
|
||||
mythexclattice2.addItemInput(<contenttweaker:recursive_quantum>);
|
||||
mythexclattice2.addItemOutput(<contenttweaker:fractallite_quantum>);
|
||||
mythexclattice2.setChance(0.05);
|
||||
mythexclattice2.build();
|
||||
|
||||
|
||||
|
||||
val compactrecursiveclump = RecipeBuilder.newBuilder("compactrecursiveclump","mythic_processor_compactor",2);
|
||||
compactrecursiveclump.addEnergyPerTickInput(60000);
|
||||
compactrecursiveclump.addItemInput(<contenttweaker:recursive_quantum>);
|
||||
compactrecursiveclump.addItemInput(<contenttweaker:plate_clump_mythic>*4);
|
||||
compactrecursiveclump.addItemOutput(<contenttweaker:plate_clump_recursive>);
|
||||
compactrecursiveclump.build();
|
||||
|
||||
val compactfractalclump = RecipeBuilder.newBuilder("compactfractalclump","mythic_processor_compactor",2);
|
||||
compactfractalclump.addEnergyPerTickInput(60000);
|
||||
compactfractalclump.addItemInput(<contenttweaker:fractallite_quantum>);
|
||||
compactfractalclump.addItemInput(<contenttweaker:plate_clump_recursive>*4);
|
||||
compactfractalclump.addItemOutput(<contenttweaker:plate_clump_fractal>);
|
||||
compactfractalclump.build();
|
||||
|
||||
mods.extendedcrafting.CompressionCrafting.addRecipe(<contenttweaker:slightly_dense_pebble>, <extrautils2:compressedcobblestone:7>, 1000, <extendedcrafting:material:11>, 10000);
|
||||
|
||||
val densecobblepebble = RecipeBuilder.newBuilder("densecobblepebble","quantum_condenser",10);
|
||||
densecobblepebble.addEnergyPerTickInput(500000);
|
||||
densecobblepebble.addItemInput(<extrautils2:compressedcobblestone:7>*1000);
|
||||
densecobblepebble.addItemOutput(<contenttweaker:slightly_dense_pebble>);
|
||||
densecobblepebble.build();
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_experimentalist>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:fractallite_quantum>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>,
|
||||
null, <contenttweaker:fractallite_quantum>, null,
|
||||
<contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>, null],
|
||||
|
||||
[null, <contenttweaker:fractallite_quantum>, <contenttweaker:plate_clump_fractal>,
|
||||
<contenttweaker:fractallite_quantum>, <contenttweaker:compressed_mana_rune>, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:plate_clump_fractal>, <contenttweaker:fractallite_quantum>, null],
|
||||
|
||||
[null, null, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:slightly_dense_pebble>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:slightly_dense_pebble>,
|
||||
<contenttweaker:fractallite_quantum>, null, null],
|
||||
|
||||
[<contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>, <contenttweaker:compressed_mana_rune>,
|
||||
<contenttweaker:freedomsteel_ingot>, <contenttweaker:seal_of_freedom>, <contenttweaker:freedomsteel_ingot>,
|
||||
<contenttweaker:compressed_mana_rune>, <contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>],
|
||||
|
||||
[null, null, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:slightly_dense_pebble>, <contenttweaker:freedomsteel_ingot>, <contenttweaker:slightly_dense_pebble>,
|
||||
<contenttweaker:fractallite_quantum>, null, null],
|
||||
|
||||
[null, <contenttweaker:fractallite_quantum>, <contenttweaker:plate_clump_fractal>,
|
||||
<contenttweaker:fractallite_quantum>, <contenttweaker:compressed_mana_rune>, <contenttweaker:fractallite_quantum>,
|
||||
<contenttweaker:plate_clump_fractal>, <contenttweaker:fractallite_quantum>, null],
|
||||
|
||||
[null, <contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>,
|
||||
null, <contenttweaker:fractallite_quantum>, null,
|
||||
<contenttweaker:fractallite_quantum>, <contenttweaker:fractallite_quantum>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:fractallite_quantum>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.CombinationCrafting.addRecipe(<contenttweaker:standard_of_the_shyre_empire>*4,
|
||||
1000000,
|
||||
<aoa3:shyre_sword>,
|
||||
[
|
||||
<aoa3:bejewelled_ancient_banner>,
|
||||
<aoa3:bejewelled_baron_banner>,
|
||||
<aoa3:bejewelled_boreic_banner>,
|
||||
<aoa3:bejewelled_candy_banner>,
|
||||
<aoa3:bejewelled_clown_banner>,
|
||||
<aoa3:bejewelled_creepy_banner>,
|
||||
<aoa3:bejewelled_crystal_banner>,
|
||||
<aoa3:bejewelled_deep_banner>,
|
||||
<aoa3:bejewelled_dustopian_banner>,
|
||||
<aoa3:bejewelled_fungal_banner>,
|
||||
<aoa3:bejewelled_haunted_banner>,
|
||||
<aoa3:bejewelled_immortal_banner>,
|
||||
<aoa3:bejewelled_lelyetian_banner>,
|
||||
<aoa3:bejewelled_lunar_banner>,
|
||||
<aoa3:bejewelled_mecha_banner>,
|
||||
<aoa3:bejewelled_rosidian_banner>,
|
||||
<aoa3:bejewelled_runic_banner>,
|
||||
<aoa3:bejewelled_shadow_banner>,
|
||||
<aoa3:bejewelled_shyre_banner>,
|
||||
<aoa3:bejewelled_utopian_banner>,
|
||||
<aoa3:bejewelled_vox_banner>
|
||||
]);
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_historian>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:stone_of_universal_balance>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>,
|
||||
null, <contenttweaker:stone_of_universal_balance>, null,
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>, null],
|
||||
|
||||
[null, <contenttweaker:stone_of_universal_balance>, <contenttweaker:monumentally_sentient_meatball>,
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:standard_of_the_shyre_empire>, <contenttweaker:stone_of_universal_balance>,
|
||||
<contenttweaker:monumentally_sentient_meatball>, <contenttweaker:stone_of_universal_balance>, null],
|
||||
|
||||
[null, null, <contenttweaker:stone_of_universal_balance>,
|
||||
<contenttweaker:shield_of_the_arbiter>, <openblocks:tank>.withTag({tank: {FluidName: "ultimate_fractallite_essence", Amount: 16000}}), <contenttweaker:shield_of_the_arbiter>,
|
||||
<contenttweaker:stone_of_universal_balance>, null, null],
|
||||
|
||||
[<contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:standard_of_the_shyre_empire>,
|
||||
<openblocks:tank>.withTag({tank: {FluidName: "ultimate_fractallite_essence", Amount: 16000}}), <contenttweaker:seal_of_freedom>, <openblocks:tank>.withTag({tank: {FluidName: "ultimate_fractallite_essence", Amount: 16000}}),
|
||||
<contenttweaker:standard_of_the_shyre_empire>, <contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>],
|
||||
|
||||
[null, null, <contenttweaker:stone_of_universal_balance>,
|
||||
<contenttweaker:shield_of_the_arbiter>, <openblocks:tank>.withTag({tank: {FluidName: "ultimate_fractallite_essence", Amount: 16000}}), <contenttweaker:shield_of_the_arbiter>,
|
||||
<contenttweaker:stone_of_universal_balance>, null, null],
|
||||
|
||||
[null, <contenttweaker:stone_of_universal_balance>, <contenttweaker:monumentally_sentient_meatball>,
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:standard_of_the_shyre_empire>, <contenttweaker:stone_of_universal_balance>,
|
||||
<contenttweaker:monumentally_sentient_meatball>, <contenttweaker:stone_of_universal_balance>, null],
|
||||
|
||||
[null, <contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>,
|
||||
null, <contenttweaker:stone_of_universal_balance>, null,
|
||||
<contenttweaker:stone_of_universal_balance>, <contenttweaker:stone_of_universal_balance>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:stone_of_universal_balance>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
mods.nuclearcraft.infuser.addRecipe([<contenttweaker:strings_crystal>*12, <fluid:pre_baryonic_plasma>*100, <contenttweaker:big_bang_matter>]);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_theorist>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:big_bang_matter>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>,
|
||||
null, <contenttweaker:big_bang_matter>, null,
|
||||
<contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>, null],
|
||||
|
||||
[null, <contenttweaker:big_bang_matter>, <contenttweaker:infinite_resonator>,
|
||||
<contenttweaker:big_bang_matter>, <contenttweaker:charged_dyson_capacitor>, <contenttweaker:big_bang_matter>,
|
||||
<contenttweaker:infinite_resonator>, <contenttweaker:big_bang_matter>, null],
|
||||
|
||||
[null, null, <contenttweaker:big_bang_matter>,
|
||||
<contenttweaker:true_chaos>, <contenttweaker:hypercapacitor_discharger_x1024>, <contenttweaker:true_chaos>,
|
||||
<contenttweaker:big_bang_matter>, null, null],
|
||||
|
||||
[<contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>, <contenttweaker:charged_dyson_capacitor>,
|
||||
<contenttweaker:hypercapacitor_discharger_x1024>, <contenttweaker:seal_of_freedom>, <contenttweaker:hypercapacitor_discharger_x1024>,
|
||||
<contenttweaker:charged_dyson_capacitor>, <contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>],
|
||||
|
||||
[null, null, <contenttweaker:big_bang_matter>,
|
||||
<contenttweaker:true_chaos>, <contenttweaker:hypercapacitor_discharger_x1024>, <contenttweaker:true_chaos>,
|
||||
<contenttweaker:big_bang_matter>, null, null],
|
||||
|
||||
[null, <contenttweaker:big_bang_matter>, <contenttweaker:infinite_resonator>,
|
||||
<contenttweaker:big_bang_matter>, <contenttweaker:charged_dyson_capacitor>, <contenttweaker:big_bang_matter>,
|
||||
<contenttweaker:infinite_resonator>, <contenttweaker:big_bang_matter>, null],
|
||||
|
||||
[null, <contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>,
|
||||
null, <contenttweaker:big_bang_matter>, null,
|
||||
<contenttweaker:big_bang_matter>, <contenttweaker:big_bang_matter>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:big_bang_matter>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
var mapFirstFractal as IData = {};
|
||||
val enchlistFirstFractal as IEnchantmentDefinition[] = [<enchantment:minecraft:sharpness>, <enchantment:cofhcore:vorpal>, <enchantment:minecraft:sweeping>];
|
||||
mapFirstFractal += enchlistFirstFractal[0].makeEnchantment(150).makeTag();
|
||||
mapFirstFractal += enchlistFirstFractal[1].makeEnchantment(25).makeTag();
|
||||
mapFirstFractal += enchlistFirstFractal[2].makeEnchantment(6).makeTag();
|
||||
// <extrabotany:firstfractal>.withTag({ench: [{lvl: 150 as short, id: 16}, {lvl: 25 as short, id: 101}, {lvl: 6 as short, id: 22}]})
|
||||
|
||||
var mapMagicbane as IData = {};
|
||||
val enchlistMagicbane as IEnchantmentDefinition[] = [<enchantment:minecraft:sweeping>, <enchantment:openblocks:flim_flam>, <enchantment:minecraft:unbreaking>];
|
||||
mapMagicbane += enchlistMagicbane[0].makeEnchantment(20).makeTag();
|
||||
mapMagicbane += enchlistMagicbane[1].makeEnchantment(222).makeTag();
|
||||
mapMagicbane += enchlistMagicbane[2].makeEnchantment(350).makeTag();
|
||||
// <xreliquary:magicbane>.withTag({ench: [{lvl: 20 as short, id: 22}, {lvl: 222 as short, id: 31}, {lvl: 350 as short, id: 34}]})
|
||||
|
||||
var mapSwordTruth as IData = {};
|
||||
val enchlistSwordTruth as IEnchantmentDefinition[] = [<enchantment:enderio:shimmer>];
|
||||
mapSwordTruth += enchlistSwordTruth[0].makeEnchantment(1).makeTag();
|
||||
// <contenttweaker:sword_of_truth>.withTag({ench: [{lvl: 1 as short, id: 47}]})
|
||||
|
||||
|
||||
var mapKikoku as IData = {};
|
||||
val enchlistKikoku as IEnchantmentDefinition[] = [<enchantment:endercore:xpboost>, <enchantment:soulshardsrespawn:soul_stealer>];
|
||||
mapKikoku += enchlistKikoku[0].makeEnchantment(50).makeTag();
|
||||
mapKikoku += enchlistKikoku[1].makeEnchantment(55).makeTag();
|
||||
// <extrautils2:lawsword>.withTag({ench: [{lvl: 50 as short, id: 39}, {lvl: 55 as short, id: 85}]})
|
||||
|
||||
var mapHeavensLongBow as IData = {};
|
||||
val enchlistHeavensLongBow as IEnchantmentDefinition[] = [<enchantment:cofhcore:multishot>];
|
||||
mapHeavensLongBow += enchlistHeavensLongBow[0].makeEnchantment(15).makeTag();
|
||||
// <avaritia:infinity_bow>.withTag({ench: [{lvl: 15 as short, id: 97}]})
|
||||
|
||||
var mapAtlanticBow as IData = {};
|
||||
val enchlistAtlanticBow as IEnchantmentDefinition[] = [<enchantment:minecraft:power>];
|
||||
mapAtlanticBow += enchlistAtlanticBow[0].makeEnchantment(30).makeTag();
|
||||
// <aoa3:atlantic_bow>.withTag({ench: [{lvl: 30 as short, id: 48}]})
|
||||
|
||||
var mapMithminiteRobe as IData = {};
|
||||
val enchlistMithminiteRobe as IEnchantmentDefinition[] = [<enchantment:minecraft:unbreaking>, <enchantment:openblocks:last_stand>];
|
||||
mapMithminiteRobe += enchlistMithminiteRobe[0].makeEnchantment(233).makeTag();
|
||||
mapMithminiteRobe += enchlistMithminiteRobe[1].makeEnchantment(30).makeTag();
|
||||
// <thaumadditions:mithminite_robe>.withTag({ench: [{lvl: 233 as short, id: 34}, {lvl: 30 as short, id: 30}]})
|
||||
|
||||
var mapTormentedChestplate1 as IData = {};
|
||||
val enchlistTormentedChestplate1 as IEnchantmentDefinition[] = [<enchantment:minecraft:fire_protection>, <enchantment:ebwizardry:frost_protection>];
|
||||
mapTormentedChestplate1 += enchlistTormentedChestplate1[0].makeEnchantment(15).makeTag();
|
||||
mapTormentedChestplate1 += enchlistTormentedChestplate1[1].makeEnchantment(15).makeTag();
|
||||
var mapTormentedChestplate2 as IData = {};
|
||||
mapTormentedChestplate2 += enchlistTormentedChestplate1[1].makeEnchantment(15).makeTag();
|
||||
mapTormentedChestplate2 += enchlistTormentedChestplate1[0].makeEnchantment(15).makeTag();
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_defender>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <extrabotany:firstfractal>.withTag(mapFirstFractal), <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, null, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <thaumadditions:mithminite_robe>.withTag(mapMithminiteRobe), <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, null, null],
|
||||
|
||||
[<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:sword_of_truth>.withTag(mapSwordTruth),
|
||||
<aoa3:atlantic_bow>.withTag(mapAtlanticBow), <contenttweaker:seal_of_freedom>, <avaritia:infinity_bow>.withTag(mapHeavensLongBow),
|
||||
<extrautils2:lawsword>.withTag(mapKikoku), <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>],
|
||||
|
||||
[null, null, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <divinerpg:tormented_chestplate>.withTag(mapTormentedChestplate1), <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, null, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <xreliquary:magicbane>.withTag(mapMagicbane), <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:seal_of_the_arbiter_defender>,
|
||||
|
||||
[[null, null, null,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
null, null, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <extrabotany:firstfractal>.withTag(mapFirstFractal), <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, null, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <thaumadditions:mithminite_robe>.withTag(mapMithminiteRobe), <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, null, null],
|
||||
|
||||
[<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:sword_of_truth>.withTag(mapSwordTruth),
|
||||
<aoa3:atlantic_bow>.withTag(mapAtlanticBow), <contenttweaker:seal_of_freedom>, <avaritia:infinity_bow>.withTag(mapHeavensLongBow),
|
||||
<extrautils2:lawsword>.withTag(mapKikoku), <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>],
|
||||
|
||||
[null, null, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <divinerpg:tormented_chestplate>.withTag(mapTormentedChestplate2), <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, null, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:recursion_prison_key>,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <xreliquary:magicbane>.withTag(mapMagicbane), <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
<contenttweaker:recursion_prison_key>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, <contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
<contenttweaker:perfected_gem_of_the_cosmos>, <contenttweaker:perfected_gem_of_the_cosmos>, null],
|
||||
|
||||
[null, null, null,
|
||||
null, <contenttweaker:perfected_gem_of_the_cosmos>, null,
|
||||
null, null, null]]);
|
||||
|
||||
|
||||
|
||||
recipes.addShaped(<contenttweaker:token_of_forgiveness>,
|
||||
[[<ore:ingotFractalliteHalite>, <contenttweaker:hungering_machine_case>, <ore:ingotFractalliteHalite>],
|
||||
[<contenttweaker:hungering_machine_case>, <contenttweaker:token_of_the_meatball_man>, <contenttweaker:hungering_machine_case>],
|
||||
[<ore:ingotFractalliteHalite>, <contenttweaker:hungering_machine_case>, <ore:ingotFractalliteHalite>]]);
|
||||
|
||||
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("canonendingdire",
|
||||
<avaritiaitem:cosmic_balance>,
|
||||
[[null, null, null, <contenttweaker:bewitched_cord>, <contenttweaker:offer_of_restored_balance>, <contenttweaker:bewitched_cord>, null, null, null],
|
||||
|
||||
[null, null, <contenttweaker:bewitched_cord>, null, <avaritiaitem:fractallite_halite_catalyst>, null, <contenttweaker:bewitched_cord>, null, null],
|
||||
|
||||
[null, <contenttweaker:bewitched_cord>, null, null, <avaritiaitem:fractallite_halite_catalyst>, null, null, <contenttweaker:bewitched_cord>, null],
|
||||
|
||||
[null, <contenttweaker:hungering_flesh_ingot>, null, null, <avaritiaitem:fractallite_halite_catalyst>, null, null, <contenttweaker:ascended_fluix_crystal>, null],
|
||||
|
||||
[null, <contenttweaker:balanced_machine_casing>, null, null, <avaritiaitem:fractallite_halite_catalyst>, null, null, <contenttweaker:balanced_machine_casing>, null],
|
||||
|
||||
[null, <contenttweaker:hungering_flesh_ingot>, null, null, <avaritiaitem:fractallite_halite_catalyst>, null, null, <contenttweaker:ascended_fluix_crystal>, null],
|
||||
|
||||
[null, null, null, null, <avaritiaitem:fractallite_halite_catalyst>, null, null, null, null],
|
||||
|
||||
[null, null, null, <ore:blockInfinity>, <avaritiaitem:fractallite_halite_catalyst>, <ore:blockInfinity>, null, null, null],
|
||||
|
||||
[null, null, <ore:blockInfinity>, <avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>, <avaritiaitem:fractallite_halite_catalyst>, <ore:blockInfinity>, null, null]]);
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user