Teleposers and refractoring

This commit is contained in:
Arcaratus 2016-01-01 12:08:17 -05:00
parent 1b9f72b494
commit a8a0ae6e8b
145 changed files with 594 additions and 162 deletions

View file

@ -7,7 +7,6 @@ import net.minecraft.world.World;
public class ItemSigilAir extends ItemSigilBase
{
public ItemSigilAir()
{
super("air", 50);

View file

@ -20,7 +20,6 @@ import java.util.List;
@Getter
public class ItemSigilBase extends ItemBindable implements ISigil
{
protected final String tooltipBase;
private final String name;
private boolean toggleable;

View file

@ -12,7 +12,6 @@ import net.minecraft.world.World;
public class ItemSigilBloodLight extends ItemSigilBase
{
public ItemSigilBloodLight()
{
super("bloodLight", 10);

View file

@ -8,7 +8,6 @@ import net.minecraft.world.World;
public class ItemSigilCompression extends ItemSigilToggleable
{
public ItemSigilCompression()
{
super("compression", 200);

View file

@ -16,7 +16,6 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
public class ItemSigilDivination extends ItemSigilBase implements IAltarReader
{
public ItemSigilDivination()
{
super("divination");

View file

@ -8,7 +8,6 @@ import net.minecraft.world.World;
public class ItemSigilElementalAffinity extends ItemSigilToggleable
{
public ItemSigilElementalAffinity()
{
super("elementalAffinity", 200);

View file

@ -13,7 +13,6 @@ import java.util.List;
public class ItemSigilEnderSeverance extends ItemSigilToggleable
{
public ItemSigilEnderSeverance()
{
super("enderSeverance", 200);

View file

@ -8,7 +8,6 @@ import net.minecraft.world.World;
public class ItemSigilFastMiner extends ItemSigilToggleable
{
public ItemSigilFastMiner()
{
super("fastMiner", 100);

View file

@ -12,7 +12,6 @@ import net.minecraftforge.common.IPlantable;
public class ItemSigilGreenGrove extends ItemSigilToggleable
{
public ItemSigilGreenGrove()
{
super("greenGrove", 150);

View file

@ -8,7 +8,6 @@ import net.minecraft.world.World;
public class ItemSigilHaste extends ItemSigilToggleable
{
public ItemSigilHaste()
{
super("haste", 250);

View file

@ -16,7 +16,6 @@ import net.minecraftforge.fluids.IFluidHandler;
public class ItemSigilLava extends ItemSigilBase
{
public ItemSigilLava()
{
super("lava", 1000);

View file

@ -11,7 +11,6 @@ import java.util.List;
public class ItemSigilMagnetism extends ItemSigilToggleable
{
public ItemSigilMagnetism()
{
super("magnetism", 50);

View file

@ -11,7 +11,6 @@ import net.minecraft.world.World;
public class ItemSigilPhantomBridge extends ItemSigilToggleable
{
public ItemSigilPhantomBridge()
{
super("phantomBridge", 100);

View file

@ -17,7 +17,6 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
public class ItemSigilSeer extends ItemSigilBase implements IAltarReader
{
public ItemSigilSeer()
{
super("seer");

View file

@ -11,7 +11,6 @@ import net.minecraftforge.fluids.IFluidBlock;
public class ItemSigilSuppression extends ItemSigilToggleable
{
public ItemSigilSuppression()
{
super("suppression", 400);

View file

@ -17,7 +17,6 @@ import java.util.List;
public class ItemSigilToggleable extends ItemSigilBase
{
public ItemSigilToggleable(String name, int lpUsed)
{
super(name, lpUsed);

View file

@ -8,7 +8,6 @@ import net.minecraft.world.World;
public class ItemSigilWhirlwind extends ItemSigilToggleable
{
public ItemSigilWhirlwind()
{
super("whirlwind", 250);