This commit is contained in:
Jacob Vinding
2025-12-26 23:36:50 +01:00
commit 44b79588a3
2778 changed files with 418761 additions and 0 deletions
@@ -0,0 +1,348 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Custom Recipes</title>
<link rel="shortcut icon" type="image/x-icon"
href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAYdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuNWWFMmUAAACSSURBVDhPlZHLDYAwDEO7DWcunLsAWzBIN+toQS6xiNr0Z8kSafMeQoRRrvMQVMe9AMw5l25LLLwtsXCMsXRZUsPec1fiwY9IqT1DGwkuvTf2BNxX/BPgYvUTeKb4L7ALXBrdKd7+tnr2zjAr/mUkmcJMvVh/AtqFGSuxglvOOcxQYgXLMAOAgm2YSSkJqqOTEF4xoGOuk3A5dwAAAABJRU5ErkJggg==">
<style type="text/css">
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
max-width: 80ch;
}
div#content {
/*position: relative;*/
/*left: 25%;*/
max-width: 1000px;
margin: 0 auto;
padding: 15px;
display: block;
}
div#content li {
margin-bottom: 0.4em;
word-wrap: break-word;
}
code {
font-size: 13px;
white-space: pre-wrap;
padding: 1px 5px;
font-family: Consolas,Menlo,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New,monospace,sans-serif;
background-color: #eee;
margin: 0;
border: 0;
word-wrap: break-word;
line-height: 13px;
}
nav {
float: right;
width: 40%;
background: #eeeeee;
font-size: 0.8em;
padding-left: 15px;
margin: 0 0 0.5em 0.5em;
max-height: 200px;
word-wrap: break-word;
display: block;
overflow: auto;
}
h1, h2, h3, h4 {
margin-top: 20px;
margin-bottom: 10px;
line-height: 1.1;
}
h1 {
font-size: 36px;
font-weight: 500;
}
pre {
border: 1px solid #CCC;
background-color: #f6f6f2;
word-wrap: normal;
overflow: auto;
font-size: 13px;
padding: 5px;
width: auto;
max-height: 600px;
margin-bottom: 1em;
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, sans-serif;
display: block;
white-space: pre;
line-height: 1.3;
border-spacing: 2px;
text-align: left;
color: #222;
max-width: 1024px;
}
blockquote {
margin: 0 0 10px;
padding: 10px;
background-color: #fff9e3;
border-left: 2px solid #ffeb8e;
quotes: none;
line-height: 1.3;
max-width: 1024px;
}
a {
color: #0c65a5;
cursor: pointer;
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
line-height: 1.3;
}
a:hover {
color: #30a7fc;
text-decoration: none;
}
</style>
</head>
<body>
<div id="content">
<div id="header">
<h1>Custom Recipes</h1>
</div>
<div id="body">
<nav role="navigation">
<h2>Navigation</h2>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#auto-generation">Auto-Generation</a></li>
<li><a href="#modification">Recipe Modification</a></li>
<ul>
<li><a href="#item-references">Item References</a></li>
<li><a href="#recipe-types">Recipe Types</a></li>
<ul>
<li><a href="#shapeless">Shapeless</a></li>
<li><a href="#spahed">Shaped</a></li>
<li><a href="#smelt">Smelt</a></li>
<li><a href="#grind">Grind</a></li>
<li><a href="#grindfz">Grindfz</a></li>
<li><a href="#mekcrusher">Mekcrusher</a></li>
<li><a href="#mekechamber">Mekechamber</a></li>
<li><a href="#hccrusher">Hccrusher</a></li>
<li><a href="#crusher">Crusher</a></li>
<li><a href="#macerator">Macerator</a></li>
<li><a href="#pulverizer">Pulverizer</a></li>
<li><a href="#inscribe">Inscribe</a></li>
<li><a href="#press">Press</a></li>
</ul>
<li><a href="#recipe-function">Recipe Function</a></li>
<ul>
<li><a href="#alias">Alias</a></li>
<li><a href="#ore">Ore</a></li>
<li><a href="#group">Group</a></li>
<li><a href="#import">Import</a></li>
</ul>
</ul>
</ul>
</nav>
<h2 id="introduction">Introduction</h2>
<p>This file is the README of Applied Energistics 2 for Custom Recipes. Applied Energistics 2 is extremely configurable and supports 100% customize-able
recipes if desired. This page will direct you on how to get started. The entry file for the recipe system is <code>index.recipe</code>.</p>
<h2 id="auto-generation">Auto-Generation</h2>
<p>AE2 will generate 2 folders in your AE2 configuration folder <code>config/AppliedEneristics2/</code>. One is <code>generated-recipes/</code> and the other is <code>user-recipes/</code>. Recipes will be automatically exported from AE2 into <code>generated-recipes/</code> on every start-up containing always the latest valid recipes. </p>
<blockquote>
You require file system permissions to generate the folders. Recipes will be loaded directly from AE2 if user has no permissions.
</blockquote>
<h2 id="recipe-modification">Recipe Modification</h2>
<p>You can modify the recipes by copying over the recipes from <code>generated-recipes/</code> into <code>user-recipes/</code>. You do <b>not</b> need to copy over all files, but the ones you will be changing. AE2 will prefer loading a user recipe if one would replace a generated recipe.</p>
<p>That way changed recipes by us are not overwriting your modified files.</p>
<h3 id="item-references">Item References</h3>
<p>In Minecraft each item is referenced by a namespace and a name, for example all of minecrafts items use the namespace <code>minecraft</code>. A glass block would be <code>minecraft:glass</code>.</p>
<p>The recipe system also exposes access to the oredictionary via a namespace, so you can use <code>oredictionary:glass</code> to use any type of glass.</p>
<h3 id="recipe-types">Recipe Types</h3>
<p>Different recipe types are there to interface with specific machines or mods. Use a <code>,</code> to add a new row to the recipe.</p>
<h4 id="shapeless">Shapeless</h4>
<ul>
<li>crafted in a minecraft crafting table</li>
<li>can take any shape as long as the inputs are correct</li>
<li>takes up to 9 items as input</li>
<li>outputs a single item as output, optionally with quantity</li>
<li>Example: <code>Log -> Planks</code> recipe</li>
<li>
AE2: <br />
<code>shapeless = minecraft:log -> 4 minecraft:planks</code>
</li>
</ul>
<h4 id="shaped">Shaped</h4>
<ul>
<li>crafted in a minecraft crafting table</li>
<li>requires the specific shape</li>
<li>takes up to 9 items as input</li>
<li>outputs a single item as output, optionally with quantity</li>
<li>Example: <code>8 Cobblestone -> Furnace</code> recipe</li>
<li>
AE2:
<pre>shaped =
minecraft:cobblestone minecraft:cobblestone minecraft:cobblestone,
minecraft:cobblestone _ minecraft:cobblestone,
minecraft:cobblestone minecraft:cobblestone minecraft:cobblestone
-> minecraft:furnace</pre>
</li>
</ul>
<h4 id="smelt">Smelt</h4>
<ul>
<li>items to be burned in furnaces</li>
<li>takes 1 item as input</li>
<li>takes 1 item as output, optionally with quantity</li>
<li>Example: <code>Log -> Charcoal</code> recipe</li>
<li>
AE2: <br />
<code>smelt = minecraft:log -> minecraft:coal:1</code>
</li>
</ul>
<h4 id="grind">Grind</h4>
<ul>
<li>items to be grinded in the grindstone</li>
<li>takes 1 item as input</li>
<li>takes 1 item as output, optionally with quantity</li>
<li>Example: <code>Gravel -> Flint</code> recipe</li>
<li>
AE2: <br />
<code>grind = minecraft:gravel -> minecraft:flint</code>
</li>
</ul>
<h4 id="grindfz">Grindfz</h4>
<p>Same as <code>grind</code> for Factorization Grinder</p>
<h4 id="mekcrusher">Mekcrusher</h4>
<p>Same as <code>grind</code> for Mekanism Crusher</p>
<h4 id="mekechamber">Mekechamber</h4>
<p>Same as <code>grind</code> for Mekanism Enrichment Chamber</p>
<h4 id="hccrusher">Hccrusher</h4>
<p>Same as <code>grind</code> for HydrauliCraft Crusher</p>
<h4 id="crusher">Crusher</h4>
<p>Same as <code>grind</code> for RailCraft Crusher</p>
<h4 id="macerator">Macerator</h4>
<p>Same as <code>grind</code> for IndustrialCraft Macerator</p>
<h4 id="pulverizer">Pulverizer</h4>
<p>Same as <code>grind</code> for Thermal Expansion Pulverizer</p>
<h4 id="inscribe">Inscribe</h4>
<ul>
<li>used in the AE2 Inscriber</li>
<li>takes 2 or 3 items as input, first item is the center item</li>
<li>takes 1 item as output, optionally with quantity</li>
<li>center item is consumed</li>
<li>
Example: duplicate logic processor plate <br />
<code>Iron Block + Logic Processor Plate -> Logic Processor Plate</code>
</li>
<li>
AE2:
<pre>inscribe =
minecraft:iron_block
appliedenergistics2:ItemMaterial.LogicProcessorPress
-> appliedenergistics2:ItemMaterial.LogicProcessorPress</pre>
</li>
</ul>
<h4 id="press">Press</h4>
<ul>
<li>used in the AE2 Inscriber</li>
<li>takes 2 or 3 items as input, first item is the center item</li>
<li>takes 1 item as output, optionally with quantity</li>
<li>all items are consumed</li>
<li>
Example: create logic processor <br />
<code>Redstone + logic processor print + silicon print -> logic processor</code>
</li>
<li>
AE2:
<pre>press =
minecraft:redstone
appliedenergistics2:ItemMaterial.LogicProcessorPrint
appliedenergistics2:ItemMaterial.SiliconPrint
-> appliedenergistics2:ItemMaterial.LogicProcessor</pre>
</li>
</ul>
<h3 id="recipe-function">Recipe Function</h3>
<p>Adds convenience for easier recipe management.</p>
<h4 id="alias">Alias</h4>
<ul>
<li>creates a shorthand for a longer value</li>
<li>
AE2: alias <code>appliedenergistics2</code> to <code>ae2</code><br />
<code>alias = ae2 -> appliedenergistics2</code>
</li>
<li><code>appliedenergistics2:ItemMaterial.LogicProcessorPrint</code> could be aliased to <code>ae2:ItemMaterial.LogicProcessorPrint</code></li>
</ul>
<h4 id="ore">Ore</h4>
<ul>
<li>lets you add items into an ore dictionary value.</li>
<li>
AE2: add minecraft wool to OreDictionary as <code>blockWool</code><br />
<code>ore = minecraft:wool:* -> blockWool</code>
</li>
<li>oredictioned items can be accessed as <code>oredictionary:blockWool</code> for example</li>
</ul>
<h4 id="group">Group</h4>
<ul>
<li>lets you create a item group for 1 or more inputs</li>
<li>
Example: define a common group for both different AE2 interfaces<br />
<code>Block Interface + Part Interface = Interface</code>
</li>
<li>
AE2: <br />
<code>group = ae2:BlockInterface ae2:ItemPart.Interface -> interface</code>
</li>
<li>
This also enables shortening annoying names for example<br />
<code>group = ae2:ToolNetherQuartzWrench -> wrench</code>
</li>
</ul>
<h4 id="import">Import</h4>
<ul>
<li>lets you load an additional recipe file</li>
<li>this works with subdirectories, but the path needs to be always a relative path to the root recipe directory</li>
<li>
AE2: import all recipes for stairs<br />
<code>import = stairs.recipe</code>
</li>
<li>Any knowledge through <code>alias, ore, group</code> are carried over to the imported file</li>
</ul>
<!--<pre>-->
<!--Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.-->
<!--</pre>-->
<!--<blockquote>-->
<!--A readme (or read me) fdsile contains information about other files in a directory or archive and is very commonly distributed with computer software.-->
<!--</blockquote>-->
</div>
</div>
</body>
</html>
@@ -0,0 +1,2 @@
alias=mc -> minecraft
alias=ae2 -> appliedenergistics2
@@ -0,0 +1,8 @@
shaped=
ae2:BlockQuartz,
ae2:BlockQuartz
-> 2 ae2:BlockQuartzPillar
shaped=
ae2:BlockQuartz ae2:BlockQuartz
-> 2 ae2:BlockQuartzChiseled
@@ -0,0 +1,30 @@
# Raw Storage Blocks
shaped=
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz,
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz
-> ae2:BlockQuartz
shaped=
oredictionary:crystalFluix oredictionary:crystalFluix,
oredictionary:crystalFluix oredictionary:crystalFluix
-> ae2:BlockFluix
# Pure Storage Blocks
shaped=
ae2:ItemMaterial.PurifiedNetherQuartzCrystal ae2:ItemMaterial.PurifiedNetherQuartzCrystal ae2:ItemMaterial.PurifiedNetherQuartzCrystal,
ae2:ItemMaterial.PurifiedNetherQuartzCrystal _ ae2:ItemMaterial.PurifiedNetherQuartzCrystal,
ae2:ItemMaterial.PurifiedNetherQuartzCrystal ae2:ItemMaterial.PurifiedNetherQuartzCrystal ae2:ItemMaterial.PurifiedNetherQuartzCrystal
-> mc:quartz_block
shaped=
ae2:ItemMaterial.PurifiedCertusQuartzCrystal ae2:ItemMaterial.PurifiedCertusQuartzCrystal ae2:ItemMaterial.PurifiedCertusQuartzCrystal,
ae2:ItemMaterial.PurifiedCertusQuartzCrystal _ ae2:ItemMaterial.PurifiedCertusQuartzCrystal,
ae2:ItemMaterial.PurifiedCertusQuartzCrystal ae2:ItemMaterial.PurifiedCertusQuartzCrystal ae2:ItemMaterial.PurifiedCertusQuartzCrystal
-> ae2:BlockQuartz
shaped=
ae2:ItemMaterial.PurifiedFluixCrystal ae2:ItemMaterial.PurifiedFluixCrystal ae2:ItemMaterial.PurifiedFluixCrystal,
ae2:ItemMaterial.PurifiedFluixCrystal _ ae2:ItemMaterial.PurifiedFluixCrystal,
ae2:ItemMaterial.PurifiedFluixCrystal ae2:ItemMaterial.PurifiedFluixCrystal ae2:ItemMaterial.PurifiedFluixCrystal
-> ae2:BlockFluix
@@ -0,0 +1,7 @@
shaped=
ae2:ItemMaterial.CertusQuartzCrystalCharged mc:iron_ingot
-> 2 ae2:BlockQuartzTorch
shaped=
netherCrystal mc:iron_ingot
-> ae2:BlockLightDetector
@@ -0,0 +1,7 @@
import=decorative/certus.recipe
import=decorative/crystals.recipe
import=decorative/fixtures.recipe
import=decorative/quartzglass.recipe
import=decorative/skystone.recipe
import=decorative/slabs.recipe
import=decorative/stairs.recipe
@@ -0,0 +1,9 @@
shaped=
dustQuartz glass dustQuartz,
glass dustQuartz glass,
dustQuartz glass dustQuartz
-> 4 ae2:BlockQuartzGlass
shaped=
mc:glowstone_dust ae2:BlockQuartzGlass mc:glowstone_dust
-> ae2:BlockQuartzLamp
@@ -0,0 +1,11 @@
smelt=
ae2:BlockSkyStone -> ae2:BlockSkyStone:1
shapeless=
ae2:BlockSkyStone:1 -> ae2:BlockSkyStone:2
shapeless=
ae2:BlockSkyStone:2 -> ae2:BlockSkyStone:3
shapeless=
ae2:BlockSkyStone:3 -> ae2:BlockSkyStone:1
@@ -0,0 +1,31 @@
shaped=
ae2:BlockQuartzChiseled ae2:BlockQuartzChiseled ae2:BlockQuartzChiseled
-> 6 ae2:ChiseledQuartzSlabBlock
shaped=
ae2:BlockFluix ae2:BlockFluix ae2:BlockFluix
-> 6 ae2:FluixSlabBlock
shaped=
ae2:BlockQuartzPillar ae2:BlockQuartzPillar ae2:BlockQuartzPillar
-> 6 ae2:QuartzPillarSlabBlock
shaped=
ae2:BlockQuartz ae2:BlockQuartz ae2:BlockQuartz
-> 6 ae2:QuartzSlabBlock
shaped=
ae2:BlockSkyStone ae2:BlockSkyStone ae2:BlockSkyStone
-> 6 ae2:SkyStoneSlabBlock
shaped=
ae2:BlockSkyStone:1 ae2:BlockSkyStone:1 ae2:BlockSkyStone:1
-> 6 ae2:SkyStoneBlockSlabBlock
shaped=
ae2:BlockSkyStone:2 ae2:BlockSkyStone:2 ae2:BlockSkyStone:2
-> 6 ae2:SkyStoneBrickSlabBlock
shaped=
ae2:BlockSkyStone:3 ae2:BlockSkyStone:3 ae2:BlockSkyStone:3
-> 6 ae2:SkyStoneSmallBrickSlabBlock
@@ -0,0 +1,47 @@
shaped=
ae2:BlockQuartzChiseled _ _,
ae2:BlockQuartzChiseled ae2:BlockQuartzChiseled _,
ae2:BlockQuartzChiseled ae2:BlockQuartzChiseled ae2:BlockQuartzChiseled
-> 4 ae2:ChiseledQuartzStairBlock
shaped=
ae2:BlockFluix _ _,
ae2:BlockFluix ae2:BlockFluix _,
ae2:BlockFluix ae2:BlockFluix ae2:BlockFluix
-> 4 ae2:FluixStairBlock
shaped=
ae2:BlockQuartzPillar _ _,
ae2:BlockQuartzPillar ae2:BlockQuartzPillar _,
ae2:BlockQuartzPillar ae2:BlockQuartzPillar ae2:BlockQuartzPillar
-> 4 ae2:QuartzPillarStairBlock
shaped=
ae2:BlockQuartz _ _,
ae2:BlockQuartz ae2:BlockQuartz _,
ae2:BlockQuartz ae2:BlockQuartz ae2:BlockQuartz
-> 4 ae2:QuartzStairBlock
shaped=
ae2:BlockSkyStone _ _,
ae2:BlockSkyStone ae2:BlockSkyStone _,
ae2:BlockSkyStone ae2:BlockSkyStone ae2:BlockSkyStone
-> 4 ae2:SkyStoneStairBlock
shaped=
ae2:BlockSkyStone:1 _ _,
ae2:BlockSkyStone:1 ae2:BlockSkyStone:1 _,
ae2:BlockSkyStone:1 ae2:BlockSkyStone:1 ae2:BlockSkyStone:1
-> 4 ae2:SkyStoneBlockStairBlock
shaped=
ae2:BlockSkyStone:2 _ _,
ae2:BlockSkyStone:2 ae2:BlockSkyStone:2 _,
ae2:BlockSkyStone:2 ae2:BlockSkyStone:2 ae2:BlockSkyStone:2
-> 4 ae2:SkyStoneBrickStairBlock
shaped=
ae2:BlockSkyStone:3 _ _,
ae2:BlockSkyStone:3 ae2:BlockSkyStone:3 _,
ae2:BlockSkyStone:3 ae2:BlockSkyStone:3 ae2:BlockSkyStone:3
-> 4 ae2:SkyStoneSmallBrickStairBlock
@@ -0,0 +1,21 @@
group= oredictionary:itemIlluminatedPanel -> monitor
group= ae2:BlockInterface ae2:ItemPart.Interface -> interface
group= ae2:ToolCertusQuartzCuttingKnife:* ae2:ToolNetherQuartzCuttingKnife:* -> knife
group= ae2:ToolCertusQuartzWrench ae2:ToolNetherQuartzWrench -> wrench
group= ae2:CableGlass ae2:CableCovered ae2:CableSmart -> cable
group= ae2:CableDense -> densecable
group= mc:iron_ingot oredictionary:ingotCopper oredictionary:ingotTin oredictionary:ingotSilver oredictionary:ingotLead oredictionary:ingotBronze oredictionary:ingotBrass oredictionary:ingotNickel oredictionary:ingotInvar oredictionary:ingotAluminium -> metalIngots
group= oredictionary:dustEnder oredictionary:dustEnderPearl -> dustEnder
group=oredictionary:blockGlass oredictionary:glass mc:glass -> glass
group=oredictionary:wool mc:wool:* -> wool
group=oredictionary:crystalCertusQuartz oredictionary:crystalNetherQuartz ae2:ItemMaterial.CertusQuartzCrystalCharged -> crystalQuartz
group=oredictionary:dustCertusQuartz oredictionary:dustNetherQuartz -> dustQuartz
group=oredictionary:crystalCertusQuartz ae2:ItemMaterial.CertusQuartzCrystalCharged ae2:ItemMaterial.PurifiedCertusQuartzCrystal -> certusCrystal
group=oredictionary:crystalNetherQuartz ae2:ItemMaterial.PurifiedNetherQuartzCrystal -> netherCrystal
group=oredictionary:crystalFluix ae2:ItemMaterial.PurifiedFluixCrystal -> fluixCrystal
@@ -0,0 +1,21 @@
# Crash on Issues
crash=false
# Hides Exceptions and just display messages.
exceptions=false
# Error on Missing Items ( default is no because AE2 allows you to enable/disable items without modifying recipes. )
erroronmissing=true
# Important, keep in this order
import=aliases.recipe
import=oredict.recipe
import=groups.recipe
# All actual recipes
import=decorative/index.recipe
import=materials/index.recipe
import=misc/index.recipe
import=network/index.recipe
import=processing/index.recipe
import=tools/index.recipe
@@ -0,0 +1,35 @@
shaped=
oredictionary:ingotGold oredictionary:ingotIron _,
oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
oredictionary:ingotGold oredictionary:ingotIron _
-> 2 ae2:ItemMaterial.BasicCard
shaped=
oredictionary:gemDiamond oredictionary:ingotIron _,
oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
oredictionary:gemDiamond oredictionary:ingotIron _
-> 2 ae2:ItemMaterial.AdvCard
shapeless=
ae2:ItemMaterial.BasicCard certusCrystal
-> ae2:ItemMaterial.CardCapacity
shapeless=
ae2:ItemMaterial.BasicCard mc:redstone_torch
-> ae2:ItemMaterial.CardRedstone
shapeless=
ae2:ItemMaterial.AdvCard wool
-> ae2:ItemMaterial.CardFuzzy
shapeless=
ae2:ItemMaterial.AdvCard mc:redstone_torch
-> ae2:ItemMaterial.CardInverter
shapeless=
ae2:ItemMaterial.AdvCard fluixCrystal
-> ae2:ItemMaterial.CardSpeed
shapeless=
ae2:ItemMaterial.BasicCard oredictionary:craftingTableWood
-> ae2:ItemMaterial.CardCrafting
@@ -0,0 +1,15 @@
inscribe=
oredictionary:ingotGold ae2:ItemMaterial.LogicProcessorPress
-> ae2:ItemMaterial.LogicProcessorPrint
inscribe=
ae2:ItemMaterial.PurifiedCertusQuartzCrystal ae2:ItemMaterial.CalcProcessorPress
-> ae2:ItemMaterial.CalcProcessorPrint
inscribe=
oredictionary:gemDiamond ae2:ItemMaterial.EngProcessorPress
-> ae2:ItemMaterial.EngProcessorPrint
inscribe=
oredictionary:itemSilicon ae2:ItemMaterial.SiliconPress
-> ae2:ItemMaterial.SiliconPrint
@@ -0,0 +1,7 @@
shaped=
netherCrystal oreDictionary:dustFluix ae2:ItemMaterial.LogicProcessor
-> 2 ae2:ItemMaterial.AnnihilationCore
shaped=
certusCrystal oreDictionary:dustFluix ae2:ItemMaterial.LogicProcessor
-> 2 ae2:ItemMaterial.FormationCore
@@ -0,0 +1,5 @@
import=materials/cards.recipe
import=materials/circuits.recipe
import=materials/cores.recipe
import=materials/presses.recipe
import=materials/processors.recipe
@@ -0,0 +1,15 @@
inscribe=
oredictionary:blockIron ae2:ItemMaterial.LogicProcessorPress
-> ae2:ItemMaterial.LogicProcessorPress
inscribe=
oredictionary:blockIron ae2:ItemMaterial.CalcProcessorPress
-> ae2:ItemMaterial.CalcProcessorPress
inscribe=
oredictionary:blockIron ae2:ItemMaterial.EngProcessorPress
-> ae2:ItemMaterial.EngProcessorPress
inscribe=
oredictionary:blockIron ae2:ItemMaterial.SiliconPress
-> ae2:ItemMaterial.SiliconPress
@@ -0,0 +1,11 @@
press=
oredictionary:dustRedstone ae2:ItemMaterial.LogicProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.LogicProcessor
press=
oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.CalcProcessor
press=
oredictionary:dustRedstone ae2:ItemMaterial.EngProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.EngProcessor
@@ -0,0 +1,11 @@
shaped=
ae2:BlockSkyStone ae2:BlockSkyStone ae2:BlockSkyStone,
ae2:BlockSkyStone _ ae2:BlockSkyStone,
ae2:BlockSkyStone ae2:BlockSkyStone ae2:BlockSkyStone
-> ae2:BlockSkyChest
shaped=
ae2:BlockSkyStone:1 ae2:BlockSkyStone:1 ae2:BlockSkyStone:1,
ae2:BlockSkyStone:1 _ ae2:BlockSkyStone:1,
ae2:BlockSkyStone:1 ae2:BlockSkyStone:1 ae2:BlockSkyStone:1
-> ae2:BlockSkyChest:1
@@ -0,0 +1,15 @@
shapeless=
ae2:BlockQuartz
-> 4 ae2:ItemMaterial.CertusQuartzCrystal
shapeless=
ae2:BlockQuartzPillar
-> 4 ae2:ItemMaterial.CertusQuartzCrystal
shapeless=
ae2:BlockQuartzChiseled
-> 4 ae2:ItemMaterial.CertusQuartzCrystal
shapeless=
ae2:BlockFluix
-> 4 ae2:ItemMaterial.FluixCrystal
@@ -0,0 +1,5 @@
shaped=
oredictionary:dustFluix fluixCrystal oredictionary:dustFluix,
fluixCrystal mc:ender_pearl fluixCrystal,
oredictionary:dustFluix fluixCrystal oredictionary:dustFluix
-> ae2:ItemMaterial.FluixPearl
@@ -0,0 +1,17 @@
shaped=
_ oredictionary:stickWood _,
oredictionary:stickWood _ oredictionary:stickWood,
_ oredictionary:stickWood _
-> ae2:ItemMaterial.WoodenGear
shaped=
oredictionary:stickWood oredictionary:stickWood oredictionary:stickWood,
_ _ oredictionary:stickWood,
_ _ oredictionary:stickWood
-> ae2:BlockCrank
shaped=
oredictionary:stone oredictionary:gearWood oredictionary:stone,
crystalQuartz oredictionary:stone crystalQuartz,
oredictionary:cobblestone crystalQuartz oredictionary:cobblestone
-> ae2:BlockGrinder
@@ -0,0 +1,8 @@
import=misc/chests.recipe
import=misc/deconstruction.recipe
import=misc/fluixpearl.recipe
import=misc/grindstone.recipe
import=misc/meteors.recipe
import=misc/tinytnt.recipe
import=misc/seeds.recipe
import=misc/vanilla.recipe
@@ -0,0 +1,5 @@
shaped=
_ oredictionary:ingotIron _,
oredictionary:ingotIron ae2:ItemMaterial.CertusQuartzCrystalCharged oredictionary:ingotIron,
_ oredictionary:ingotIron _
-> ae2:BlockSkyCompass
@@ -0,0 +1,3 @@
shapeless= oredictionary:sand oredictionary:dustNetherQuartz -> 2 ae2:ItemCrystalSeed.Nether
shapeless= oredictionary:sand oredictionary:dustCertusQuartz -> 2 ae2:ItemCrystalSeed.Certus
shapeless= oredictionary:sand oredictionary:dustFluix -> 2 ae2:ItemCrystalSeed.Fluix
@@ -0,0 +1,4 @@
shaped=
dustQuartz mc:gunpowder,
mc:gunpowder dustQuartz
-> ae2:BlockTinyTNT
@@ -0,0 +1,21 @@
shaped=
glass glass glass,
netherCrystal netherCrystal netherCrystal,
oredictionary:slabWood oredictionary:slabWood oredictionary:slabWood
-> mc:daylight_detector
shaped=
_ mc:redstone_torch _,
mc:redstone_torch netherCrystal mc:redstone_torch,
oredictionary:stone oredictionary:stone oredictionary:stone
-> mc:comparator
shaped=
ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget,
ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget,
ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget ae2:ItemMaterial.IronNugget
-> mc:iron_ingot
shapeless=
oredictionary:ingotIron
-> 9 ae2:ItemMaterial.IronNugget
@@ -0,0 +1,5 @@
shaped=
wool ae2:ItemMaterial.CalcProcessor wool,
oredictionary:ingotIron oredictionary:chestWood oredictionary:ingotIron,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:BlockCellWorkbench
@@ -0,0 +1,5 @@
shaped=
ae2:BlockSkyStone:1 ae2:ItemMaterial.PurifiedFluixCrystal ae2:BlockSkyStone:1,
ae2:ItemMaterial.PurifiedFluixCrystal ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.PurifiedFluixCrystal,
ae2:BlockSkyStone:1 ae2:ItemMaterial.PurifiedFluixCrystal ae2:BlockSkyStone:1
-> ae2:BlockController
@@ -0,0 +1,11 @@
shaped=
oredictionary:ingotIron cable oredictionary:ingotIron,
ae2:BlockQuartzGlass ae2:BlockFluix ae2:BlockQuartzGlass,
oredictionary:ingotIron cable oredictionary:ingotIron
-> ae2:BlockQuartzGrowthAccelerator
shaped=
oredictionary:ingotIron fluixCrystal oredictionary:ingotIron,
oredictionary:ingotIron _ _,
oredictionary:ingotIron fluixCrystal oredictionary:ingotIron
-> ae2:BlockCharger
@@ -0,0 +1,23 @@
shaped=
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron,
oredictionary:ingotIron mc:furnace oredictionary:ingotIron,
oredictionary:ingotIron ae2:BlockEnergyAcceptor oredictionary:ingotIron
-> ae2:BlockVibrationChamber
shaped=
oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron,
ae2:BlockQuartzGlass fluixCrystal ae2:BlockQuartzGlass,
oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron
-> ae2:BlockEnergyAcceptor
shaped=
certusCrystal oredictionary:dustFluix certusCrystal,
oredictionary:dustFluix ae2:BlockQuartzGlass oredictionary:dustFluix,
certusCrystal oredictionary:dustFluix certusCrystal
-> ae2:BlockEnergyCell
shaped=
ae2:BlockEnergyCell ae2:BlockEnergyCell ae2:BlockEnergyCell,
ae2:BlockEnergyCell ae2:ItemMaterial.CalcProcessor ae2:BlockEnergyCell,
ae2:BlockEnergyCell ae2:BlockEnergyCell ae2:BlockEnergyCell
-> ae2:BlockDenseEnergyCell
@@ -0,0 +1,11 @@
import=network/blocks/cellworkbench.recipe
import=network/blocks/controller.recipe
import=network/blocks/crystal-processing.recipe
import=network/blocks/energy.recipe
import=network/blocks/inscribers.recipe
import=network/blocks/interfaces.recipe
import=network/blocks/io.recipe
import=network/blocks/quantum.recipe
import=network/blocks/security.recipe
import=network/blocks/spatial-io.recipe
import=network/blocks/storage.recipe
@@ -0,0 +1,5 @@
shaped=
oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron,
fluixCrystal _ oredictionary:ingotIron,
oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron
-> ae2:BlockInscriber
@@ -0,0 +1,13 @@
shapeless=
ae2:ItemPart.Interface
-> ae2:BlockInterface
shapeless=
ae2:BlockInterface
-> ae2:ItemPart.Interface
shaped=
oredictionary:ingotIron glass oredictionary:ingotIron,
ae2:ItemMaterial.AnnihilationCore _ ae2:ItemMaterial.FormationCore,
oredictionary:ingotIron glass oredictionary:ingotIron
-> ae2:BlockInterface
@@ -0,0 +1,11 @@
shaped=
oredictionary:ingotIron glass oredictionary:ingotIron,
glass oredictionary:dustFluix glass,
oredictionary:ingotIron glass oredictionary:ingotIron
-> ae2:BlockCondenser
shaped=
glass glass glass,
ae2:BlockDrive cable ae2:BlockDrive,
oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron
-> ae2:BlockIOPort
@@ -0,0 +1,13 @@
# Quantum Link Chamber
shaped=
ae2:BlockQuartzGlass ae2:ItemMaterial.FluixPearl ae2:BlockQuartzGlass,
ae2:ItemMaterial.FluixPearl _ ae2:ItemMaterial.FluixPearl,
ae2:BlockQuartzGlass ae2:ItemMaterial.FluixPearl ae2:BlockQuartzGlass,
-> ae2:BlockQuantumLinkChamber
# Quantum Ring
shaped=
oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron,
ae2:ItemMaterial.EngProcessor ae2:BlockEnergyCell densecable,
oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron,
-> ae2:BlockQuantumRing
@@ -0,0 +1,5 @@
shaped=
oredictionary:ingotIron ae2:BlockChest oredictionary:ingotIron,
cable ae2:ItemMaterial.Cell16kPart cable,
oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockSecurity
@@ -0,0 +1,11 @@
shaped=
glass glass glass,
cable ae2:BlockIOPort cable,
oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockSpatialIOPort
shaped=
ae2:BlockQuartzGlass cable ae2:BlockQuartzGlass,
oredictionary:dustFluix fluixCrystal oredictionary:dustFluix,
ae2:BlockQuartzGlass cable ae2:BlockQuartzGlass
-> ae2:BlockSpatialPylon
@@ -0,0 +1,11 @@
shaped=
glass ae2:ItemPart.Terminal glass,
cable _ cable,
oredictionary:ingotIron fluixCrystal oredictionary:ingotIron,
-> ae2:BlockChest
shaped=
oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron,
cable _ cable,
oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockDrive
@@ -0,0 +1,104 @@
shapeless=
ae2:CableGlass
wool
-> ae2:CableCovered.Fluix
shapeless=
ae2:CableCovered mc:water_bucket
-> ae2:CableCovered.Fluix
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeWhite ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.White
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeBlack ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Black
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeRed ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Red
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeGreen ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Green
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeBrown ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Brown
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeBlue ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Blue
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyePurple ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Purple
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeCyan ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Cyan
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeLightGray ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.LightGray
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeGray ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Gray
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyePink ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Pink
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeLime ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Lime
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeYellow ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Yellow
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeLightBlue ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.LightBlue
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeMagenta ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Magenta
shaped=
ae2:CableCovered ae2:CableCovered ae2:CableCovered,
ae2:CableCovered oredictionary:dyeOrange ae2:CableCovered,
ae2:CableCovered ae2:CableCovered ae2:CableCovered
-> 8 ae2:CableCovered.Orange
@@ -0,0 +1,104 @@
shapeless=
ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered
oredictionary:dustRedstone oredictionary:dustGlowstone
-> ae2:CableDense.Fluix
shapeless=
ae2:CableDense mc:water_bucket
-> ae2:CableDense.Fluix
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeWhite ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.White
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeBlack ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Black
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeRed ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Red
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeGreen ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Green
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeBrown ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Brown
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeBlue ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Blue
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyePurple ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Purple
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeCyan ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Cyan
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeLightGray ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.LightGray
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeGray ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Gray
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyePink ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Pink
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeLime ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Lime
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeYellow ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Yellow
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeLightBlue ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.LightBlue
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeMagenta ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Magenta
shaped=
ae2:CableDense ae2:CableDense ae2:CableDense,
ae2:CableDense oredictionary:dyeOrange ae2:CableDense,
ae2:CableDense ae2:CableDense ae2:CableDense
-> 8 ae2:CableDense.Orange
@@ -0,0 +1,103 @@
shapeless=
ae2:ItemPart.QuartzFiber fluixCrystal fluixCrystal
-> 4 ae2:CableGlass.Fluix
shapeless=
ae2:CableGlass mc:water_bucket
-> ae2:CableGlass.Fluix
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeWhite ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.White
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeBlack ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Black
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeRed ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Red
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeGreen ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Green
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeBrown ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Brown
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeBlue ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Blue
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyePurple ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Purple
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeCyan ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Cyan
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeLightGray ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.LightGray
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeGray ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Gray
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyePink ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Pink
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeLime ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Lime
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeYellow ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Yellow
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeLightBlue ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.LightBlue
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeMagenta ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Magenta
shaped=
ae2:CableGlass ae2:CableGlass ae2:CableGlass,
ae2:CableGlass oredictionary:dyeOrange ae2:CableGlass,
ae2:CableGlass ae2:CableGlass ae2:CableGlass
-> 8 ae2:CableGlass.Orange
@@ -0,0 +1,4 @@
import=network/cables/covered.recipe
import=network/cables/dense.recipe
import=network/cables/glass.recipe
import=network/cables/smart.recipe
@@ -0,0 +1,104 @@
shapeless=
ae2:CableCovered
oredictionary:dustRedstone oredictionary:dustGlowstone
-> ae2:CableSmart.Fluix
shapeless=
ae2:CableSmart mc:water_bucket
-> ae2:CableSmart.Fluix
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeWhite ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.White
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeBlack ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Black
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeRed ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Red
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeGreen ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Green
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeBrown ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Brown
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeBlue ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Blue
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyePurple ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Purple
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeCyan ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Cyan
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeLightGray ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.LightGray
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeGray ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Gray
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyePink ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Pink
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeLime ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Lime
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeYellow ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Yellow
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeLightBlue ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.LightBlue
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeMagenta ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Magenta
shaped=
ae2:CableSmart ae2:CableSmart ae2:CableSmart,
ae2:CableSmart oredictionary:dyeOrange ae2:CableSmart,
ae2:CableSmart ae2:CableSmart ae2:CableSmart
-> 8 ae2:CableSmart.Orange
@@ -0,0 +1,5 @@
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone _ oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemMaterial.EmptyStorageCell
@@ -0,0 +1,6 @@
import=network/cells/empty.recipe
import=network/cells/spatial-components.recipe
import=network/cells/spatial.recipe
import=network/cells/storage-components.recipe
import=network/cells/storage.recipe
import=network/cells/view.recipe
@@ -0,0 +1,17 @@
shaped=
oredictionary:dustGlowstone ae2:ItemMaterial.FluixPearl oredictionary:dustGlowstone,
ae2:ItemMaterial.FluixPearl ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.FluixPearl,
oredictionary:dustGlowstone ae2:ItemMaterial.FluixPearl oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell2SpatialPart
shaped=
oredictionary:dustGlowstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell2SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell2SpatialPart,
oredictionary:dustGlowstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell16SpatialPart
shaped=
oredictionary:dustGlowstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell16SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell16SpatialPart,
oredictionary:dustGlowstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell128SpatialPart
@@ -0,0 +1,26 @@
shapeless=
ae2:ItemMaterial.Cell2SpatialPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemSpatialStorageCell.2Cubed
shapeless=
ae2:ItemMaterial.Cell16SpatialPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemSpatialStorageCell.16Cubed
shapeless=
ae2:ItemMaterial.Cell128SpatialPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemSpatialStorageCell.128Cubed
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.2Cubed
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.16Cubed
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell128SpatialPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.128Cubed
@@ -0,0 +1,23 @@
shaped=
oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone,
certusCrystal ae2:ItemMaterial.LogicProcessor certusCrystal,
oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone
-> ae2:ItemMaterial.Cell1kPart
shaped=
oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:dustRedstone,
ae2:ItemMaterial.Cell1kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell1kPart,
oredictionary:dustRedstone ae2:ItemMaterial.Cell1kPart oredictionary:dustRedstone
-> ae2:ItemMaterial.Cell4kPart
shaped=
oredictionary:dustGlowstone ae2:ItemMaterial.EngProcessor oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell4kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell4kPart,
oredictionary:dustGlowstone ae2:ItemMaterial.Cell4kPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell16kPart
shaped=
oredictionary:dustGlowstone ae2:ItemMaterial.EngProcessor oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell16kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell16kPart,
oredictionary:dustGlowstone ae2:ItemMaterial.Cell16kPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell64kPart
@@ -0,0 +1,35 @@
shapeless=
ae2:ItemMaterial.Cell1kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.1k
shapeless=
ae2:ItemMaterial.Cell4kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.4k
shapeless=
ae2:ItemMaterial.Cell16kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.16k
shapeless=
ae2:ItemMaterial.Cell64kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.64k
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell1kPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.1k
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell4kPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.4k
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell16kPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.16k
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone ae2:ItemMaterial.Cell64kPart oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.64k
@@ -0,0 +1,8 @@
shapeless=
certusCrystal ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemViewCell
shaped=
ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemViewCell
@@ -0,0 +1,5 @@
shaped=
oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron,
ae2:ItemMaterial.AnnihilationCore oredictionary:craftingTableWood ae2:ItemMaterial.FormationCore,
oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron
-> ae2:BlockMolecularAssembler
@@ -0,0 +1,37 @@
shaped=
oredictionary:ingotIron ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
cable ae2:ItemMaterial.LogicProcessor cable,
oredictionary:ingotIron ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron
-> ae2:BlockCraftingUnit:0
# co processor
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemMaterial.EngProcessor
-> ae2:BlockCraftingUnit:1
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemPart.StorageMonitor
-> ae2:BlockCraftingMonitor
# various storage sizes
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemMaterial.Cell1kPart
-> ae2:BlockCraftingStorage:0
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemMaterial.Cell4kPart
-> ae2:BlockCraftingStorage:1
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemMaterial.Cell16kPart
-> ae2:BlockCraftingStorage:2
shapeless=
ae2:BlockCraftingUnit:0
ae2:ItemMaterial.Cell64kPart
-> ae2:BlockCraftingStorage:3
@@ -0,0 +1,3 @@
import=network/crafting/assembler.recipe
import=network/crafting/cpu.recipe
import=network/crafting/patterns.recipe
@@ -0,0 +1,5 @@
shaped=
ae2:BlockQuartzGlass oredictionary:dustGlowstone ae2:BlockQuartzGlass,
oredictionary:dustGlowstone certusCrystal oredictionary:dustGlowstone,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemMaterial.BlankPattern
@@ -0,0 +1,6 @@
import=network/blocks/index.recipe
import=network/cables/index.recipe
import=network/cells/index.recipe
import=network/crafting/index.recipe
import=network/parts/index.recipe
import=network/wireless.recipe
@@ -0,0 +1,3 @@
shapeless=
metalIngots knife
-> 3 ae2:ItemPart.CableAnchor
@@ -0,0 +1,3 @@
shapeless=
ae2:ItemMaterial.CalcProcessor mc:redstone_torch
-> ae2:ItemPart.LevelEmitter
@@ -0,0 +1,10 @@
import=network/parts/cable-anchor.recipe
import=network/parts/emitters.recipe
import=network/parts/io-buses.recipe
import=network/parts/monitors.recipe
import=network/parts/panels.recipe
import=network/parts/planes.recipe
import=network/parts/quartz-fiber.recipe
import=network/parts/terminals.recipe
import=network/parts/toggle-buses.recipe
import=network/parts/tunnels.recipe
@@ -0,0 +1,13 @@
shaped=
oredictionary:ingotIron ae2:ItemMaterial.FormationCore oredictionary:ingotIron,
_ mc:piston _
-> ae2:ItemPart.ExportBus
shaped=
_ ae2:ItemMaterial.AnnihilationCore _,
oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron
-> ae2:ItemPart.ImportBus
shapeless=
interface mc:sticky_piston mc:piston
-> ae2:ItemPart.StorageBus
@@ -0,0 +1,7 @@
shapeless=
ae2:ItemPart.LevelEmitter monitor
-> ae2:ItemPart.StorageMonitor
shapeless=
ae2:ItemMaterial.AnnihilationCore ae2:ItemPart.StorageMonitor ae2:ItemMaterial.FormationCore
-> ae2:ItemPart.ConversionMonitor
@@ -0,0 +1,17 @@
shaped=
_ oredictionary:dustGlowstone ae2:BlockQuartzGlass,
oredictionary:ingotIron oredictionary:dustRedstone ae2:BlockQuartzGlass,
_ oredictionary:dustGlowstone ae2:BlockQuartzGlass
-> 3 ae2:ItemPart.SemiDarkMonitor
shapeless=
ae2:ItemPart.DarkMonitor
-> ae2:ItemPart.SemiDarkMonitor
shapeless=
ae2:ItemPart.SemiDarkMonitor
-> ae2:ItemPart.Monitor
shapeless=
ae2:ItemPart.Monitor
-> ae2:ItemPart.DarkMonitor
@@ -0,0 +1,25 @@
shaped=
fluixCrystal fluixCrystal fluixCrystal,
oredictionary:ingotIron ae2:ItemMaterial.FormationCore oredictionary:ingotIron
-> ae2:ItemPart.FormationPlane
shaped=
fluixCrystal fluixCrystal fluixCrystal,
oredictionary:ingotIron ae2:ItemMaterial.AnnihilationCore oredictionary:ingotIron
-> ae2:ItemPart.AnnihilationPlane
shaped=
oredictionary:ingotIron fluixCrystal,
ae2:ItemMaterial.AnnihilationCore fluixCrystal,
oredictionary:ingotIron fluixCrystal
-> ae2:ItemPart.AnnihilationPlane
shaped=
oredictionary:ingotIron fluixCrystal,
ae2:ItemMaterial.FormationCore fluixCrystal,
oredictionary:ingotIron fluixCrystal
-> ae2:ItemPart.FormationPlane
shapeless=
ae2:ItemPart.AnnihilationPlane ae2:ItemMaterial.FluixPearl
-> ae2:ItemPart.IdentityAnnihilationPlane
@@ -0,0 +1,5 @@
shaped=
glass glass glass,
dustQuartz dustQuartz dustQuartz,
glass glass glass
-> 3 ae2:ItemPart.QuartzFiber
@@ -0,0 +1,15 @@
shapeless=
monitor ae2:ItemMaterial.FormationCore ae2:ItemMaterial.AnnihilationCore ae2:ItemMaterial.LogicProcessor
-> ae2:ItemPart.Terminal
shapeless=
ae2:ItemPart.Terminal oredictionary:craftingTableWood ae2:ItemMaterial.CalcProcessor
-> ae2:ItemPart.CraftingTerminal
shapeless=
monitor interface ae2:ItemMaterial.EngProcessor
-> ae2:ItemPart.InterfaceTerminal
shapeless=
ae2:ItemPart.CraftingTerminal ae2:ItemMaterial.EngProcessor
-> ae2:ItemPart.PatternTerminal
@@ -0,0 +1,13 @@
shaped=
_ oredictionary:dustRedstone _,
cable mc:lever cable,
_ oredictionary:dustRedstone _
-> ae2:ItemPart.ToggleBus
shapeless=
ae2:ItemPart.ToggleBus
-> ae2:ItemPart.InvertedToggleBus
shapeless=
ae2:ItemPart.InvertedToggleBus
-> ae2:ItemPart.ToggleBus
@@ -0,0 +1,5 @@
shaped=
_ oredictionary:ingotIron _,
oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron,
fluixCrystal fluixCrystal fluixCrystal
-> ae2:ItemPart.P2PTunnelME
@@ -0,0 +1,22 @@
shaped=
_ ae2:ItemMaterial.FluixPearl _,
oredictionary:ingotIron ae2:ItemPart.QuartzFiber oredictionary:ingotIron,
_ oredictionary:ingotIron _
-> ae2:ItemMaterial.Wireless
shaped=
ae2:ItemMaterial.Wireless,
ae2:ItemMaterial.CalcProcessor,
cable
-> ae2:BlockWireless
shaped=
ae2:ItemMaterial.Wireless,
ae2:ItemPart.Terminal,
ae2:BlockDenseEnergyCell
-> ae2:ToolWirelessTerminal
shaped=
oredictionary:dustFluix certusCrystal dustEnder,
oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron,
-> 2 ae2:ItemMaterial.WirelessBooster
@@ -0,0 +1,31 @@
# Forge Ore Dictionary
# logWood, slabWood, stairWood, treeSapling, treeLeaves,
# oreGold, oreIron, oreLapis, oreDiamond, oreRedstone, oreEmerald, oreQuartz, oreCoal,
# stone, cobblestone, record, stickWood, plankWood,
# dyeBlack, dyeRed, dyeGreen, dyeBrown, dyeBlue, dyePurple, dyeCyan, dyeLightGray, dyeGray, dyePink, dyeLime, dyeYellow, dyeLightBlue, dyeMagenta, dyeOrange, dyeWhite
# Minecraft Ore Dict Entries
# Renamed for less clashing
ore=mc:quartz -> crystalNetherQuartz
ore=mc:wool:* -> blockWool
ore=mc:stained_hardened_clay:* -> blockStainedHardenedClay
ore=mc:crafting_table -> craftingTableWood
ore=mc:chest -> chestWood
# AE2 Ore Dictionary
# Materials for processing in other machines
ore=ae2:ItemMaterial.CertusQuartzCrystal -> crystalCertusQuartz
ore=ae2:ItemMaterial.FluixCrystal -> crystalFluix
ore=ae2:ItemMaterial.PurifiedFluixCrystal -> crystalPureFluix
ore=ae2:ItemMaterial.NetherQuartzDust -> dustNetherQuartz
ore=ae2:ItemMaterial.CertusQuartzDust -> dustCertusQuartz
ore=ae2:ItemMaterial.FluixDust -> dustFluix
# Ores of AE2
ore=ae2:tile.OreQuartz -> oreCertusQuartz
ore=ae2:tile.OreQuartzCharged -> oreChargedCertusQuartz
# Parts to be used
ore= ae2:ItemPart.SemiDarkMonitor -> itemIlluminatedPanel
ore= ae2:ItemPart.Monitor -> itemIlluminatedPanel
ore= ae2:ItemPart.DarkMonitor -> itemIlluminatedPanel
@@ -0,0 +1,9 @@
grindfz= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
grindfz= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
grindfz= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
# grindfz= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
grindfz= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
grindfz= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
# grindfz= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
grindfz= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
grindfz= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,4 @@
grind= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
grind= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
grind= mc:gravel -> mc:flint
grind= mc:bone -> 4 mc:dye:15
@@ -0,0 +1,9 @@
hccrusher= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
hccrusher= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
hccrusher= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
hccrusher= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
hccrusher= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
hccrusher= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
hccrusher= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
hccrusher= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
hccrusher= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,9 @@
macerator= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
macerator= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
macerator= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
# macerator= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
macerator= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
macerator= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
macerator= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
macerator= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
macerator= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,8 @@
import=processing/factorization.recipe
import=processing/grind.recipe
import=processing/hydraulicraft.recipe
import=processing/ic2.recipe
import=processing/mekanism.recipe
import=processing/rotarycraft.recipe
import=processing/te.recipe
import=processing/vanilla.recipe
@@ -0,0 +1,9 @@
mekcrusher= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
#bug mekcrusher= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
#bug mekcrusher= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
# mekcrusher= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
#bug mekcrusher= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
mekcrusher= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
mekcrusher= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
mekechamber= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
mekechamber= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,9 @@
crusher= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
crusher= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
crusher= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
crusher= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
crusher= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
crusher= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
crusher= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
crusher= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
crusher= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,9 @@
pulverizer= ae2:ItemMaterial.FluixCrystal -> ae2:ItemMaterial.FluixDust
pulverizer= ae2:BlockSkyStone:0 -> ae2:ItemMaterial.SkyDust
pulverizer= mc:ender_pearl -> ae2:ItemMaterial.EnderDust
pulverizer= oredictionary:cropWheat -> ae2:ItemMaterial.Flour
pulverizer= ae2:ItemMaterial.CertusQuartzCrystalCharged -> ae2:ItemMaterial.CertusQuartzDust
pulverizer= ae2:ItemMaterial.CertusQuartzCrystal -> ae2:ItemMaterial.CertusQuartzDust
pulverizer= mc:quartz -> ae2:ItemMaterial.NetherQuartzDust
pulverizer= ae2:OreQuartz -> 2 ae2:ItemMaterial.CertusQuartzDust
pulverizer= ae2:OreQuartzCharged -> 2 ae2:ItemMaterial.CertusQuartzDust
@@ -0,0 +1,8 @@
# Ore Processing
smelt= ae2:ItemMaterial.GoldDust -> mc:gold_ingot
smelt= ae2:ItemMaterial.IronDust -> mc:iron_ingot
smelt= ae2:ItemMaterial.Flour -> mc:bread
# Silicon
smelt= ae2:ItemMaterial.NetherQuartzDust -> ae2:ItemMaterial.Silicon
smelt= ae2:ItemMaterial.CertusQuartzDust -> ae2:ItemMaterial.Silicon
@@ -0,0 +1,41 @@
shaped=
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz,
oredictionary:crystalCertusQuartz oredictionary:stickWood,
_ oredictionary:stickWood
-> ae2:ToolCertusQuartzAxe
shaped=
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz,
_ oredictionary:stickWood _,
_ oredictionary:stickWood _
-> ae2:ToolCertusQuartzPickaxe
shaped=
oredictionary:crystalCertusQuartz,
oredictionary:stickWood,
oredictionary:stickWood
-> ae2:ToolCertusQuartzSpade
shaped=
oredictionary:crystalCertusQuartz,
oredictionary:crystalCertusQuartz,
oredictionary:stickWood
-> ae2:ToolCertusQuartzSword
shaped=
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz,
_ oredictionary:stickWood,
_ oredictionary:stickWood
-> ae2:ToolCertusQuartzHoe
shaped=
oredictionary:crystalCertusQuartz _ oredictionary:crystalCertusQuartz,
_ oredictionary:crystalCertusQuartz _,
oredictionary:crystalCertusQuartz _ oredictionary:crystalCertusQuartz
-> ae2:ToolCertusQuartzWrench
shaped=
_ _ oredictionary:stickWood,
oredictionary:ingotIron oredictionary:stickWood _,
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz _
-> ae2:ToolCertusQuartzCuttingKnife
@@ -0,0 +1,6 @@
import=tools/certus-quartz.recipe
import=tools/matter-cannon.recipe
import=tools/misctools.recipe
import=tools/nether-quartz.recipe
import=tools/network.recipe
import=tools/paintballs.recipe
@@ -0,0 +1,5 @@
shaped=
oredictionary:ingotIron oredictionary:ingotIron ae2:ItemMaterial.FormationCore,
ae2:ItemMaterial.Cell4kPart ae2:BlockEnergyCell _,
oredictionary:ingotIron _ _
-> ae2:ToolMassCannon
@@ -0,0 +1,11 @@
shaped=
ae2:ItemMaterial.CertusQuartzCrystalCharged _ _,
_ oredictionary:ingotIron _,
_ _ oredictionary:ingotIron
-> ae2:ToolChargedStaff
shaped=
fluixCrystal ae2:BlockEnergyCell _,
ae2:ItemMaterial.EngProcessor oredictionary:ingotIron _,
_ _ oredictionary:ingotIron
-> ae2:ToolEntropyManipulator
@@ -0,0 +1,41 @@
shaped=
oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz,
oredictionary:crystalNetherQuartz oredictionary:stickWood,
_ oredictionary:stickWood
-> ae2:ToolNetherQuartzAxe
shaped=
oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz,
_ oredictionary:stickWood _,
_ oredictionary:stickWood _
-> ae2:ToolNetherQuartzPickaxe
shaped=
oredictionary:crystalNetherQuartz,
oredictionary:stickWood,
oredictionary:stickWood
-> ae2:ToolNetherQuartzSpade
shaped=
oredictionary:crystalNetherQuartz,
oredictionary:crystalNetherQuartz,
oredictionary:stickWood
-> ae2:ToolNetherQuartzSword
shaped=
oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz,
_ oredictionary:stickWood,
_ oredictionary:stickWood
-> ae2:ToolNetherQuartzHoe
shaped=
oredictionary:crystalNetherQuartz _ oredictionary:crystalNetherQuartz,
_ oredictionary:crystalNetherQuartz _,
oredictionary:crystalNetherQuartz _ oredictionary:crystalNetherQuartz
-> ae2:ToolNetherQuartzWrench
shaped=
_ _ oredictionary:stickWood,
oredictionary:ingotIron oredictionary:stickWood _,
oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz _
-> ae2:ToolNetherQuartzCuttingKnife
@@ -0,0 +1,23 @@
shaped=
ae2:BlockChest ae2:ItemMaterial.Cell1kPart ae2:BlockEnergyCell
-> ae2:ToolPortableCell
shapeless=
wrench monitor ae2:ItemMaterial.CalcProcessor oredictionary:chestWood
-> ae2:ToolNetworkTool
shaped=
ae2:ItemMaterial.EngProcessor oredictionary:ingotIron oredictionary:ingotIron,
oredictionary:ingotGold oredictionary:dustRedstone oredictionary:ingotGold
-> ae2:ToolBiometricCard
shaped=
ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron oredictionary:ingotIron,
oredictionary:ingotGold oredictionary:dustRedstone oredictionary:ingotGold
-> ae2:ToolMemoryCard
shaped=
ae2:ItemMaterial.FormationCore oredictionary:ingotIron _,
oredictionary:ingotIron ae2:ItemMaterial.Cell4kPart _,
_ _ ae2:BlockEnergyCell
-> ae2:ToolColorApplicator
@@ -0,0 +1,191 @@
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeWhite ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.White
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeBlack ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Black
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeRed ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Red
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeGreen ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Green
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeBrown ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Brown
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeBlue ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Blue
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyePurple ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Purple
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeCyan ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Cyan
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeLightGray ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.LightGray
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeGray ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Gray
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyePink ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Pink
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeLime ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Lime
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeYellow ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Yellow
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeLightBlue ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.LightBlue
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeMagenta ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Magenta
shaped=
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall oredictionary:dyeOrange ae2:ItemMaterial.MatterBall,
ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall ae2:ItemMaterial.MatterBall
-> 8 ae2:PaintBall.Orange
shaped=
ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White,
ae2:PaintBall.White oredictionary:dustGlowstone ae2:PaintBall.White,
ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White
-> 8 ae2:LumenPaintBall.White
shaped=
ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black,
ae2:PaintBall.Black oredictionary:dustGlowstone ae2:PaintBall.Black,
ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black
-> 8 ae2:LumenPaintBall.Black
shaped=
ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red,
ae2:PaintBall.Red oredictionary:dustGlowstone ae2:PaintBall.Red,
ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red
-> 8 ae2:LumenPaintBall.Red
shaped=
ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green,
ae2:PaintBall.Green oredictionary:dustGlowstone ae2:PaintBall.Green,
ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green
-> 8 ae2:LumenPaintBall.Green
shaped=
ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown,
ae2:PaintBall.Brown oredictionary:dustGlowstone ae2:PaintBall.Brown,
ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown
-> 8 ae2:LumenPaintBall.Brown
shaped=
ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue,
ae2:PaintBall.Blue oredictionary:dustGlowstone ae2:PaintBall.Blue,
ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue
-> 8 ae2:LumenPaintBall.Blue
shaped=
ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple,
ae2:PaintBall.Purple oredictionary:dustGlowstone ae2:PaintBall.Purple,
ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple
-> 8 ae2:LumenPaintBall.Purple
shaped=
ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan,
ae2:PaintBall.Cyan oredictionary:dustGlowstone ae2:PaintBall.Cyan,
ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan
-> 8 ae2:LumenPaintBall.Cyan
shaped=
ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray,
ae2:PaintBall.LightGray oredictionary:dustGlowstone ae2:PaintBall.LightGray,
ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray
-> 8 ae2:LumenPaintBall.LightGray
shaped=
ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray,
ae2:PaintBall.Gray oredictionary:dustGlowstone ae2:PaintBall.Gray,
ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray
-> 8 ae2:LumenPaintBall.Gray
shaped=
ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink,
ae2:PaintBall.Pink oredictionary:dustGlowstone ae2:PaintBall.Pink,
ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink
-> 8 ae2:LumenPaintBall.Pink
shaped=
ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime,
ae2:PaintBall.Lime oredictionary:dustGlowstone ae2:PaintBall.Lime,
ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime
-> 8 ae2:LumenPaintBall.Lime
shaped=
ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow,
ae2:PaintBall.Yellow oredictionary:dustGlowstone ae2:PaintBall.Yellow,
ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow
-> 8 ae2:LumenPaintBall.Yellow
shaped=
ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue,
ae2:PaintBall.LightBlue oredictionary:dustGlowstone ae2:PaintBall.LightBlue,
ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue
-> 8 ae2:LumenPaintBall.LightBlue
shaped=
ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta,
ae2:PaintBall.Magenta oredictionary:dustGlowstone ae2:PaintBall.Magenta,
ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta
-> 8 ae2:LumenPaintBall.Magenta
shaped=
ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange,
ae2:PaintBall.Orange oredictionary:dustGlowstone ae2:PaintBall.Orange,
ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange
-> 8 ae2:LumenPaintBall.Orange
File diff suppressed because it is too large Load Diff