Compare commits

...

6 Commits

Author SHA1 Message Date
yueh a62e157e7c Merge pull request #2091 from Adaptivity/master
Ore Dictionary support for recipes
2016-01-08 21:00:34 +01:00
yueh 106b823827 Merge pull request #2088 from fnuecke/master
Reworked computer P2P tunnel for #2087
2016-01-08 20:48:27 +01:00
yueh 8406c00e22 Merge pull request #2092 from GWYOG/master_patch_1
Update zh_CN.lang, fix #2090
2016-01-08 20:36:29 +01:00
JJN 22f05428be fixed #2090
fixed #2090
2016-01-07 09:29:49 +08:00
Adaptivity bd0bf26f30 Ore Dictionary support for recipes
Added missing changes to oredict.recipe
2016-01-06 20:29:33 +03:00
Florian Nücke 2ea05bce5f Reworked computer P2P tunnel to use events, and cleaned up reconnection, fixes #2087.
Just `onTunnelNetworkChange` with tickable is apparently less exhaustive, and less stable. This now avoids issues with network splits and reconnects not being handled in some cases. Also simplified reconnection; there was some duplicate logic in there, with a missing validity check which potentially led to invalid connections.
2016-01-05 19:05:25 +01:00
44 changed files with 183 additions and 242 deletions
@@ -24,7 +24,6 @@ import javax.annotation.Nullable;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.IIcon; import net.minecraft.util.IIcon;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection; import net.minecraftforge.common.util.ForgeDirection;
import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.Side;
@@ -39,29 +38,22 @@ import li.cil.oc.api.network.Node;
import li.cil.oc.api.network.SidedEnvironment; import li.cil.oc.api.network.SidedEnvironment;
import li.cil.oc.api.network.Visibility; import li.cil.oc.api.network.Visibility;
import appeng.api.networking.IGridNode; import appeng.api.networking.events.MENetworkBootingStatusChange;
import appeng.api.networking.ticking.IGridTickable; import appeng.api.networking.events.MENetworkChannelsChanged;
import appeng.api.networking.ticking.TickRateModulation; import appeng.api.networking.events.MENetworkEventSubscribe;
import appeng.api.networking.ticking.TickingRequest; import appeng.api.networking.events.MENetworkPowerStatusChange;
import appeng.core.AELog;
import appeng.core.settings.TickRates;
import appeng.hooks.TickHandler;
import appeng.integration.IntegrationRegistry; import appeng.integration.IntegrationRegistry;
import appeng.integration.IntegrationType; import appeng.integration.IntegrationType;
import appeng.me.GridAccessException;
import appeng.transformer.annotations.Integration.Interface; import appeng.transformer.annotations.Integration.Interface;
import appeng.transformer.annotations.Integration.InterfaceList; import appeng.transformer.annotations.Integration.InterfaceList;
import appeng.util.IWorldCallable;
@InterfaceList( value = { @Interface( iface = "li.cil.oc.api.network.Environment", iname = IntegrationType.OpenComputers ), @Interface( iface = "li.cil.oc.api.network.SidedEnvironment", iname = IntegrationType.OpenComputers ) } ) @InterfaceList( value = { @Interface( iface = "li.cil.oc.api.network.Environment", iname = IntegrationType.OpenComputers ), @Interface( iface = "li.cil.oc.api.network.SidedEnvironment", iname = IntegrationType.OpenComputers ) } )
public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenComputers> implements IGridTickable, Environment, SidedEnvironment public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenComputers> implements Environment, SidedEnvironment
{ {
@Nullable @Nullable
private final Node node; private final Node node;
private final IWorldCallable<Void> updateCallback;
public PartP2POpenComputers( final ItemStack is ) public PartP2POpenComputers( final ItemStack is )
{ {
super( is ); super( is );
@@ -80,8 +72,24 @@ public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenCompute
{ {
this.node = null; // to satisfy final this.node = null; // to satisfy final
} }
}
this.updateCallback = new UpdateCallback(); @MENetworkEventSubscribe
public void changeStateA( final MENetworkBootingStatusChange bs )
{
this.updateConnections();
}
@MENetworkEventSubscribe
public void changeStateB( final MENetworkChannelsChanged bs )
{
this.updateConnections();
}
@MENetworkEventSubscribe
public void changeStateC( final MENetworkPowerStatusChange bs )
{
this.updateConnections();
} }
@Override @Override
@@ -104,15 +112,7 @@ public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenCompute
@Override @Override
public void onTunnelNetworkChange() public void onTunnelNetworkChange()
{ {
super.onTunnelNetworkChange(); this.updateConnections();
try
{
this.getProxy().getTick().wakeDevice( this.getProxy().getNode() );
}
catch( final GridAccessException e )
{
// ignore
}
} }
@Override @Override
@@ -135,35 +135,6 @@ public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenCompute
} }
} }
@Override
public TickingRequest getTickingRequest( final IGridNode node )
{
return new TickingRequest( TickRates.OpenComputersTunnel.getMin(), TickRates.OpenComputersTunnel.getMax(), true, false );
}
@Override
public TickRateModulation tickingRequest( final IGridNode node, final int ticksSinceLastCall )
{
try
{
if( !this.getProxy().getPath().isNetworkBooting() )
{
if( this.node() != null ) // Client side doesn't have nodes.
{
TickHandler.INSTANCE.addCallable( this.getTile().getWorldObj(), this.updateCallback );
}
return TickRateModulation.SLEEP;
}
}
catch( final GridAccessException e )
{
// ignore
}
return TickRateModulation.IDLE;
}
private void updateConnections() private void updateConnections()
{ {
if( this.getProxy().isPowered() && this.getProxy().isActive() ) if( this.getProxy().isPowered() && this.getProxy().isActive() )
@@ -171,31 +142,10 @@ public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenCompute
// Make sure we're connected to existing OC nodes in the world. // Make sure we're connected to existing OC nodes in the world.
Network.joinOrCreateNetwork( this.getTile() ); Network.joinOrCreateNetwork( this.getTile() );
if( this.isOutput() ) if( this.isOutput() && this.getInput() != null && this.node != null )
{ {
if( this.getInput() != null && this.node != null ) Network.joinOrCreateNetwork( this.getInput().getTile() );
{ this.node.connect( this.getInput().node() );
Network.joinOrCreateNetwork( this.getInput().getTile() );
this.node.connect( this.getInput().node() );
}
}
else
{
try
{
for( final PartP2POpenComputers output : this.getOutputs() )
{
if( this.node != null )
{
Network.joinOrCreateNetwork( output.getTile() );
this.node.connect( output.node() );
}
}
}
catch( final GridAccessException e )
{
AELog.debug( e );
}
} }
} }
else if( this.node != null ) else if( this.node != null )
@@ -238,16 +188,4 @@ public final class PartP2POpenComputers extends PartP2PTunnel<PartP2POpenCompute
{ {
return side == this.getSide(); return side == this.getSide();
} }
private final class UpdateCallback implements IWorldCallable<Void>
{
@Nullable
@Override
public Void call( final World world ) throws Exception
{
PartP2POpenComputers.this.updateConnections();
return null;
}
}
} }
@@ -189,8 +189,8 @@ gui.appliedenergistics2.inWorldSingularity=将1个奇点和一个末影珍珠粉
gui.appliedenergistics2.ChargedQuartz=将未充能赛特斯石英插入充能器充能后,可以得到充能赛特斯石英. gui.appliedenergistics2.ChargedQuartz=将未充能赛特斯石英插入充能器充能后,可以得到充能赛特斯石英.
gui.appliedenergistics2.ChargedQuartzFind=充能赛特斯石英也可以在世界中以普通赛特斯石英一半的几率找到,它的外观类似普通赛特斯石英,除了它会冒出闪电. gui.appliedenergistics2.ChargedQuartzFind=充能赛特斯石英也可以在世界中以普通赛特斯石英一半的几率找到,它的外观类似普通赛特斯石英,除了它会冒出闪电.
gui.appliedenergistics2.NoSecondOutput=无副产物. gui.appliedenergistics2.NoSecondOutput=无副产物.
gui.appliedenergistics2.OfSecondOutput=获得副产物概率%1$s%. gui.appliedenergistics2.OfSecondOutput=获得副产物概率%1$d%%.
gui.appliedenergistics2.MultipleOutputs=第一副产概率%1$s%,第二副产概率%2$s%. gui.appliedenergistics2.MultipleOutputs=第一副产概率%1$d%%,第二副产概率%2$d%%.
gui.appliedenergistics2.SelectAmount=选择数量 gui.appliedenergistics2.SelectAmount=选择数量
gui.appliedenergistics2.CopyMode=复制模式 gui.appliedenergistics2.CopyMode=复制模式
gui.appliedenergistics2.CopyModeDesc=控制当取出存储元件时,是否清空配置格. gui.appliedenergistics2.CopyModeDesc=控制当取出存储元件时,是否清空配置格.
@@ -460,6 +460,7 @@ item.appliedenergistics2.ItemPart.InvertedToggleBus.name=ME反相触发总线
item.appliedenergistics2.ItemPart.ToggleBus.name=ME触发总线 item.appliedenergistics2.ItemPart.ToggleBus.name=ME触发总线
item.appliedenergistics2.ItemPart.CraftingMonitor.name=ME合成监控器 item.appliedenergistics2.ItemPart.CraftingMonitor.name=ME合成监控器
item.appliedenergistics2.ItemPart.InterfaceTerminal.name=ME接口终端 item.appliedenergistics2.ItemPart.InterfaceTerminal.name=ME接口终端
item.appliedenergistics2.ItemPart.InvalidType.name=已禁用
item.appliedenergistics2.ItemSpatialStorageCell.128Cubed.name=128³-空间存储元件 item.appliedenergistics2.ItemSpatialStorageCell.128Cubed.name=128³-空间存储元件
item.appliedenergistics2.ItemSpatialStorageCell.16Cubed.name=16³-空间存储元件 item.appliedenergistics2.ItemSpatialStorageCell.16Cubed.name=16³-空间存储元件
@@ -1,13 +1,13 @@
shaped= shaped=
mc:gold_ingot mc:iron_ingot _, oredictionary:ingotGold oredictionary:ingotIron _,
mc:redstone ae2:ItemMaterial.CalcProcessor mc:iron_ingot, oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
mc:gold_ingot mc:iron_ingot _ oredictionary:ingotGold oredictionary:ingotIron _
-> 2 ae2:ItemMaterial.BasicCard -> 2 ae2:ItemMaterial.BasicCard
shaped= shaped=
oredictionary:gemDiamond mc:iron_ingot _, oredictionary:gemDiamond oredictionary:ingotIron _,
mc:redstone ae2:ItemMaterial.CalcProcessor mc:iron_ingot, oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
oredictionary:gemDiamond mc:iron_ingot _ oredictionary:gemDiamond oredictionary:ingotIron _
-> 2 ae2:ItemMaterial.AdvCard -> 2 ae2:ItemMaterial.AdvCard
shapeless= shapeless=
@@ -31,5 +31,5 @@ shapeless=
-> ae2:ItemMaterial.CardSpeed -> ae2:ItemMaterial.CardSpeed
shapeless= shapeless=
ae2:ItemMaterial.BasicCard mc:crafting_table ae2:ItemMaterial.BasicCard oredictionary:craftingTableWood
-> ae2:ItemMaterial.CardCrafting -> ae2:ItemMaterial.CardCrafting
@@ -1,5 +1,5 @@
inscribe= inscribe=
mc:gold_ingot ae2:ItemMaterial.LogicProcessorPress oredictionary:ingotGold ae2:ItemMaterial.LogicProcessorPress
-> ae2:ItemMaterial.LogicProcessorPrint -> ae2:ItemMaterial.LogicProcessorPrint
inscribe= inscribe=
@@ -1,15 +1,15 @@
inscribe= inscribe=
mc:iron_block ae2:ItemMaterial.LogicProcessorPress oredictionary:blockIron ae2:ItemMaterial.LogicProcessorPress
-> ae2:ItemMaterial.LogicProcessorPress -> ae2:ItemMaterial.LogicProcessorPress
inscribe= inscribe=
mc:iron_block ae2:ItemMaterial.CalcProcessorPress oredictionary:blockIron ae2:ItemMaterial.CalcProcessorPress
-> ae2:ItemMaterial.CalcProcessorPress -> ae2:ItemMaterial.CalcProcessorPress
inscribe= inscribe=
mc:iron_block ae2:ItemMaterial.EngProcessorPress oredictionary:blockIron ae2:ItemMaterial.EngProcessorPress
-> ae2:ItemMaterial.EngProcessorPress -> ae2:ItemMaterial.EngProcessorPress
inscribe= inscribe=
mc:iron_block ae2:ItemMaterial.SiliconPress oredictionary:blockIron ae2:ItemMaterial.SiliconPress
-> ae2:ItemMaterial.SiliconPress -> ae2:ItemMaterial.SiliconPress
@@ -1,11 +1,11 @@
press= press=
mc:redstone ae2:ItemMaterial.LogicProcessorPrint ae2:ItemMaterial.SiliconPrint oredictionary:dustRedstone ae2:ItemMaterial.LogicProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.LogicProcessor -> ae2:ItemMaterial.LogicProcessor
press= press=
mc:redstone ae2:ItemMaterial.CalcProcessorPrint ae2:ItemMaterial.SiliconPrint oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.CalcProcessor -> ae2:ItemMaterial.CalcProcessor
press= press=
mc:redstone ae2:ItemMaterial.EngProcessorPrint ae2:ItemMaterial.SiliconPrint oredictionary:dustRedstone ae2:ItemMaterial.EngProcessorPrint ae2:ItemMaterial.SiliconPrint
-> ae2:ItemMaterial.EngProcessor -> ae2:ItemMaterial.EngProcessor
@@ -1,5 +1,5 @@
shaped= shaped=
_ mc:iron_ingot _, _ oredictionary:ingotIron _,
mc:iron_ingot ae2:ItemMaterial.CertusQuartzCrystalCharged mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.CertusQuartzCrystalCharged oredictionary:ingotIron,
_ mc:iron_ingot _ _ oredictionary:ingotIron _
-> ae2:BlockSkyCompass -> ae2:BlockSkyCompass
@@ -1,3 +1,3 @@
shapeless= mc:sand oredictionary:dustNetherQuartz -> 2 ae2:ItemCrystalSeed.Nether shapeless= oredictionary:sand oredictionary:dustNetherQuartz -> 2 ae2:ItemCrystalSeed.Nether
shapeless= mc:sand oredictionary:dustCertusQuartz -> 2 ae2:ItemCrystalSeed.Certus shapeless= oredictionary:sand oredictionary:dustCertusQuartz -> 2 ae2:ItemCrystalSeed.Certus
shapeless= mc:sand oredictionary:dustFluix -> 2 ae2:ItemCrystalSeed.Fluix shapeless= oredictionary:sand oredictionary:dustFluix -> 2 ae2:ItemCrystalSeed.Fluix
@@ -1,7 +1,7 @@
shaped= shaped=
glass glass glass, glass glass glass,
netherCrystal netherCrystal netherCrystal, netherCrystal netherCrystal netherCrystal,
mc:wooden_slab:* mc:wooden_slab:* mc:wooden_slab:* oredictionary:slabWood oredictionary:slabWood oredictionary:slabWood
-> mc:daylight_detector -> mc:daylight_detector
shaped= shaped=
@@ -17,5 +17,5 @@ shaped=
-> mc:iron_ingot -> mc:iron_ingot
shapeless= shapeless=
mc:iron_ingot oredictionary:ingotIron
-> 9 ae2:ItemMaterial.IronNugget -> 9 ae2:ItemMaterial.IronNugget
@@ -1,5 +1,5 @@
shaped= shaped=
wool ae2:ItemMaterial.CalcProcessor wool, wool ae2:ItemMaterial.CalcProcessor wool,
mc:iron_ingot mc:chest mc:iron_ingot, oredictionary:ingotIron oredictionary:chestWood oredictionary:ingotIron,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:BlockCellWorkbench -> ae2:BlockCellWorkbench
@@ -1,11 +1,11 @@
shaped= shaped=
mc:iron_ingot cable mc:iron_ingot, oredictionary:ingotIron cable oredictionary:ingotIron,
ae2:BlockQuartzGlass ae2:BlockFluix ae2:BlockQuartzGlass, ae2:BlockQuartzGlass ae2:BlockFluix ae2:BlockQuartzGlass,
mc:iron_ingot cable mc:iron_ingot oredictionary:ingotIron cable oredictionary:ingotIron
-> ae2:BlockQuartzGrowthAccelerator -> ae2:BlockQuartzGrowthAccelerator
shaped= shaped=
mc:iron_ingot fluixCrystal mc:iron_ingot, oredictionary:ingotIron fluixCrystal oredictionary:ingotIron,
mc:iron_ingot _ _, oredictionary:ingotIron _ _,
mc:iron_ingot fluixCrystal mc:iron_ingot oredictionary:ingotIron fluixCrystal oredictionary:ingotIron
-> ae2:BlockCharger -> ae2:BlockCharger
@@ -1,13 +1,13 @@
shaped= shaped=
mc:iron_ingot mc:iron_ingot mc:iron_ingot, oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron,
mc:iron_ingot mc:furnace mc:iron_ingot, oredictionary:ingotIron mc:furnace oredictionary:ingotIron,
mc:iron_ingot ae2:BlockEnergyAcceptor mc:iron_ingot oredictionary:ingotIron ae2:BlockEnergyAcceptor oredictionary:ingotIron
-> ae2:BlockVibrationChamber -> ae2:BlockVibrationChamber
shaped= shaped=
mc:iron_ingot ae2:BlockQuartzGlass mc:iron_ingot, oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron,
ae2:BlockQuartzGlass fluixCrystal ae2:BlockQuartzGlass, ae2:BlockQuartzGlass fluixCrystal ae2:BlockQuartzGlass,
mc:iron_ingot ae2:BlockQuartzGlass mc:iron_ingot oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron
-> ae2:BlockEnergyAcceptor -> ae2:BlockEnergyAcceptor
shaped= shaped=
@@ -1,5 +1,5 @@
shaped= shaped=
mc:iron_ingot mc:sticky_piston mc:iron_ingot, oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron,
fluixCrystal _ mc:iron_ingot, fluixCrystal _ oredictionary:ingotIron,
mc:iron_ingot mc:sticky_piston mc:iron_ingot oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron
-> ae2:BlockInscriber -> ae2:BlockInscriber
@@ -7,7 +7,7 @@ shapeless=
-> ae2:ItemPart.Interface -> ae2:ItemPart.Interface
shaped= shaped=
mc:iron_ingot glass mc:iron_ingot, oredictionary:ingotIron glass oredictionary:ingotIron,
ae2:ItemMaterial.AnnihilationCore _ ae2:ItemMaterial.FormationCore, ae2:ItemMaterial.AnnihilationCore _ ae2:ItemMaterial.FormationCore,
mc:iron_ingot glass mc:iron_ingot oredictionary:ingotIron glass oredictionary:ingotIron
-> ae2:BlockInterface -> ae2:BlockInterface
@@ -1,11 +1,11 @@
shaped= shaped=
mc:iron_ingot glass mc:iron_ingot, oredictionary:ingotIron glass oredictionary:ingotIron,
glass oredictionary:dustFluix glass, glass oredictionary:dustFluix glass,
mc:iron_ingot glass mc:iron_ingot oredictionary:ingotIron glass oredictionary:ingotIron
-> ae2:BlockCondenser -> ae2:BlockCondenser
shaped= shaped=
glass glass glass, glass glass glass,
ae2:BlockDrive cable ae2:BlockDrive, ae2:BlockDrive cable ae2:BlockDrive,
mc:iron_ingot ae2:ItemMaterial.LogicProcessor mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron
-> ae2:BlockIOPort -> ae2:BlockIOPort
@@ -7,7 +7,7 @@ shaped=
# Quantum Ring # Quantum Ring
shaped= shaped=
mc:iron_ingot ae2:ItemMaterial.LogicProcessor mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron,
ae2:ItemMaterial.EngProcessor ae2:BlockEnergyCell densecable, ae2:ItemMaterial.EngProcessor ae2:BlockEnergyCell densecable,
mc:iron_ingot ae2:ItemMaterial.LogicProcessor mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.LogicProcessor oredictionary:ingotIron,
-> ae2:BlockQuantumRing -> ae2:BlockQuantumRing
@@ -1,5 +1,5 @@
shaped= shaped=
mc:iron_ingot ae2:BlockChest mc:iron_ingot, oredictionary:ingotIron ae2:BlockChest oredictionary:ingotIron,
cable ae2:ItemMaterial.Cell16kPart cable, cable ae2:ItemMaterial.Cell16kPart cable,
mc:iron_ingot ae2:ItemMaterial.EngProcessor mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockSecurity -> ae2:BlockSecurity
@@ -1,7 +1,7 @@
shaped= shaped=
glass glass glass, glass glass glass,
cable ae2:BlockIOPort cable, cable ae2:BlockIOPort cable,
mc:iron_ingot ae2:ItemMaterial.EngProcessor mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockSpatialIOPort -> ae2:BlockSpatialIOPort
shaped= shaped=
@@ -1,11 +1,11 @@
shaped= shaped=
glass ae2:ItemPart.Terminal glass, glass ae2:ItemPart.Terminal glass,
cable _ cable, cable _ cable,
mc:iron_ingot fluixCrystal mc:iron_ingot, oredictionary:ingotIron fluixCrystal oredictionary:ingotIron,
-> ae2:BlockChest -> ae2:BlockChest
shaped= shaped=
mc:iron_ingot ae2:ItemMaterial.EngProcessor mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron,
cable _ cable, cable _ cable,
mc:iron_ingot ae2:ItemMaterial.EngProcessor mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron
-> ae2:BlockDrive -> ae2:BlockDrive
@@ -1,6 +1,6 @@
shapeless= shapeless=
ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered ae2:CableCovered
mc:redstone mc:glowstone_dust oredictionary:dustRedstone oredictionary:dustGlowstone
-> ae2:CableDense.Fluix -> ae2:CableDense.Fluix
shapeless= shapeless=
@@ -1,6 +1,6 @@
shapeless= shapeless=
ae2:CableCovered ae2:CableCovered
mc:redstone mc:glowstone_dust oredictionary:dustRedstone oredictionary:dustGlowstone
-> ae2:CableSmart.Fluix -> ae2:CableSmart.Fluix
shapeless= shapeless=
@@ -1,5 +1,5 @@
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone _ mc:redstone, oredictionary:dustRedstone _ oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemMaterial.EmptyStorageCell
@@ -1,17 +1,17 @@
shaped= shaped=
mc:glowstone_dust ae2:ItemMaterial.FluixPearl mc:glowstone_dust, oredictionary:dustGlowstone ae2:ItemMaterial.FluixPearl oredictionary:dustGlowstone,
ae2:ItemMaterial.FluixPearl ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.FluixPearl, ae2:ItemMaterial.FluixPearl ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.FluixPearl,
mc:glowstone_dust ae2:ItemMaterial.FluixPearl mc:glowstone_dust oredictionary:dustGlowstone ae2:ItemMaterial.FluixPearl oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell2SpatialPart -> ae2:ItemMaterial.Cell2SpatialPart
shaped= shaped=
mc:glowstone_dust ae2:ItemMaterial.Cell2SpatialPart mc:glowstone_dust, oredictionary:dustGlowstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell2SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell2SpatialPart, ae2:ItemMaterial.Cell2SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell2SpatialPart,
mc:glowstone_dust ae2:ItemMaterial.Cell2SpatialPart mc:glowstone_dust oredictionary:dustGlowstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell16SpatialPart -> ae2:ItemMaterial.Cell16SpatialPart
shaped= shaped=
mc:glowstone_dust ae2:ItemMaterial.Cell16SpatialPart mc:glowstone_dust, oredictionary:dustGlowstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell16SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell16SpatialPart, ae2:ItemMaterial.Cell16SpatialPart ae2:ItemMaterial.EngProcessor ae2:ItemMaterial.Cell16SpatialPart,
mc:glowstone_dust ae2:ItemMaterial.Cell16SpatialPart mc:glowstone_dust oredictionary:dustGlowstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell128SpatialPart -> ae2:ItemMaterial.Cell128SpatialPart
@@ -8,19 +8,19 @@ shapeless=
ae2:ItemMaterial.Cell128SpatialPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemSpatialStorageCell.128Cubed ae2:ItemMaterial.Cell128SpatialPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemSpatialStorageCell.128Cubed
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell2SpatialPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell2SpatialPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.2Cubed -> ae2:ItemSpatialStorageCell.2Cubed
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell16SpatialPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell16SpatialPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.16Cubed -> ae2:ItemSpatialStorageCell.16Cubed
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell128SpatialPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell128SpatialPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemSpatialStorageCell.128Cubed -> ae2:ItemSpatialStorageCell.128Cubed
@@ -1,23 +1,23 @@
shaped= shaped=
mc:redstone certusCrystal mc:redstone, oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone,
certusCrystal ae2:ItemMaterial.LogicProcessor certusCrystal, certusCrystal ae2:ItemMaterial.LogicProcessor certusCrystal,
mc:redstone certusCrystal mc:redstone oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone
-> ae2:ItemMaterial.Cell1kPart -> ae2:ItemMaterial.Cell1kPart
shaped= shaped=
mc:redstone ae2:ItemMaterial.CalcProcessor mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.CalcProcessor oredictionary:dustRedstone,
ae2:ItemMaterial.Cell1kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell1kPart, ae2:ItemMaterial.Cell1kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell1kPart,
mc:redstone ae2:ItemMaterial.Cell1kPart mc:redstone oredictionary:dustRedstone ae2:ItemMaterial.Cell1kPart oredictionary:dustRedstone
-> ae2:ItemMaterial.Cell4kPart -> ae2:ItemMaterial.Cell4kPart
shaped= shaped=
mc:glowstone_dust ae2:ItemMaterial.EngProcessor mc:glowstone_dust, oredictionary:dustGlowstone ae2:ItemMaterial.EngProcessor oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell4kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell4kPart, ae2:ItemMaterial.Cell4kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell4kPart,
mc:glowstone_dust ae2:ItemMaterial.Cell4kPart mc:glowstone_dust oredictionary:dustGlowstone ae2:ItemMaterial.Cell4kPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell16kPart -> ae2:ItemMaterial.Cell16kPart
shaped= shaped=
mc:glowstone_dust ae2:ItemMaterial.EngProcessor mc:glowstone_dust, oredictionary:dustGlowstone ae2:ItemMaterial.EngProcessor oredictionary:dustGlowstone,
ae2:ItemMaterial.Cell16kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell16kPart, ae2:ItemMaterial.Cell16kPart ae2:BlockQuartzGlass ae2:ItemMaterial.Cell16kPart,
mc:glowstone_dust ae2:ItemMaterial.Cell16kPart mc:glowstone_dust oredictionary:dustGlowstone ae2:ItemMaterial.Cell16kPart oredictionary:dustGlowstone
-> ae2:ItemMaterial.Cell64kPart -> ae2:ItemMaterial.Cell64kPart
@@ -11,25 +11,25 @@ shapeless=
ae2:ItemMaterial.Cell64kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.64k ae2:ItemMaterial.Cell64kPart ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemBasicStorageCell.64k
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell1kPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell1kPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.1k -> ae2:ItemBasicStorageCell.1k
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell4kPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell4kPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.4k -> ae2:ItemBasicStorageCell.4k
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell16kPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell16kPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.16k -> ae2:ItemBasicStorageCell.16k
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone ae2:ItemMaterial.Cell64kPart mc:redstone, oredictionary:dustRedstone ae2:ItemMaterial.Cell64kPart oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemBasicStorageCell.64k -> ae2:ItemBasicStorageCell.64k
@@ -2,7 +2,7 @@ shapeless=
certusCrystal ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemViewCell certusCrystal ae2:ItemMaterial.EmptyStorageCell -> ae2:ItemViewCell
shaped= shaped=
ae2:BlockQuartzGlass mc:redstone ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustRedstone ae2:BlockQuartzGlass,
mc:redstone certusCrystal mc:redstone, oredictionary:dustRedstone certusCrystal oredictionary:dustRedstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemViewCell -> ae2:ItemViewCell
@@ -1,5 +1,5 @@
shaped= shaped=
mc:iron_ingot ae2:BlockQuartzGlass mc:iron_ingot, oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron,
ae2:ItemMaterial.AnnihilationCore mc:crafting_table ae2:ItemMaterial.FormationCore, ae2:ItemMaterial.AnnihilationCore oredictionary:craftingTableWood ae2:ItemMaterial.FormationCore,
mc:iron_ingot ae2:BlockQuartzGlass mc:iron_ingot oredictionary:ingotIron ae2:BlockQuartzGlass oredictionary:ingotIron
-> ae2:BlockMolecularAssembler -> ae2:BlockMolecularAssembler
@@ -1,7 +1,7 @@
shaped= shaped=
mc:iron_ingot ae2:ItemMaterial.CalcProcessor mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron,
cable ae2:ItemMaterial.LogicProcessor cable, cable ae2:ItemMaterial.LogicProcessor cable,
mc:iron_ingot ae2:ItemMaterial.CalcProcessor mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron
-> ae2:BlockCraftingUnit:0 -> ae2:BlockCraftingUnit:0
# co processor # co processor
@@ -1,5 +1,5 @@
shaped= shaped=
ae2:BlockQuartzGlass mc:glowstone_dust ae2:BlockQuartzGlass, ae2:BlockQuartzGlass oredictionary:dustGlowstone ae2:BlockQuartzGlass,
mc:glowstone_dust certusCrystal mc:glowstone_dust, oredictionary:dustGlowstone certusCrystal oredictionary:dustGlowstone,
mc:iron_ingot mc:iron_ingot mc:iron_ingot oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron
-> ae2:ItemMaterial.BlankPattern -> ae2:ItemMaterial.BlankPattern
@@ -1,11 +1,11 @@
shaped= shaped=
mc:iron_ingot ae2:ItemMaterial.FormationCore mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.FormationCore oredictionary:ingotIron,
_ mc:piston _ _ mc:piston _
-> ae2:ItemPart.ExportBus -> ae2:ItemPart.ExportBus
shaped= shaped=
_ ae2:ItemMaterial.AnnihilationCore _, _ ae2:ItemMaterial.AnnihilationCore _,
mc:iron_ingot mc:sticky_piston mc:iron_ingot oredictionary:ingotIron mc:sticky_piston oredictionary:ingotIron
-> ae2:ItemPart.ImportBus -> ae2:ItemPart.ImportBus
shapeless= shapeless=
@@ -1,7 +1,7 @@
shaped= shaped=
_ mc:glowstone_dust ae2:BlockQuartzGlass, _ oredictionary:dustGlowstone ae2:BlockQuartzGlass,
mc:iron_ingot mc:redstone ae2:BlockQuartzGlass, oredictionary:ingotIron oredictionary:dustRedstone ae2:BlockQuartzGlass,
_ mc:glowstone_dust ae2:BlockQuartzGlass _ oredictionary:dustGlowstone ae2:BlockQuartzGlass
-> 3 ae2:ItemPart.SemiDarkMonitor -> 3 ae2:ItemPart.SemiDarkMonitor
shapeless= shapeless=
@@ -1,23 +1,23 @@
shaped= shaped=
fluixCrystal fluixCrystal fluixCrystal, fluixCrystal fluixCrystal fluixCrystal,
mc:iron_ingot ae2:ItemMaterial.FormationCore mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.FormationCore oredictionary:ingotIron
-> ae2:ItemPart.FormationPlane -> ae2:ItemPart.FormationPlane
shaped= shaped=
fluixCrystal fluixCrystal fluixCrystal, fluixCrystal fluixCrystal fluixCrystal,
mc:iron_ingot ae2:ItemMaterial.AnnihilationCore mc:iron_ingot oredictionary:ingotIron ae2:ItemMaterial.AnnihilationCore oredictionary:ingotIron
-> ae2:ItemPart.AnnihilationPlane -> ae2:ItemPart.AnnihilationPlane
shaped= shaped=
mc:iron_ingot fluixCrystal, oredictionary:ingotIron fluixCrystal,
ae2:ItemMaterial.AnnihilationCore fluixCrystal, ae2:ItemMaterial.AnnihilationCore fluixCrystal,
mc:iron_ingot fluixCrystal oredictionary:ingotIron fluixCrystal
-> ae2:ItemPart.AnnihilationPlane -> ae2:ItemPart.AnnihilationPlane
shaped= shaped=
mc:iron_ingot fluixCrystal, oredictionary:ingotIron fluixCrystal,
ae2:ItemMaterial.FormationCore fluixCrystal, ae2:ItemMaterial.FormationCore fluixCrystal,
mc:iron_ingot fluixCrystal oredictionary:ingotIron fluixCrystal
-> ae2:ItemPart.FormationPlane -> ae2:ItemPart.FormationPlane
shapeless= shapeless=
@@ -3,7 +3,7 @@ shapeless=
-> ae2:ItemPart.Terminal -> ae2:ItemPart.Terminal
shapeless= shapeless=
ae2:ItemPart.Terminal mc:crafting_table ae2:ItemMaterial.CalcProcessor ae2:ItemPart.Terminal oredictionary:craftingTableWood ae2:ItemMaterial.CalcProcessor
-> ae2:ItemPart.CraftingTerminal -> ae2:ItemPart.CraftingTerminal
shapeless= shapeless=
@@ -1,7 +1,7 @@
shaped= shaped=
_ mc:redstone _, _ oredictionary:dustRedstone _,
cable mc:lever cable, cable mc:lever cable,
_ mc:redstone _ _ oredictionary:dustRedstone _
-> ae2:ItemPart.ToggleBus -> ae2:ItemPart.ToggleBus
shapeless= shapeless=
@@ -1,5 +1,5 @@
shaped= shaped=
_ mc:iron_ingot _, _ oredictionary:ingotIron _,
mc:iron_ingot ae2:ItemMaterial.EngProcessor mc:iron_ingot, oredictionary:ingotIron ae2:ItemMaterial.EngProcessor oredictionary:ingotIron,
fluixCrystal fluixCrystal fluixCrystal fluixCrystal fluixCrystal fluixCrystal
-> ae2:ItemPart.P2PTunnelME -> ae2:ItemPart.P2PTunnelME
@@ -1,7 +1,7 @@
shaped= shaped=
_ ae2:ItemMaterial.FluixPearl _, _ ae2:ItemMaterial.FluixPearl _,
mc:iron_ingot ae2:ItemPart.QuartzFiber mc:iron_ingot, oredictionary:ingotIron ae2:ItemPart.QuartzFiber oredictionary:ingotIron,
_ mc:iron_ingot _ _ oredictionary:ingotIron _
-> ae2:ItemMaterial.Wireless -> ae2:ItemMaterial.Wireless
shaped= shaped=
@@ -18,5 +18,5 @@ shaped=
shaped= shaped=
oredictionary:dustFluix certusCrystal dustEnder, oredictionary:dustFluix certusCrystal dustEnder,
mc:iron_ingot mc:iron_ingot mc:iron_ingot, oredictionary:ingotIron oredictionary:ingotIron oredictionary:ingotIron,
-> 2 ae2:ItemMaterial.WirelessBooster -> 2 ae2:ItemMaterial.WirelessBooster
@@ -9,6 +9,8 @@
ore=mc:quartz -> crystalNetherQuartz ore=mc:quartz -> crystalNetherQuartz
ore=mc:wool:* -> blockWool ore=mc:wool:* -> blockWool
ore=mc:stained_hardened_clay:* -> blockStainedHardenedClay ore=mc:stained_hardened_clay:* -> blockStainedHardenedClay
ore=mc:crafting_table -> craftingTableWood
ore=mc:chest -> chestWood
# AE2 Ore Dictionary # AE2 Ore Dictionary
# Materials for processing in other machines # Materials for processing in other machines
@@ -36,6 +36,6 @@ shaped=
shaped= shaped=
_ _ oredictionary:stickWood, _ _ oredictionary:stickWood,
mc:iron_ingot oredictionary:stickWood _, oredictionary:ingotIron oredictionary:stickWood _,
oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz _ oredictionary:crystalCertusQuartz oredictionary:crystalCertusQuartz _
-> ae2:ToolCertusQuartzCuttingKnife -> ae2:ToolCertusQuartzCuttingKnife
@@ -1,5 +1,5 @@
shaped= shaped=
mc:iron_ingot mc:iron_ingot ae2:ItemMaterial.FormationCore, oredictionary:ingotIron oredictionary:ingotIron ae2:ItemMaterial.FormationCore,
ae2:ItemMaterial.Cell4kPart ae2:BlockEnergyCell _, ae2:ItemMaterial.Cell4kPart ae2:BlockEnergyCell _,
mc:iron_ingot _ _ oredictionary:ingotIron _ _
-> ae2:ToolMassCannon -> ae2:ToolMassCannon
@@ -1,11 +1,11 @@
shaped= shaped=
ae2:ItemMaterial.CertusQuartzCrystalCharged _ _, ae2:ItemMaterial.CertusQuartzCrystalCharged _ _,
_ mc:iron_ingot _, _ oredictionary:ingotIron _,
_ _ mc:iron_ingot _ _ oredictionary:ingotIron
-> ae2:ToolChargedStaff -> ae2:ToolChargedStaff
shaped= shaped=
fluixCrystal ae2:BlockEnergyCell _, fluixCrystal ae2:BlockEnergyCell _,
ae2:ItemMaterial.EngProcessor mc:iron_ingot _, ae2:ItemMaterial.EngProcessor oredictionary:ingotIron _,
_ _ mc:iron_ingot _ _ oredictionary:ingotIron
-> ae2:ToolEntropyManipulator -> ae2:ToolEntropyManipulator
@@ -36,6 +36,6 @@ shaped=
shaped= shaped=
_ _ oredictionary:stickWood, _ _ oredictionary:stickWood,
mc:iron_ingot oredictionary:stickWood _, oredictionary:ingotIron oredictionary:stickWood _,
oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz _ oredictionary:crystalNetherQuartz oredictionary:crystalNetherQuartz _
-> ae2:ToolNetherQuartzCuttingKnife -> ae2:ToolNetherQuartzCuttingKnife
@@ -3,21 +3,21 @@ shaped=
-> ae2:ToolPortableCell -> ae2:ToolPortableCell
shapeless= shapeless=
wrench monitor ae2:ItemMaterial.CalcProcessor mc:chest wrench monitor ae2:ItemMaterial.CalcProcessor oredictionary:chestWood
-> ae2:ToolNetworkTool -> ae2:ToolNetworkTool
shaped= shaped=
ae2:ItemMaterial.EngProcessor mc:iron_ingot mc:iron_ingot, ae2:ItemMaterial.EngProcessor oredictionary:ingotIron oredictionary:ingotIron,
mc:gold_ingot mc:redstone mc:gold_ingot oredictionary:ingotGold oredictionary:dustRedstone oredictionary:ingotGold
-> ae2:ToolBiometricCard -> ae2:ToolBiometricCard
shaped= shaped=
ae2:ItemMaterial.CalcProcessor mc:iron_ingot mc:iron_ingot, ae2:ItemMaterial.CalcProcessor oredictionary:ingotIron oredictionary:ingotIron,
mc:gold_ingot mc:redstone mc:gold_ingot oredictionary:ingotGold oredictionary:dustRedstone oredictionary:ingotGold
-> ae2:ToolMemoryCard -> ae2:ToolMemoryCard
shaped= shaped=
ae2:ItemMaterial.FormationCore mc:iron_ingot _, ae2:ItemMaterial.FormationCore oredictionary:ingotIron _,
mc:iron_ingot ae2:ItemMaterial.Cell4kPart _, oredictionary:ingotIron ae2:ItemMaterial.Cell4kPart _,
_ _ ae2:BlockEnergyCell _ _ ae2:BlockEnergyCell
-> ae2:ToolColorApplicator -> ae2:ToolColorApplicator
@@ -96,96 +96,96 @@ shaped=
shaped= shaped=
ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White, ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White,
ae2:PaintBall.White mc:glowstone_dust ae2:PaintBall.White, ae2:PaintBall.White oredictionary:dustGlowstone ae2:PaintBall.White,
ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White ae2:PaintBall.White
-> 8 ae2:LumenPaintBall.White -> 8 ae2:LumenPaintBall.White
shaped= shaped=
ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black, ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black,
ae2:PaintBall.Black mc:glowstone_dust ae2:PaintBall.Black, ae2:PaintBall.Black oredictionary:dustGlowstone ae2:PaintBall.Black,
ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black ae2:PaintBall.Black
-> 8 ae2:LumenPaintBall.Black -> 8 ae2:LumenPaintBall.Black
shaped= shaped=
ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red, ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red,
ae2:PaintBall.Red mc:glowstone_dust ae2:PaintBall.Red, ae2:PaintBall.Red oredictionary:dustGlowstone ae2:PaintBall.Red,
ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red ae2:PaintBall.Red
-> 8 ae2:LumenPaintBall.Red -> 8 ae2:LumenPaintBall.Red
shaped= shaped=
ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green, ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green,
ae2:PaintBall.Green mc:glowstone_dust ae2:PaintBall.Green, ae2:PaintBall.Green oredictionary:dustGlowstone ae2:PaintBall.Green,
ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green ae2:PaintBall.Green
-> 8 ae2:LumenPaintBall.Green -> 8 ae2:LumenPaintBall.Green
shaped= shaped=
ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown, ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown,
ae2:PaintBall.Brown mc:glowstone_dust ae2:PaintBall.Brown, ae2:PaintBall.Brown oredictionary:dustGlowstone ae2:PaintBall.Brown,
ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown ae2:PaintBall.Brown
-> 8 ae2:LumenPaintBall.Brown -> 8 ae2:LumenPaintBall.Brown
shaped= shaped=
ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue, ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue,
ae2:PaintBall.Blue mc:glowstone_dust ae2:PaintBall.Blue, ae2:PaintBall.Blue oredictionary:dustGlowstone ae2:PaintBall.Blue,
ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue ae2:PaintBall.Blue
-> 8 ae2:LumenPaintBall.Blue -> 8 ae2:LumenPaintBall.Blue
shaped= shaped=
ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple, ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple,
ae2:PaintBall.Purple mc:glowstone_dust ae2:PaintBall.Purple, ae2:PaintBall.Purple oredictionary:dustGlowstone ae2:PaintBall.Purple,
ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple ae2:PaintBall.Purple
-> 8 ae2:LumenPaintBall.Purple -> 8 ae2:LumenPaintBall.Purple
shaped= shaped=
ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan, ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan,
ae2:PaintBall.Cyan mc:glowstone_dust ae2:PaintBall.Cyan, ae2:PaintBall.Cyan oredictionary:dustGlowstone ae2:PaintBall.Cyan,
ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan ae2:PaintBall.Cyan
-> 8 ae2:LumenPaintBall.Cyan -> 8 ae2:LumenPaintBall.Cyan
shaped= shaped=
ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray, ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray,
ae2:PaintBall.LightGray mc:glowstone_dust ae2:PaintBall.LightGray, ae2:PaintBall.LightGray oredictionary:dustGlowstone ae2:PaintBall.LightGray,
ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray ae2:PaintBall.LightGray
-> 8 ae2:LumenPaintBall.LightGray -> 8 ae2:LumenPaintBall.LightGray
shaped= shaped=
ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray, ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray,
ae2:PaintBall.Gray mc:glowstone_dust ae2:PaintBall.Gray, ae2:PaintBall.Gray oredictionary:dustGlowstone ae2:PaintBall.Gray,
ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray ae2:PaintBall.Gray
-> 8 ae2:LumenPaintBall.Gray -> 8 ae2:LumenPaintBall.Gray
shaped= shaped=
ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink, ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink,
ae2:PaintBall.Pink mc:glowstone_dust ae2:PaintBall.Pink, ae2:PaintBall.Pink oredictionary:dustGlowstone ae2:PaintBall.Pink,
ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink ae2:PaintBall.Pink
-> 8 ae2:LumenPaintBall.Pink -> 8 ae2:LumenPaintBall.Pink
shaped= shaped=
ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime, ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime,
ae2:PaintBall.Lime mc:glowstone_dust ae2:PaintBall.Lime, ae2:PaintBall.Lime oredictionary:dustGlowstone ae2:PaintBall.Lime,
ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime ae2:PaintBall.Lime
-> 8 ae2:LumenPaintBall.Lime -> 8 ae2:LumenPaintBall.Lime
shaped= shaped=
ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow, ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow,
ae2:PaintBall.Yellow mc:glowstone_dust ae2:PaintBall.Yellow, ae2:PaintBall.Yellow oredictionary:dustGlowstone ae2:PaintBall.Yellow,
ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow ae2:PaintBall.Yellow
-> 8 ae2:LumenPaintBall.Yellow -> 8 ae2:LumenPaintBall.Yellow
shaped= shaped=
ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue, ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue,
ae2:PaintBall.LightBlue mc:glowstone_dust ae2:PaintBall.LightBlue, ae2:PaintBall.LightBlue oredictionary:dustGlowstone ae2:PaintBall.LightBlue,
ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue ae2:PaintBall.LightBlue
-> 8 ae2:LumenPaintBall.LightBlue -> 8 ae2:LumenPaintBall.LightBlue
shaped= shaped=
ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta, ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta,
ae2:PaintBall.Magenta mc:glowstone_dust ae2:PaintBall.Magenta, ae2:PaintBall.Magenta oredictionary:dustGlowstone ae2:PaintBall.Magenta,
ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta ae2:PaintBall.Magenta
-> 8 ae2:LumenPaintBall.Magenta -> 8 ae2:LumenPaintBall.Magenta
shaped= shaped=
ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange, ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange,
ae2:PaintBall.Orange mc:glowstone_dust ae2:PaintBall.Orange, ae2:PaintBall.Orange oredictionary:dustGlowstone ae2:PaintBall.Orange,
ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange ae2:PaintBall.Orange
-> 8 ae2:LumenPaintBall.Orange -> 8 ae2:LumenPaintBall.Orange