attempt to fix mob HP bug
This commit is contained in:
+55
-1
@@ -315,4 +315,58 @@ spatialphaser.itemRightClick = function(stack, world, player, hand) {
|
||||
|
||||
|
||||
};
|
||||
spatialphaser.register();
|
||||
spatialphaser.register();
|
||||
|
||||
var aquaticstone = VanillaFactory.createItem("aquatic_stone");
|
||||
aquaticstone.maxStackSize = 16;
|
||||
aquaticstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
// check if player is in right dimension
|
||||
if(player.getDimension() != 0) {
|
||||
player.sendChat("You gotta be in the overworld");
|
||||
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" as string;
|
||||
|
||||
|
||||
// get number of matches
|
||||
val OceanMatches = checkBiomesAtPositions(OceanBiomeName, playerpos, OceanBiomeLocations, world) as int;
|
||||
|
||||
if((OceanMatches) == 0) {
|
||||
player.sendChat("You gotta be in an ocean biome");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if((OceanMatches) == 1) {
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:whale ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:shark ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:shark ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:shark ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:shark ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon divinerpg:shark ~ ~ ~", player, world, true, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
}
|
||||
|
||||
player.sendChat("You gotta be in an ocean biome");
|
||||
return "FAIL";
|
||||
|
||||
|
||||
};
|
||||
aquaticstone.register();
|
||||
@@ -153,12 +153,84 @@ mods.astralsorcery.Altar.addTraitAltarRecipe("MeatballCraft:shaped/internal/alta
|
||||
|
||||
|
||||
val makedarkstarlight = RecipeBuilder.newBuilder("makedarkstarlight","twelve_gates_of_heaven",200);
|
||||
makedarkstarlight.addStarlightInput(300);
|
||||
makedarkstarlight.addStarlightInput(10000);
|
||||
makedarkstarlight.addEnergyPerTickInput(30000000);
|
||||
makedarkstarlight.addFluidInput(<fluid:sideral_life_essence>*10000);
|
||||
makedarkstarlight.addFluidOutput(<fluid:darkstarlight>*10000);
|
||||
makedarkstarlight.build();
|
||||
|
||||
// akathartos
|
||||
|
||||
mods.avaritia.ExtremeCrafting.addShaped("direakathartoscallstone",
|
||||
<contenttweaker:akathartos_callstone>,
|
||||
[[<contenttweaker:dynatos_star>, null, null,
|
||||
null, <contenttweaker:zoi_core>, null,
|
||||
null, null, <contenttweaker:dynatos_star>],
|
||||
|
||||
[null, <contenttweaker:dynatos_star>, null,
|
||||
null, <thaumadditions:mithminite_scythe>, null,
|
||||
null, <contenttweaker:dynatos_star>, null],
|
||||
|
||||
[null, null, <contenttweaker:dynatos_star>,
|
||||
null, <bloodmagic:points_upgrade>, null,
|
||||
<contenttweaker:dynatos_star>, null, null],
|
||||
|
||||
[null, null, null,
|
||||
<contenttweaker:dynatos_star>, null, <contenttweaker:dynatos_star>,
|
||||
null, null, null],
|
||||
|
||||
[<contenttweaker:nero_core>, <thaumadditions:mithminite_scythe>, <bloodmagic:points_upgrade>,
|
||||
null, <contenttweaker:essence_darkness>, null,
|
||||
<bloodmagic:points_upgrade>, <thaumadditions:mithminite_scythe>, <contenttweaker:akathartos_core>],
|
||||
|
||||
[null, null, null,
|
||||
<contenttweaker:dynatos_star>, null, <contenttweaker:dynatos_star>,
|
||||
null, null, null],
|
||||
|
||||
[null, null, <contenttweaker:dynatos_star>,
|
||||
null, <bloodmagic:points_upgrade>, null,
|
||||
<contenttweaker:dynatos_star>, null, null],
|
||||
|
||||
[null, <contenttweaker:dynatos_star>, null,
|
||||
null, <thaumadditions:mithminite_scythe>, null,
|
||||
null, <contenttweaker:dynatos_star>, null],
|
||||
|
||||
[<contenttweaker:dynatos_star>, null, null,
|
||||
null, <contenttweaker:pauram_core>, null,
|
||||
null, null, <contenttweaker:dynatos_star>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:crimson_ichor>*2,
|
||||
[[<gendustry:honey_comb:14015>, <gendustry:honey_comb:14015>, <gendustry:honey_comb:14015>],
|
||||
[<gendustry:honey_comb:14015>, <contenttweaker:crimson_ichor>, <gendustry:honey_comb:14015>],
|
||||
[<gendustry:honey_comb:14015>, <gendustry:honey_comb:14015>, <gendustry:honey_comb:14015>]]);
|
||||
|
||||
val makeichorium = RecipeBuilder.newBuilder("makeichorium","arcane_autoinfuser",200);
|
||||
makeichorium.addEnergyPerTickInput(150000000);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "alkimia"}]})*300);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "mythus"}]})*100);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "desiderium"}]})*200);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "alienis"}]})*100);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "potentia"}]})*100);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "spiritus"}]})*50);
|
||||
makeichorium.addItemInput(<thaumcraft:crystal_essence>.withTag({Aspects: [{amount: 1, key: "aversio"}]})*50);
|
||||
makeichorium.addItemInput(<contenttweaker:crimson_ichor>*16);
|
||||
makeichorium.addItemInput(<thaumadditions:mithminite_block>*32);
|
||||
makeichorium.addItemInput(<thaumicaugmentation:material:5>*64);
|
||||
makeichorium.addItemInput(<thaumcraft:focus_3>);
|
||||
makeichorium.addItemInput(<thaumcraft:focus_3>);
|
||||
makeichorium.addItemOutput(<materialpart:ichorium:ingot>);
|
||||
makeichorium.build();
|
||||
|
||||
mods.thaumcraft.Infusion.registerRecipe("infusionichoriumcatalyst", "",
|
||||
<contenttweaker:ichorium_catalyst>, 10,
|
||||
[<aspect:alkimia>*150, <aspect:ordo>*180, <aspect:potentia>*200, <aspect:cognitio>*60],
|
||||
<thaumadditions:amber_lamp>,
|
||||
[<materialpart:ichorium:ingot>, <thaumicaugmentation:material:5>,
|
||||
<materialpart:ichorium:ingot>, <thaumicaugmentation:material:5>,
|
||||
<materialpart:ichorium:ingot>, <thaumicaugmentation:material:5>,
|
||||
<materialpart:ichorium:ingot>, <thaumicaugmentation:material:5>]);
|
||||
|
||||
|
||||
// zoi
|
||||
|
||||
mods.nuclearcraft.alloy_furnace.addRecipe([<nuclearcraft:depleted_fuel_mixed_oxide:0>, <nuclearcraft:depleted_fuel_mixed_oxide:1>, <nuclearcraft:depleted_fuel_ic2:1>, 1.0, 1.0, 0.005]);
|
||||
|
||||
+89
-1
@@ -2064,4 +2064,92 @@ wroughtcallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
wroughtcallstone.register();
|
||||
wroughtcallstone.register();
|
||||
|
||||
var callofenigma= VanillaFactory.createItem("call_of_enigma");
|
||||
callofenigma.maxStackSize = 16;
|
||||
callofenigma.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("time set night", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:ptera ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ptera ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ptera ~ ~3 ~", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:enigmoth_larva ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth_larva ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth_larva ~ ~3 ~", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:enigmoth_larva ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth_larva ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth ~ ~3 ~", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:enigmoth ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:enigmoth ~ ~3 ~", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:enigmoth ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ptera ~ ~3 ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ptera ~ ~3 ~", player, world, true, true);
|
||||
|
||||
Commands.call("summon mod_lavacow:mimicrab ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:mimicrab ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ghostray ~ ~ ~", player, world, true, true);
|
||||
Commands.call("summon mod_lavacow:ghostray ~ ~ ~", player, world, true, true);
|
||||
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
callofenigma.register();
|
||||
|
||||
var funnypumpkin= VanillaFactory.createItem("funny_pumpkin");
|
||||
funnypumpkin.maxStackSize = 16;
|
||||
funnypumpkin.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
Commands.call("summon divinerpg:jack_o_man ~ ~ ~", player, world, true, true);
|
||||
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
funnypumpkin.register();
|
||||
|
||||
var wormholefragment= VanillaFactory.createItem("wormhole_fragment");
|
||||
wormholefragment.maxStackSize = 16;
|
||||
wormholefragment.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
Commands.call("summon aoa3:realmshifter ~ ~ ~", player, world, true, true);
|
||||
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
wormholefragment.register();
|
||||
|
||||
|
||||
var akathartoscallstone= VanillaFactory.createItem("akathartos_callstone");
|
||||
akathartoscallstone.maxStackSize = 1;
|
||||
akathartoscallstone.itemRightClick = function(stack, world, player, hand) {
|
||||
if(world.remote) {
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
if(player.getDimension() != 172) {
|
||||
player.sendChat("You gotta be in akathartos");
|
||||
return "FAIL";
|
||||
}
|
||||
|
||||
Commands.call("pillar-spawn akathartos_structure_crimsonemperor", player, world, true, true);
|
||||
stack.shrink(1);
|
||||
return "PASS";
|
||||
|
||||
};
|
||||
akathartoscallstone.register();
|
||||
@@ -1363,5 +1363,12 @@ heatsinkvessel.setToolClass("pickaxe");
|
||||
heatsinkvessel.setToolLevel(3);
|
||||
heatsinkvessel.register();
|
||||
|
||||
var ichoriumcatalyst = VanillaFactory.createBlock("ichorium_catalyst", <blockmaterial:iron>);
|
||||
ichoriumcatalyst.setBlockHardness(1.0);
|
||||
ichoriumcatalyst.setBlockResistance(2.5);
|
||||
ichoriumcatalyst.setToolClass("pickaxe");
|
||||
ichoriumcatalyst.setToolLevel(3);
|
||||
ichoriumcatalyst.register();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -705,4 +705,5 @@ var dilutedpotassium = VanillaFactory.createFluid("diluted_potassium", Color.fro
|
||||
dilutedpotassium.register();
|
||||
|
||||
var dilutednakmix = VanillaFactory.createFluid("diluted_nak_mix", Color.fromHex("878f1a"));
|
||||
dilutednakmix.register();
|
||||
dilutednakmix.register();
|
||||
|
||||
|
||||
@@ -5175,4 +5175,13 @@ championtoken.maxStackSize = 64;
|
||||
championtoken.beaconPayment = false;
|
||||
championtoken.register();
|
||||
|
||||
var usethissummonitem = VanillaFactory.createItem("use_this_summon_item");
|
||||
usethissummonitem.maxStackSize = 64;
|
||||
usethissummonitem.beaconPayment = false;
|
||||
usethissummonitem.register();
|
||||
|
||||
var crimsonichor = VanillaFactory.createItem("crimson_ichor");
|
||||
crimsonichor.maxStackSize = 64;
|
||||
crimsonichor.beaconPayment = false;
|
||||
crimsonichor.register();
|
||||
|
||||
|
||||
@@ -91,6 +91,7 @@ dimdoorseventroll.addItemEntry(<contenttweaker:mark_of_the_soul_scurry>, 3);
|
||||
dimdoorseventroll.addItemEntry(<contenttweaker:call_of_the_death_games>, 3);
|
||||
dimdoorseventroll.addItemEntry(<contenttweaker:creepy_explosive>, 3);
|
||||
dimdoorseventroll.addItemEntry(<contenttweaker:embiggener>, 3);
|
||||
dimdoorseventroll.addItemEntry(<contenttweaker:call_of_enigma>, 3);
|
||||
|
||||
|
||||
val mothervoidwalker = LootTweaker.getTable("aoa3:entities/mobs/overworld/mother_void_walker");
|
||||
@@ -415,10 +416,14 @@ netherfortressspecial.addItemEntry(<contenttweaker:signal_beacon>*4, 2);
|
||||
netherfortressspecial.addItemEntry(<contenttweaker:call_of_the_death_games>*4, 2);
|
||||
netherfortressspecial.addItemEntry(<contenttweaker:embiggener>*4, 2);
|
||||
netherfortressspecial.addItemEntry(<contenttweaker:creepy_explosive>*4, 2);
|
||||
netherfortressspecial.addItemEntry(<contenttweaker:call_of_enigma>*4, 2);
|
||||
|
||||
val endcity = LootTweaker.getTable("minecraft:chests/end_city_treasure");
|
||||
val endcityspecial = endcity.addPool("endcityspecial", 1, 2, 1, 1);
|
||||
endcityspecial.addItemEntry(<thermalfoundation:material:134>, 15);
|
||||
endcityspecial.addItemEntry(<contenttweaker:funny_pumpkin>, 15);
|
||||
endcityspecial.addItemEntry(<contenttweaker:wormhole_fragment>, 15);
|
||||
endcityspecial.addItemEntry(<contenttweaker:aquatic_stone>, 15);
|
||||
|
||||
val runicorn = LootTweaker.getTable("aoa3:entities/mobs/runandor/runicorn");
|
||||
val runicornprimordial = runicorn.addPool("runicornprimordial", 1, 1, 0, 0);
|
||||
@@ -440,6 +445,7 @@ vanilladungeonmbc.addItemEntry(<contenttweaker:mark_of_the_soul_scurry>, 3);
|
||||
vanilladungeonmbc.addItemEntry(<contenttweaker:call_of_the_death_games>, 3);
|
||||
vanilladungeonmbc.addItemEntry(<contenttweaker:creepy_explosive>, 3);
|
||||
vanilladungeonmbc.addItemEntry(<contenttweaker:embiggener>, 3);
|
||||
vanilladungeonmbc.addItemEntry(<contenttweaker:call_of_enigma>, 3);
|
||||
|
||||
val vanillastronghold = LootTweaker.getTable("minecraft:chests/stronghold_corridor");
|
||||
val vanillastrongholdmbc = vanillastronghold.addPool("vanillastrongholdmbc", 1, 1, 0, 0);
|
||||
|
||||
@@ -793,4 +793,14 @@ armorgravedust.addDataValue("enchantability", "99");
|
||||
armorgravedust.addDataValue("reduction", "2,5,6,2");
|
||||
armorgravedust.addDataValue("toughness", "1");
|
||||
|
||||
|
||||
var colorichorium = Color.fromHex("a85a00") as Color;
|
||||
var ichorium = MaterialSystem.getMaterialBuilder().setName("Ichorium").setColor(colorichorium).build();
|
||||
ichorium.registerParts(["nugget", "ingot", "dust", "rod","plate"] as string[]);
|
||||
var moltenichorium = ichorium.registerPart("molten").getData();
|
||||
moltenichorium.addDataValue("temperature", "400");
|
||||
moltenichorium.addDataValue("luminosity", "10");
|
||||
var armorichorium = ichorium.registerPart("armor").getData();
|
||||
armorichorium.addDataValue("durability", "100000");
|
||||
armorichorium.addDataValue("enchantability", "99");
|
||||
armorichorium.addDataValue("reduction", "100,100,100,100");
|
||||
armorichorium.addDataValue("toughness", "100");
|
||||
|
||||
@@ -438,3 +438,23 @@ recipes.addShaped(<modularmachinery:blockrainbowprovider>,
|
||||
[[<modularmachinery:itemmodularium>, <extrautils2:decorativesolid:8>, <modularmachinery:itemmodularium>],
|
||||
[<extrautils2:decorativesolid:8>, <modularmachinery:blockcasing:1>, <extrautils2:decorativesolid:8>],
|
||||
[<modularmachinery:itemmodularium>, <extrautils2:decorativesolid:8>, <modularmachinery:itemmodularium>]]);
|
||||
|
||||
recipes.addShaped(<modularmachinery:blockstarlightproviderinput>,
|
||||
[[<modularmachinery:itemmodularium>, <astralsorcery:blockborehead:0>, <modularmachinery:itemmodularium>],
|
||||
[<astralsorcery:blockborehead:1>, <modularmachinery:blockfluidinputhatch:5>, <astralsorcery:blockborehead:1>],
|
||||
[<modularmachinery:itemmodularium>, <astralsorcery:blockborehead:0>, <modularmachinery:itemmodularium>]]);
|
||||
|
||||
recipes.addShaped(<modularmachinery:blockimpetusproviderinput>,
|
||||
[[<modularmachinery:itemmodularium>, <thaumicaugmentation:material:5>, <modularmachinery:itemmodularium>],
|
||||
[<thaumicaugmentation:material:5>, <modularmachinery:blockfluidinputhatch:5>, <thaumicaugmentation:material:5>],
|
||||
[<modularmachinery:itemmodularium>, <thaumicaugmentation:material:5>, <modularmachinery:itemmodularium>]]);
|
||||
|
||||
recipes.addShaped(<modularmachinery:blockimpetusprovideroutput>,
|
||||
[[<modularmachinery:itemmodularium>, <thaumicaugmentation:material:5>, <modularmachinery:itemmodularium>],
|
||||
[<thaumicaugmentation:material:5>, <modularmachinery:blockfluidoutputhatch:5>, <thaumicaugmentation:material:5>],
|
||||
[<modularmachinery:itemmodularium>, <thaumicaugmentation:material:5>, <modularmachinery:itemmodularium>]]);
|
||||
|
||||
recipes.addShapeless(<modularmachinery:blockimpetusproviderinput>,
|
||||
[<modularmachinery:blockimpetusprovideroutput>]);
|
||||
recipes.addShapeless(<modularmachinery:blockimpetusprovideroutput>,
|
||||
[<modularmachinery:blockimpetusproviderinput>]);
|
||||
@@ -54,6 +54,8 @@ mith1.addItemOutput(<divinerpg:shark_fin>*10);
|
||||
mith1.setChance(0.2);
|
||||
mith1.addItemOutput(<divinerpg:whale_fin>*10);
|
||||
mith1.setChance(0.2);
|
||||
mith1.addItemOutput(<divinerpg:shark_fin>*10);
|
||||
mith1.setChance(0.2);
|
||||
mith1.addItemOutput(<divinerpg:cyclops_eye_shards>*10);
|
||||
mith1.setChance(0.05);
|
||||
mith1.addItemOutput(<divinerpg:aquatic_pellets>*10);
|
||||
@@ -1166,6 +1168,10 @@ mythassvoxponds.build();
|
||||
|
||||
mods.nuclearcraft.salt_fission.addRecipe([<fluid:polonium>*144, <fluid:spent_polonium>*1000, 800.0, 200.0, 3.0]);
|
||||
|
||||
mods.nuclearcraft.dissolver.addRecipe([<nuclearcraft:californium:2>, <fluid:spent_polonium>*1000, <fluid:californium_250>*1000]);
|
||||
mods.nuclearcraft.dissolver.addRecipe([<nuclearcraft:californium:10>, <fluid:spent_polonium>*1000, <fluid:californium_250>*1000]);
|
||||
mods.nuclearcraft.dissolver.addRecipe([<nuclearcraft:californium:14>, <fluid:spent_polonium>*1000, <fluid:californium_250>*1000]);
|
||||
|
||||
mods.techreborn.rollingMachine.addShaped(<contenttweaker:arc_coil>,
|
||||
[[<materialpart:palladium:ingot>,null,<materialpart:palladium:ingot>],
|
||||
[null,<materialpart:polonium:ingot>,null],
|
||||
|
||||
@@ -36,13 +36,15 @@ null, <tconstruct:large_plate>.withTag({Material: "fierymetal"}), <bigreactors:i
|
||||
null, <aether_legacy:enchanted_gravitite>, null,
|
||||
null, <bigreactors:ingotludicrite>, <appliedenergistics2:material:9>]]);
|
||||
|
||||
|
||||
val fieryfluid = <ore:bottledFiery>;
|
||||
fieryfluid.add(<twilightforest:fiery_blood>);
|
||||
fieryfluid.add(<twilightforest:fiery_tears>);
|
||||
|
||||
mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:furatto_warper>,
|
||||
|
||||
[[<twilightforest:fiery_tears>, <aoa3:ice_crystal>, <thermalfoundation:coin:96>,
|
||||
[[<ore:bottledFiery>, <aoa3:ice_crystal>, <thermalfoundation:coin:96>,
|
||||
<divinerpg:aquatic_pellets>, <aoa3:ghostly_powder>, <divinerpg:aquatic_pellets>,
|
||||
<thermalfoundation:coin:96>, <aoa3:ice_crystal>, <twilightforest:fiery_tears>],
|
||||
<thermalfoundation:coin:96>, <aoa3:ice_crystal>, <ore:bottledFiery>],
|
||||
|
||||
[<aoa3:ice_crystal>, <botania:manaresource:0>, <thaumcraft:brain>,
|
||||
<aoa3:flammable_dust>, <divinerpg:purple_blaze>, <aoa3:flammable_dust>,
|
||||
@@ -72,9 +74,9 @@ mods.extendedcrafting.TableCrafting.addShaped(<contenttweaker:furatto_warper>,
|
||||
<aoa3:flammable_dust>, <divinerpg:purple_blaze>, <aoa3:flammable_dust>,
|
||||
<thaumcraft:brain>, <botania:manaresource:0>, <aoa3:ice_crystal>],
|
||||
|
||||
[<twilightforest:fiery_tears>, <aoa3:ice_crystal>, <thermalfoundation:coin:96>,
|
||||
[<ore:bottledFiery>, <aoa3:ice_crystal>, <thermalfoundation:coin:96>,
|
||||
<divinerpg:aquatic_pellets>, <aoa3:ghostly_powder>, <divinerpg:aquatic_pellets>,
|
||||
<thermalfoundation:coin:96>, <aoa3:ice_crystal>, <twilightforest:fiery_tears>]]);
|
||||
<thermalfoundation:coin:96>, <aoa3:ice_crystal>, <ore:bottledFiery>]]);
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1273,4 +1273,33 @@ recipes.addShapeless(<thermalexpansion:reservoir:4>,
|
||||
recipes.addShapeless(<contenttweaker:active_cryotheum_cooler>,
|
||||
[<contenttweaker:nuclearcraft_fission_interior>,
|
||||
<nuclearcraft:active_cooler>,
|
||||
<forge:bucketfilled>.withTag({FluidName: "cryotheum", Amount: 1000})]);
|
||||
<forge:bucketfilled>.withTag({FluidName: "cryotheum", Amount: 1000})]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:aquatic_stone>,
|
||||
[[<minecraft:emerald>, <divinerpg:aquatic_ingot>, <minecraft:emerald>],
|
||||
[<divinerpg:aquatic_ingot>, <divinerpg:aquatic_ingot>, <divinerpg:aquatic_ingot>],
|
||||
[<minecraft:emerald>, <divinerpg:aquatic_ingot>, <minecraft:emerald>]]);
|
||||
|
||||
recipes.addShapeless(<divinerpg:whale_fin>,
|
||||
[<contenttweaker:aquatic_stone>, <contenttweaker:use_this_summon_item>]);
|
||||
recipes.addShapeless(<divinerpg:shark_fin>,
|
||||
[<contenttweaker:aquatic_stone>, <contenttweaker:use_this_summon_item>]);
|
||||
|
||||
recipes.addShapeless(<divinerpg:ancient_key>,
|
||||
[<contenttweaker:constructor_summoner>, <contenttweaker:use_this_summon_item>]);
|
||||
recipes.addShapeless(<divinerpg:degraded_key>,
|
||||
[<contenttweaker:constructor_summoner>, <contenttweaker:use_this_summon_item>]);
|
||||
recipes.addShapeless(<divinerpg:sludge_key>,
|
||||
[<contenttweaker:constructor_summoner>, <contenttweaker:use_this_summon_item>]);
|
||||
recipes.addShapeless(<divinerpg:soul_key>,
|
||||
[<contenttweaker:constructor_summoner>, <contenttweaker:use_this_summon_item>]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:funny_pumpkin>,
|
||||
[[<minecraft:pumpkin>, <minecraft:pumpkin>, <minecraft:pumpkin>],
|
||||
[<minecraft:pumpkin>, <divinerpg:terran_knife>.reuse(), <minecraft:pumpkin>],
|
||||
[<minecraft:pumpkin>, <minecraft:pumpkin>, <minecraft:pumpkin>]]);
|
||||
|
||||
recipes.addShaped(<contenttweaker:wormhole_fragment>,
|
||||
[[<biomesoplenty:flesh>, <aoa3:rusted_iron_ingot>, <biomesoplenty:flesh>],
|
||||
[<aoa3:rusted_iron_ingot>, <appliedenergistics2:material:9>, <aoa3:rusted_iron_ingot>],
|
||||
[<biomesoplenty:flesh>, <aoa3:rusted_iron_ingot>, <biomesoplenty:flesh>]]);
|
||||
|
||||
@@ -31,11 +31,24 @@ recipes.addShapeless(<tconstruct:ingots:5>*9, [<ore:blockBrass>]);
|
||||
val brassplate = <ore:plateBrass>;
|
||||
brassplate.remove(<railcraft:plate:11>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<railcraft:plate:11>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<techreborn:plates:18>, <ore:ingotBrass>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<techreborn:plates:18>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<techreborn:plates:18>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotBrass>]);
|
||||
|
||||
|
||||
//==================================================================
|
||||
// titanium
|
||||
val titaniumingot = <ore:ingotTitanium>;
|
||||
titaniumingot.remove(<libvulpes:productingot:7>);
|
||||
|
||||
furnace.remove(<libvulpes:productingot:7>);
|
||||
furnace.addRecipe(<techreborn:ingot:14>, <ore:oreTitanium>);
|
||||
|
||||
|
||||
recipes.removeShapeless(<libvulpes:productingot:7>);
|
||||
recipes.addShapeless(<techreborn:ingot:14>*9, [<ore:blockTitanium>]);
|
||||
|
||||
@@ -50,6 +63,10 @@ recipes.addShapeless(<techreborn:ingot:14>,
|
||||
val iridiumingot = <ore:ingotIridium>;
|
||||
iridiumingot.remove(<libvulpes:productingot:10>);
|
||||
|
||||
furnace.remove(<libvulpes:productingot:10>);
|
||||
furnace.addRecipe(<thermalfoundation:material:135>, <ore:oreIridium>);
|
||||
|
||||
|
||||
recipes.removeShapeless(<libvulpes:productingot:10>);
|
||||
recipes.removeShapeless(<techreborn:ingot:7>);
|
||||
recipes.addShapeless(<thermalfoundation:material:135>*9, [<ore:blockIridium>]);
|
||||
@@ -60,6 +77,13 @@ iridiumplate.remove(<libvulpes:productplate:10>);
|
||||
recipes.addShapeless(<thermalfoundation:material:135>,
|
||||
[<libvulpes:productingot:10>]);
|
||||
|
||||
//==================================================================
|
||||
// tungsten
|
||||
|
||||
furnace.addRecipe(<techreborn:ingot:15>, <ore:oreTungsten>);
|
||||
|
||||
recipes.addShapeless(<techreborn:ingot:15>*9, [<ore:blockTungsten>]);
|
||||
|
||||
//==================================================================
|
||||
// tin
|
||||
val tiningot = <ore:ingotTin>;
|
||||
@@ -71,6 +95,16 @@ tiningot.remove(<railcraft:ingot:2>);
|
||||
// tiningot.remove(<techreborn:ingot:13>);
|
||||
tiningot.remove(<libvulpes:productingot:5>);
|
||||
|
||||
furnace.remove(<abyssalcraft:tiningot>);
|
||||
furnace.remove(<forestry:ingot_tin>);
|
||||
furnace.remove(<nuclearcraft:ingot:1>);
|
||||
furnace.remove(<projectred-core:resource_item:101>);
|
||||
furnace.remove(<railcraft:ingot:2>);
|
||||
furnace.remove(<techreborn:ingot:13>);
|
||||
furnace.remove(<libvulpes:productingot:5>);
|
||||
furnace.addRecipe(<thermalfoundation:material:129>, <ore:oreTin>);
|
||||
|
||||
|
||||
recipes.removeShapeless(<abyssalcraft:tiningot>);
|
||||
recipes.removeShapeless(<forestry:ingot_tin>);
|
||||
recipes.removeShapeless(<nuclearcraft:ingot:1>);
|
||||
@@ -90,6 +124,11 @@ val tinplate = <ore:plateTin>;
|
||||
tinplate.remove(<railcraft:plate:2>);
|
||||
tinplate.remove(<libvulpes:productplate:5>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:321>, <ore:ingotTin>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.addShapeless(<thermalfoundation:material:321>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotTin>]);
|
||||
|
||||
//==================================================================
|
||||
// copper
|
||||
@@ -103,6 +142,15 @@ copperingot.remove(<railcraft:ingot:1>);
|
||||
// copperingot.remove(<techreborn:ingot:4>);
|
||||
copperingot.remove(<libvulpes:productingot:4>);
|
||||
|
||||
furnace.remove(<abyssalcraft:copperingot>);
|
||||
furnace.remove(<forestry:ingot_copper>);
|
||||
furnace.remove(<immersiveengineering:metal:0>);
|
||||
furnace.remove(<nuclearcraft:ingot:0>);
|
||||
furnace.remove(<projectred-core:resource_item:100>);
|
||||
furnace.remove(<railcraft:ingot:1>);
|
||||
furnace.remove(<techreborn:ingot:4>);
|
||||
furnace.remove(<libvulpes:productingot:4>);
|
||||
furnace.addRecipe(<thermalfoundation:material:128>, <ore:oreCopper>);
|
||||
|
||||
recipes.removeShapeless(<abyssalcraft:copperingot>);
|
||||
recipes.removeShapeless(<forestry:ingot_copper>);
|
||||
@@ -126,6 +174,13 @@ copperplate.remove(<immersiveengineering:metal:30>);
|
||||
copperplate.remove(<railcraft:plate:3>);
|
||||
copperplate.remove(<libvulpes:productplate:4>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:30>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:320>, <ore:ingotCopper>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:30>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:320>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotCopper>]);
|
||||
|
||||
//==================================================================
|
||||
// silver
|
||||
@@ -138,6 +193,16 @@ silveringot.remove(<projectred-core:resource_item:102>);
|
||||
silveringot.remove(<railcraft:ingot:4>);
|
||||
// silveringot.remove(<techreborn:ingot:11>);
|
||||
|
||||
furnace.remove(<bewitchment:silver_ingot>);
|
||||
furnace.remove(<iceandfire:silver_ingot>);
|
||||
furnace.remove(<immersiveengineering:metal:3>);
|
||||
furnace.remove(<nuclearcraft:ingot:13>);
|
||||
furnace.remove(<projectred-core:resource_item:102>);
|
||||
furnace.remove(<railcraft:ingot:4>);
|
||||
furnace.remove(<techreborn:ingot:11>);
|
||||
furnace.addRecipe(<thermalfoundation:material:130>, <ore:oreSilver>);
|
||||
|
||||
|
||||
recipes.removeShapeless(<bewitchment:silver_ingot>);
|
||||
recipes.removeShapeless(<iceandfire:silver_ingot>);
|
||||
recipes.removeShapeless(<immersiveengineering:metal:3>);
|
||||
@@ -156,6 +221,13 @@ silverplate.remove(<bewitchment:silver_plate>);
|
||||
silverplate.remove(<immersiveengineering:metal:33>);
|
||||
silverplate.remove(<railcraft:plate:5>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:33>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:322>, <ore:ingotSilver>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:33>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:322>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotSilver>]);
|
||||
|
||||
//==================================================================
|
||||
// steel
|
||||
@@ -188,6 +260,14 @@ steelplate.remove(<immersiveengineering:metal:38>);
|
||||
steelplate.remove(<railcraft:plate:1>);
|
||||
steelplate.remove(<libvulpes:productplate:6>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:38>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:352>, <ore:ingotSteel>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:38>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:352>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotSteel>]);
|
||||
|
||||
//==================================================================
|
||||
// bronze
|
||||
val bronzeingot = <ore:ingotBronze>;
|
||||
@@ -216,6 +296,12 @@ aluminumingot.remove(<nuclearcraft:ingot:12>);
|
||||
aluminumingot.remove(<libvulpes:productingot:9>);
|
||||
// aluminumingot.remove(<techreborn:ingot:0>);
|
||||
|
||||
furnace.remove(<immersiveengineering:metal:1>);
|
||||
furnace.remove(<nuclearcraft:ingot:12>);
|
||||
furnace.remove(<libvulpes:productingot:9>);
|
||||
furnace.remove(<techreborn:ingot:0>);
|
||||
furnace.addRecipe(<thermalfoundation:material:132>, <ore:oreAluminum>);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:1>);
|
||||
recipes.removeShapeless(<nuclearcraft:ingot:12>);
|
||||
recipes.removeShapeless(<libvulpes:productingot:9>);
|
||||
@@ -231,6 +317,13 @@ val aluminumplate = <ore:plateAluminum>;
|
||||
aluminumplate.remove(<immersiveengineering:metal:31>);
|
||||
aluminumplate.remove(<libvulpes:productplate:9>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:31>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:324>, <ore:ingotAluminum>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:31>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:324>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotAluminum>]);
|
||||
|
||||
//==================================================================
|
||||
// electrum
|
||||
@@ -248,6 +341,9 @@ electrumdust.remove(<immersiveengineering:metal:16>);
|
||||
val electrumplate = <ore:plateElectrum>;
|
||||
electrumplate.remove(<immersiveengineering:metal:37>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:37>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:353>, <ore:ingotElectrum>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
// recipe.removeShapeless(<immersiveengineering:metal:16>);
|
||||
|
||||
//==================================================================
|
||||
@@ -258,6 +354,12 @@ leadingot.remove(<nuclearcraft:ingot:2>);
|
||||
leadingot.remove(<railcraft:ingot:3>);
|
||||
// leadingot.remove(<techreborn:ingot:8>);
|
||||
|
||||
furnace.remove(<immersiveengineering:metal:2>);
|
||||
furnace.remove(<nuclearcraft:ingot:2>);
|
||||
furnace.remove(<railcraft:ingot:3>);
|
||||
furnace.remove(<techreborn:ingot:8>);
|
||||
furnace.addRecipe(<thermalfoundation:material:131>, <ore:oreLead>);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:2>);
|
||||
recipes.removeShapeless(<nuclearcraft:ingot:2>);
|
||||
recipes.removeShapeless(<railcraft:ingot:3>);
|
||||
@@ -272,6 +374,14 @@ val leadplate = <ore:plateLead>;
|
||||
leadplate.remove(<immersiveengineering:metal:32>);
|
||||
leadplate.remove(<railcraft:plate:4>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:32>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:323>, <ore:ingotLead>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:32>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:323>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotLead>]);
|
||||
|
||||
//==================================================================
|
||||
// nickel
|
||||
val nickelingot = <ore:ingotNickel>;
|
||||
@@ -279,6 +389,11 @@ nickelingot.remove(<immersiveengineering:metal:4>);
|
||||
nickelingot.remove(<railcraft:ingot:6>);
|
||||
// nickelingot.remove(<techreborn:ingot:9>);
|
||||
|
||||
furnace.remove(<immersiveengineering:metal:4>);
|
||||
furnace.remove(<railcraft:ingot:6>);
|
||||
furnace.remove(<techreborn:ingot:9>);
|
||||
furnace.addRecipe(<thermalfoundation:material:133>, <ore:oreNickel>);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:4>);
|
||||
recipes.removeShapeless(<railcraft:ingot:6>);
|
||||
recipes.addShapeless(<thermalfoundation:material:133>*9, [<ore:blockNickel>]);
|
||||
@@ -291,11 +406,22 @@ val nuckelplate = <ore:plateNickel>;
|
||||
nuckelplate.remove(<immersiveengineering:metal:34>);
|
||||
nuckelplate.remove(<railcraft:plate:8>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:34>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:325>, <ore:ingotNickel>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:34>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:325>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotNickel>]);
|
||||
|
||||
//==================================================================
|
||||
// graphite
|
||||
val graphiteingot = <ore:ingotGraphite>;
|
||||
graphiteingot.remove(<bigreactors:ingotgraphite>);
|
||||
|
||||
furnace.remove(<bigreactors:ingotgraphite>);
|
||||
furnace.addRecipe(<nuclearcraft:ingot:8>, <ore:oreGraphite>);
|
||||
|
||||
recipes.removeShapeless(<bigreactors:ingotgraphite>);
|
||||
recipes.addShapeless(<nuclearcraft:ingot:8>*9, [<ore:blockGraphite>]);
|
||||
|
||||
@@ -316,12 +442,24 @@ constantandust.remove(<immersiveengineering:metal:15>);
|
||||
val constantanplate = <ore:plateConstantan>;
|
||||
constantanplate.remove(<immersiveengineering:metal:36>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:36>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:356>, <ore:ingotConstantan>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:36>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:356>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotConstantan>]);
|
||||
|
||||
//==================================================================
|
||||
// uranium
|
||||
val uraniumingot = <ore:ingotUranium>;
|
||||
uraniumingot.remove(<nuclearcraft:ingot:4>);
|
||||
// uraniumingot.remove(<techreborn:ingot:24>);
|
||||
|
||||
furnace.remove(<techreborn:ingot:24>);
|
||||
furnace.remove(<nuclearcraft:ingot:4>);
|
||||
furnace.addRecipe(<immersiveengineering:metal:5>, <ore:oreUranium>);
|
||||
|
||||
recipes.removeShapeless(<nuclearcraft:ingot:4>);
|
||||
recipes.addShapeless(<immersiveengineering:metal:5>*9, [<ore:blockUranium>]);
|
||||
|
||||
@@ -337,6 +475,9 @@ uraniumore.remove(<immersiveengineering:ore:5>);
|
||||
val thoriumingot = <ore:ingotThorium>;
|
||||
// thoriumingot.remove(<techreborn:ingot:23>);
|
||||
|
||||
furnace.remove(<techreborn:ingot:23>);
|
||||
furnace.addRecipe(<nuclearcraft:ingot:3>, <ore:oreThorium>);
|
||||
|
||||
recipes.addShapeless(<nuclearcraft:ingot:3>*9, [<ore:blockThorium>]);
|
||||
|
||||
val thoriumdust = <ore:dustThorium>;
|
||||
@@ -376,6 +517,17 @@ ironplate.remove(<railcraft:plate:0>);
|
||||
ironplate.remove(<thaumcraft:plate:1>);
|
||||
ironplate.remove(<libvulpes:productplate:1>);
|
||||
|
||||
recipes.remove(<thaumcraft:plate:1>);
|
||||
recipes.addShaped(<thermalfoundation:material:32>*3,
|
||||
[[<ore:ingotIron>,<ore:ingotIron>,<ore:ingotIron>]]);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:39>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:32>, <ore:ingotIron>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:39>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:32>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotIron>]);
|
||||
|
||||
//==================================================================
|
||||
// gold
|
||||
@@ -394,6 +546,13 @@ goldplate.remove(<immersiveengineering:metal:40>);
|
||||
goldplate.remove(<railcraft:plate:7>);
|
||||
goldplate.remove(<libvulpes:productplate:2>);
|
||||
|
||||
mods.immersiveengineering.MetalPress.removeRecipe(<immersiveengineering:metal:40>);
|
||||
mods.immersiveengineering.MetalPress.addRecipe(<thermalfoundation:material:33>, <ore:ingotGold>, <immersiveengineering:mold:0>, 2000);
|
||||
|
||||
recipes.removeShapeless(<immersiveengineering:metal:40>, [<immersiveengineering:tool:0>], true);
|
||||
recipes.addShapeless(<thermalfoundation:material:33>,
|
||||
[<immersiveengineering:tool:0>,
|
||||
<ore:ingotGold>]);
|
||||
|
||||
//==================================================================
|
||||
// diamond
|
||||
|
||||
@@ -53,3 +53,29 @@
|
||||
|
||||
<extrabotany:buddhistrelics>.addTooltip(format.red("Use the paparazzi camera to unlock this"));
|
||||
<extrabotany:camera>.addTooltip(format.red("Use the paparazzi camera to unlock this"));
|
||||
|
||||
<contenttweaker:pixonia_infusion_key>.addTooltip(format.red("Thanks to GalacticSilver for the texture!"));
|
||||
|
||||
<contenttweaker:arcane_prison_key>.addTooltip(format.red("Thanks to Josip for the texture!"));
|
||||
|
||||
<contenttweaker:reprocessed_cosmic_meatball>.addTooltip(format.red("Thanks to Gebcrafter for the texture!"));
|
||||
|
||||
<iceandfire:lightning_dragon_blood>.addTooltip(format.red("Tinker Modifier: lightning strikes target"));
|
||||
|
||||
<modularmachinery:blockstarlightproviderinput>.addTooltip(format.red("Power using collector crystals and a linking tool"));
|
||||
|
||||
<contenttweaker:call_of_enigma>.addTooltip(format.red("Right click for a free cookie"));
|
||||
|
||||
<contenttweaker:fading_wool>.addTooltip(format.red("Get quested, ram!"));
|
||||
|
||||
<divinerpg:whale_fin>.addTooltip(format.red("Whales and sharks are spawned with the aquatic stone"));
|
||||
<divinerpg:shark_fin>.addTooltip(format.red("Whales and sharks are spawned with the aquatic stone"));
|
||||
|
||||
<contenttweaker:aquatic_stone>.addTooltip(format.red("Right click to summon whales and sharks"));
|
||||
// <contenttweaker:aquatic_stone>.addTooltip(format.red("WARNING: if you see whales and sharks spawn naturally, please report it"));
|
||||
|
||||
<contenttweaker:funny_pumpkin>.addTooltip(format.red("Right click to summon a Jack o Man"));
|
||||
// <contenttweaker:funny_pumpkin>.addTooltip(format.red("WARNING: if you see Jack o Man spawn naturally, please report it"));
|
||||
|
||||
<contenttweaker:wormhole_fragment>.addTooltip(format.red("Right click to summon a Realmshifter"));
|
||||
// <contenttweaker:wormhole_fragment>.addTooltip(format.red("WARNING: if you see Realmshifter spawn naturally, please report it"));
|
||||
|
||||
@@ -365,6 +365,8 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:vengeful_key>.addTooltip(format.red("Opens the door to the will crystal monolith"));
|
||||
|
||||
<contenttweaker:vengeful_key>.addTooltip(format.red("Thanks to GalacticSilver for the texture!"));
|
||||
|
||||
<contenttweaker:retaliation_key>.addTooltip(format.red("opens the final room in the will crystal monolith"));
|
||||
|
||||
<soulshardsrespawn:soul_shard>.addTooltip(format.red("This is made in-world, place a glowstone block, with four quartz blocks around it, and obsidian in the corners. - Text suggestion by Sandman366"));
|
||||
@@ -865,8 +867,6 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:chaotic_feather>.addTooltip(format.red("Dropped by the chaos chicken"));
|
||||
|
||||
<divinerpg:whale_fin>.addTooltip(format.red("Whale spawn eggs are craftable"));
|
||||
|
||||
<draconicevolution:draconic_spawner>.addTooltip(format.red("Right click in-world spawners with the appropriate core"));
|
||||
|
||||
<thermalexpansion:augment:576>.addTooltip(format.red("Use with an extreme turbine for maximum profit!"));
|
||||
@@ -1603,7 +1603,7 @@ import crafttweaker.item.IItemCondition;
|
||||
|
||||
<contenttweaker:heart_of_the_elder_one>.addTooltip(format.red("Found on Apichisi"));
|
||||
|
||||
<contenttweaker:naquadah_chunk>.addTooltip(format.red("Found in some dungeons from chapter 5 onwards"));
|
||||
<contenttweaker:naquadah_chunk>.addTooltip(format.red("Found in the dungeon in Apichisi"));
|
||||
|
||||
<contenttweaker:ichor>.addTooltip(format.red("Obtained right-clicking the vibrating mithminite schythe on top of tainted soil"));
|
||||
|
||||
@@ -2282,7 +2282,7 @@ import crafttweaker.item.IItemCondition;
|
||||
<divinerpg:corrupted_shards>.addTooltip(format.red("Dropped by mobs that spawn below Y = 11"));
|
||||
<divinerpg:corrupted_stone>.addTooltip(format.red("Dropped by mobs that spawn below Y = 11"));
|
||||
|
||||
<contenttweaker:dream_projector_gem>.addTooltip(format.red("Combine the right tinker's parts with a projector gem - Vethea will guide you!"));
|
||||
<contenttweaker:dream_projector_gem>.addTooltip(format.red("Combine the right tinker's parts with a projector gem - Vethea recipes will guide you!"));
|
||||
|
||||
<contenttweaker:dream_projector_gem>.addTooltip(format.red("The recursive life essence is from the hidden power callstone!"));
|
||||
|
||||
|
||||
@@ -29,7 +29,3 @@ mods.nuclearcraft.pressurizer.addRecipe([<woot:shard:4>, <woot:stygianironingot>
|
||||
mods.nuclearcraft.pressurizer.addRecipe([<woot:shard:5>, <woot:stygianironingot>*3]);
|
||||
mods.nuclearcraft.pressurizer.addRecipe([<woot:shard:6>, <woot:stygianironingot>*4]);
|
||||
|
||||
recipes.addShaped(<minecraft:spawn_egg>.withTag({EntityTag: {id: "divinerpg:whale"}}),
|
||||
[[<aoa3:small_skill_crystal>, <divinerpg:aquatic_ingot>, <aoa3:small_skill_crystal>],
|
||||
[<aoa3:small_skill_crystal>, <divinerpg:aquatic_ingot>, <aoa3:small_skill_crystal>],
|
||||
[<aoa3:small_skill_crystal>, <divinerpg:aquatic_ingot>, <aoa3:small_skill_crystal>]]);
|
||||
|
||||
Reference in New Issue
Block a user