Skip to content

Commit

Permalink
Added new Script dirs, moved old scripts do 'disabled' until I have p…
Browse files Browse the repository at this point in the history
…orted everything
  • Loading branch information
kindlich committed Jul 9, 2016
1 parent 2ebfed4 commit d42a868
Show file tree
Hide file tree
Showing 52 changed files with 1,281 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/srv/config/hqm/editmode.cfg
/srv/config/hqm/editmode.cfg
build/*


.gradle/*
/src/imcScripts*
/src/asm*
Expand All @@ -14,3 +14,4 @@ build/*
/src/saves*
/build*

src/scripts/tester.zs
13 changes: 13 additions & 0 deletions src/scripts/AAA_vars_and_oreDicts/oreDic.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import minetweaker.item.IItemStack;

val slab = <ore:slabCobblestone>;
slab.add(<ExtrabiomesXL:slabRedRock>);



val cob = <ore:cobblestone>;
cob.remove(<MineFactoryReloaded:stone:2>);



val black = <MineFactoryReloaded:stone:2>;
577 changes: 577 additions & 0 deletions src/scripts/AAA_vars_and_oreDicts/vars.zs

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/scripts/AARecipe_Removal/Altar.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import mods.bloodmagic.Altar.removeRecipe;

removeRecipe(orbWeak);
removeRecipe(altardiviner);
removeRecipe(bloodDynamo);
removeRecipe(orbApprentice);
11 changes: 11 additions & 0 deletions src/scripts/AARecipe_Removal/Avaritia.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import minetweaker.item.IItemStack;


mods.avaritia.ExtremeCrafting.remove(infwand);
mods.avaritia.ExtremeCrafting.remove(infhelm);
mods.avaritia.ExtremeCrafting.remove(infchest);
mods.avaritia.ExtremeCrafting.remove(infpants);
mods.avaritia.ExtremeCrafting.remove(infshoes);
mods.avaritia.ExtremeCrafting.remove(cosmossword);
mods.avaritia.ExtremeCrafting.remove(armokorb);
mods.avaritia.ExtremeCrafting.remove(infcatalyst);
8 changes: 8 additions & 0 deletions src/scripts/AARecipe_Removal/Seeds.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
vanilla.seeds.removeSeed(wheatseeds);
vanilla.seeds.removeSeed(artichokeseeds);
vanilla.seeds.removeSeed(belladonnaseeds);
vanilla.seeds.removeSeed(mandrakeseeds);
vanilla.seeds.removeSeed(snowbellseeds);
vanilla.seeds.removeSeed(wolfsbaneSeeds);
vanilla.seeds.removeSeed(garlicSeeds);
vanilla.seeds.removeSeed(hempSeeds);
7 changes: 7 additions & 0 deletions src/scripts/AARecipe_Removal/TCon_Smelting.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import mods.tconstruct.Smeltery.removeMelting;

removeMelting(ironBerry);
removeMelting(goldBerry);
removeMelting(copperBerry);
removeMelting(tinBerry);
removeMelting(aluBerry);
128 changes: 128 additions & 0 deletions src/scripts/AARecipe_Removal/Vanilla_Crafting.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
import minetweaker.item.IItemStack;

recipes.remove(<minecraft:planks:*>);
recipes.remove(tanktier15);
recipes.remove(tanktier16);
recipes.remove(chaostiny);
recipes.remove(chaossmall);
recipes.remove(chaoslarge);
recipes.remove(chaosshard);
recipes.remove(minicioEssence);
recipes.remove(knife);
recipes.remove(altar);
recipes.remove(endstone);
recipes.remove(fertilizerMagic);
recipes.remove(accioEssence);
recipes.remove(crucioEssence);
recipes.remove(imperioEssence);
recipes.remove(zivicioEssence);
recipes.remove(weakShard);
recipes.remove(fertilizer);
recipes.remove(quicklime);
recipes.remove(diasword);
recipes.remove(diashov);
recipes.remove(diapick);
recipes.remove(diaaxe);
recipes.remove(diahoe);
recipes.remove(diaplate);
recipes.remove(dialeggins);
recipes.remove(diaboots);
recipes.remove(diahelm);
recipes.remove(ironCap);
recipes.removeShapeless(blockMoldSoft, [blankMoldSoft,gold]);
recipes.remove(upgradeT3);
recipes.remove(upgradeT4);
recipes.remove(upgradeT5);
recipes.remove(upgradeT6);
recipes.remove(crafter);
recipes.removeShaped(clayball, [[redrock, waterbuck], [waterbuck, waterbuck]]);
recipes.remove(unifier);
recipes.remove(oredictionificator);
recipes.remove(ofanix);
recipes.remove(heatingCoil);
recipes.remove(ironshov);
recipes.remove(ironpick);
recipes.remove(ironaxe);
recipes.remove(ironsword);
recipes.remove(ironhoe);
recipes.remove(ironhelm);
recipes.remove(ironplate);
recipes.remove(ironboots);
recipes.remove(ironleggins);
recipes.remove(netherQuartzSword);
recipes.remove(goldshov);
recipes.remove(goldpick);
recipes.remove(goldaxe);
recipes.remove(goldsword);
recipes.remove(goldhoe);
recipes.remove(goldhelm);
recipes.remove(goldplate);
recipes.remove(goldboots);
recipes.remove(goldleggins);
recipes.remove(certusQuartzHoe);
recipes.remove(certusQuartzAxe);
recipes.remove(certusQuartzSpade);
recipes.remove(certusQuartzPickaxe);
recipes.remove(certusQuartzSword);
recipes.remove(netherQuartzAxe);
recipes.remove(netherQuartzHoe);
recipes.remove(netherQuartzSpade);
recipes.remove(netherQuartzPickaxe);
recipes.removeShaped(wool, [[oreTierMinicoEssence,sheepEssence, oreTierMinicoEssence], [oreTierMinicoEssence, oreTierMinicoEssence, oreTierMinicoEssence], [sheepEssence, oreTierMinicoEssence, oreTierMinicoEssence]]);
recipes.remove(toolforge);
recipes.remove(tinkerBook);
recipes.remove(patternBlank);
recipes.remove(woodPatternBlank);
recipes.remove(castingBasin);
recipes.remove(slimeSoil);
recipes.remove(MFRMachineblock);
recipes.remove(blockBreaker);
recipes.remove(fluixSeed);
recipes.remove(netherSeed);
recipes.remove(certusSeed);
recipes.removeShaped(steelCasing, [[ironGear, oreSteelIngot, ironGear], [oreSteelIngot, ironGear, oreSteelIngot], [ironGear, oreSteelIngot, ironGear]]);
recipes.remove(superHeater);
recipes.remove(scubaTank);
recipes.remove(BMWoodAsh);
recipes.remove(growthSigil);
recipes.remove(DEGen);
recipes.remove(weatherController);
recipes.remove(sunDial);
recipes.remove(existenceGem);
recipes.remove(existenceUsers);
recipes.remove(existencePylons);
recipes.remove(existenceBurners);
recipes.remove(existenceFountain);
recipes.remove(zivicioSword);
recipes.remove(zivicioHelm);
recipes.remove(zivicioPlate);
recipes.remove(zivicioLeggins);
recipes.remove(zivicioBoots);
recipes.remove(accioHelm);
recipes.remove(accioPlate);
recipes.remove(accioLeggins);
recipes.remove(accioBoots);
recipes.remove(accioSword);
recipes.remove(smeltery);
recipes.remove(smelteryTanks);
recipes.remove(smelteryTanksNether);
recipes.remove(faucet);
recipes.remove(faucetNether);
recipes.remove(smelteryDrain);
recipes.remove(searedBricks);
recipes.remove(searedStone);
recipes.remove(searedCobble);
recipes.remove(castingchannel);
recipes.remove(castingTable);
recipes.remove(searedBrick);
recipes.remove(grout);
recipes.remove(kettle);
recipes.remove(witchesOven);
recipes.remove(witchWoods);
recipes.remove(seedBagAccio);
recipes.remove(seedBagCrucio);
recipes.remove(seedBagImperio);
recipes.remove(seedBagZivicio);
recipes.remove(thermalEvap);
recipes.remove(thermalEvapController);
recipes.remove(thermalEvapValve);
7 changes: 7 additions & 0 deletions src/scripts/AARecipe_Removal/furnace.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
furnace.remove(<*>, ironBerry);
furnace.remove(<*>, goldBerry);
furnace.remove(<*>, copperBerry);
furnace.remove(<*>, tinBerry);
furnace.remove(<*>, aluBerry);
furnace.remove(glass);
furnace.remove(searedBrick);
5 changes: 5 additions & 0 deletions src/scripts/AARecipe_Removal/infusion.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import minetweaker.item.IItemStack;
import mods.thaumcraft.Infusion.removeRecipe;

removeRecipe(<Thaumcraft:blockMetalDevice:8>);
removeRecipe(<Thaumcraft:ItemHoeElemental>);
7 changes: 7 additions & 0 deletions src/scripts/AARecipe_Removal/lexicaBotania.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import minetweaker.item.IItemStack;
import mods.botania.Lexicon.removeCategory;
import mods.botania.Lexicon.removeEntry;
import mods.botania.Lexicon.removePage;


removePage("tc.research_name.TECHNOBASICS", 1);
4 changes: 4 additions & 0 deletions src/scripts/AARecipe_Removal/manapool.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import minetweaker.item.IItemStack;
import mods.botania.ManaInfusion.removeRecipe;

removeRecipe(manaCoil);
6 changes: 6 additions & 0 deletions src/scripts/AARecipe_Removal/oredict.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<ore:nuggetIron>.remove(ironBerry);
<ore:nuggetGold>.remove(goldBerry);
<ore:nuggetCopper>.remove(copperBerry);
<ore:nuggerTin>.remove(tinBerry);
<ore:nuggerAluminum>.remove(aluBerry);
<ore:nuggerAluminium>.remove(aluBerry);
7 changes: 7 additions & 0 deletions src/scripts/Agricraft/mutations.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import mods.agricraft.SeedMutation;

//witchery
SeedMutation.add(belladonnaseeds, wheatseeds, waterseeds);
SeedMutation.add(snowbellseeds, belladonnaseeds, waterseeds);
SeedMutation.add(mandrakeseeds, belladonnaseeds, snowbellseeds);
SeedMutation.add(artichokeseeds, snowbellseeds, waterseeds);
150 changes: 150 additions & 0 deletions src/scripts/Avaritia/extremeCrafting_shaped.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
import minetweaker.item.IItemStack;
import mods.avaritia.ExtremeCrafting.addShaped;


#add crystal cluster
addShaped(cluster,
[[dia,dia,dia,dia,dia,dia,dia,dia,dia],
[emerald,fluix,attunedstone,slateEthereal,netherblock,slateEthereal,attunedstone,fluix ,emerald],
[dia,dia,dia,dia,dia,dia,dia,dia,dia],
[emerald,fluix,attunedstone,slateEthereal,netherblock,slateEthereal,attunedstone,fluix ,emerald],
[manasteel,manasteel,manasteel,manasteel,terrasteel,manasteel,manasteel,manasteel,manasteel],
[emerald,fluix,attunedstone,slateEthereal,netherblock,slateEthereal,attunedstone,fluix ,emerald],
[dia,dia,dia,dia,dia,dia,dia,dia,dia],
[emerald,fluix,attunedstone,slateEthereal,netherblock,slateEthereal,attunedstone,fluix ,emerald],
[dia,dia,dia,dia,dia,dia,dia,dia,dia]]);



#add infinity helm
addShaped(infhelm,
[[infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock],
[infblock, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, infblock],
[infblock, bigpearl, dragonblock, dragonblock, dragonblock, dragonblock, dragonblock, bigpearl, infblock],
[infblock, bigpearl, dragonblock, netherblock, netherblock, netherblock, dragonblock, bigpearl, infblock],
[neutroblock, infcatalyst, dragonblock, netherblock, infblock, netherblock, dragonblock, infcatalyst, neutroblock],
[neutroblock, infcatalyst, dragonblock, netherblock, netherblock, netherblock, dragonblock, infcatalyst, neutroblock],
[neutroblock, infcatalyst, dragonblock, dragonblock, dragonblock, dragonblock, dragonblock, infcatalyst, neutroblock],
[neutroblock, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, neutroblock],
[neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock]]);


#add infinity chestplate
addShaped(infchest,
[[bigpearl, neutroblock, neutroblock, infblock, infblock, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, infblock, infcatalyst, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, infblock, infcatalyst, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, infblock, infcatalyst, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, infblock, infcatalyst, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, infblock, infblock, infblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, bigpearl],
[bigpearl, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, bigpearl],
[bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl]]);

#add infinity pants
addShaped(infpants,
[[bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl],
[bigpearl, pearl, pearl, pearl, pearl, pearl, pearl, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, neutroblock, neutroblock, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, dragonblock, neutroblock, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, dragonblock, neutroblock, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, dragonblock, neutroblock, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, dragonblock, neutroblock, infcatalyst, pearl, bigpearl],
[bigpearl, pearl, infcatalyst, neutroblock, dragonblock, neutroblock, infcatalyst, pearl, bigpearl]]);

#add infinity shoes
addShaped(infshoes,
[[stew, stew, stew, stew, stew, stew, stew, stew, stew],
[stew, bigpearl, terracap, terracap, terracap, terracap, terracap, bigpearl, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, cluster, neutroblock, infblock, infcatalyst, infblock, neutroblock, cluster, stew],
[stew, bigpearl, neutroblock, infblock, infcatalyst, infblock, neutroblock, bigpearl, stew]]);

#add infinity wand

addShaped(infwand,
[[bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl],
[bigpearl, stew, stew, stew, stew, stew, infblock, infcatalyst, bigpearl],
[bigpearl, stew, records, records, ichorscepter, infblock, infcatalyst, infblock, bigpearl],
[bigpearl, stew, records, ichorscepter, infblock, infcatalyst, infblock, stew, bigpearl],
[bigpearl, stew, ichorscepter, infblock, infcatalyst, infblock, ichorscepter, stew, bigpearl],
[bigpearl, stew, infblock, infcatalyst, infblock, ichorscepter, records, stew, bigpearl],
[bigpearl, infblock, infcatalyst, infblock, ichorscepter, records, records, stew, bigpearl],
[bigpearl, infcatalyst, infblock, stew, stew, stew, stew, stew, bigpearl],
[bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl, bigpearl]]);

#add bloodtank t15
addShaped(tanktier15,
[[chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco],
[chargeddraco, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, charmprimal, charmprimal, charmprimal, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, bigpearl, eldritchorb, bigpearl, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, eldritchorb, infcatalyst, eldritchorb, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, bigpearl, eldritchorb, bigpearl, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, charmprimal, charmprimal, charmprimal, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, chargeddraco],
[chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco, chargeddraco]]);
#add bloodtank t16
addShaped(tanktier16,
[[chargeddraco, chargeddraco, chargeddraco, chargeddraco, tanktier15, chargeddraco, chargeddraco, chargeddraco, chargeddraco],
[chargeddraco, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, chargeddraco],
[chargeddraco, awakecore, tanktier15, charmprimal, tanktier15, charmprimal, tanktier15, awakecore, chargeddraco],
[chargeddraco, awakecore, charmprimal, bigpearl, eldritchorb, bigpearl, charmprimal, awakecore, chargeddraco],
[tanktier15, awakecore, tanktier15, eldritchorb, infcatalyst, eldritchorb, tanktier15, awakecore, tanktier15],
[chargeddraco, awakecore, charmprimal, bigpearl, eldritchorb, bigpearl, charmprimal, awakecore, chargeddraco],
[chargeddraco, awakecore, tanktier15, charmprimal, tanktier15, charmprimal, tanktier15, awakecore, chargeddraco],
[chargeddraco, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, awakecore, chargeddraco],
[chargeddraco, chargeddraco, chargeddraco, chargeddraco, tanktier15, chargeddraco, chargeddraco, chargeddraco, chargeddraco]]);

#add armork bloodor
addShaped(armokorb,
[[eldritchorb, cellcomponent, cellcomponent, cellcomponent, eldritchorb, cellcomponent, cellcomponent, cellcomponent, eldritchorb],
[cellcomponent, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, cellcomponent],
[cellcomponent, infcatalyst, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, infcatalyst, cellcomponent],
[cellcomponent, infcatalyst, neutroblock, infcatalyst, infcatalyst, infcatalyst, neutroblock, infcatalyst, cellcomponent],
[eldritchorb, infcatalyst, neutroblock, infcatalyst, tanktier16, infcatalyst, neutroblock, infcatalyst, eldritchorb],
[cellcomponent, infcatalyst, neutroblock, infcatalyst, infcatalyst, infcatalyst, neutroblock, infcatalyst, cellcomponent],
[cellcomponent, infcatalyst, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, infcatalyst, cellcomponent],
[cellcomponent, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, infcatalyst, cellcomponent],
[eldritchorb, cellcomponent, cellcomponent, cellcomponent, eldritchorb, cellcomponent, cellcomponent, cellcomponent, eldritchorb]]);

#add sowrd of cosmos
addShaped(cosmossword,
[[infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock],
[infblock, armokorb, powerstaff, chaosshard, chaosshard, chaosshard, powerstaff, armokorb, infblock],
[infblock, powerstaff, powerstaff, chaosshard, chaosshard, chaosshard, powerstaff, powerstaff, infblock],
[infblock, powerstaff, powerstaff, chaosshard, chaosshard, chaosshard, powerstaff, powerstaff, infblock],
[infblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, infblock],
[infblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, infblock],
[infblock, planeteater, planeteater, skullsword, infcatalyst, skullsword, worldbreaker, worldbreaker, infblock],
[infblock, armokorb, planeteater, skullsword, infcatalyst, skullsword, worldbreaker, armokorb, infblock],
[infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock, infblock]]);

#add tiny chaos fragment
addShaped(chaostiny,
[[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, null, neutronugget, neutronugget, neutronugget, null, null, null],
[null, null, null, neutronugget,chargeddraco, neutronugget, null, null, null],
[null, null, null, neutronugget, neutronugget, neutronugget, null, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null]]);

#add Chaos Shard
addShaped(chaosshard,
[[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, null, null],
[null, null, neutroblock, chaoslarge, chaoslarge, chaoslarge, neutroblock, null, null],
[null, null, neutroblock, chaoslarge, armokorb, chaoslarge, neutroblock, null, null],
[null, null, neutroblock, chaoslarge, chaoslarge, chaoslarge, neutroblock, null, null],
[null, null, neutroblock, neutroblock, neutroblock, neutroblock, neutroblock, null, null],
[null, null, null, null, null, null, null, null, null],
[null, null, null, null, null, null, null, null, null]]);
5 changes: 5 additions & 0 deletions src/scripts/Avaritia/extremeCrafting_shapeless.zs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import minetweaker.item.IItemStack;
import mods.avaritia.ExtremeCrafting.addShaped;


mods.avaritia.ExtremeCrafting.addShapeless(infcatalyst,[<Avaritia:Singularity>,<Avaritia:Singularity:1>,<Avaritia:Singularity:2>,<Avaritia:Singularity:3>,<Avaritia:Singularity:4>,<Avaritia:Singularity:5>,<Avaritia:Singularity:6>,<Avaritia:Singularity:7>,<Avaritia:Singularity:8>,<Avaritia:Singularity:9>,emerald,stew,meatballs,pearl,bigpearl,ichoringot,cellcomponent,singularity,terrasteel,gaia,cluster,dragonblock,manyullim,pinkslime,koboldite,disc,steel,jarredMob]);
Loading

0 comments on commit d42a868

Please sign in to comment.