Teleposers and refractoring
This commit is contained in:
parent
1b9f72b494
commit
a8a0ae6e8b
145 changed files with 594 additions and 162 deletions
|
@ -7,7 +7,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilAir extends ItemSigilBase
|
||||
{
|
||||
|
||||
public ItemSigilAir()
|
||||
{
|
||||
super("air", 50);
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -12,7 +12,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilBloodLight extends ItemSigilBase
|
||||
{
|
||||
|
||||
public ItemSigilBloodLight()
|
||||
{
|
||||
super("bloodLight", 10);
|
||||
|
|
|
@ -8,7 +8,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilCompression extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilCompression()
|
||||
{
|
||||
super("compression", 200);
|
||||
|
|
|
@ -16,7 +16,6 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
|
|||
|
||||
public class ItemSigilDivination extends ItemSigilBase implements IAltarReader
|
||||
{
|
||||
|
||||
public ItemSigilDivination()
|
||||
{
|
||||
super("divination");
|
||||
|
|
|
@ -8,7 +8,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilElementalAffinity extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilElementalAffinity()
|
||||
{
|
||||
super("elementalAffinity", 200);
|
||||
|
|
|
@ -13,7 +13,6 @@ import java.util.List;
|
|||
|
||||
public class ItemSigilEnderSeverance extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilEnderSeverance()
|
||||
{
|
||||
super("enderSeverance", 200);
|
||||
|
|
|
@ -8,7 +8,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilFastMiner extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilFastMiner()
|
||||
{
|
||||
super("fastMiner", 100);
|
||||
|
|
|
@ -12,7 +12,6 @@ import net.minecraftforge.common.IPlantable;
|
|||
|
||||
public class ItemSigilGreenGrove extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilGreenGrove()
|
||||
{
|
||||
super("greenGrove", 150);
|
||||
|
|
|
@ -8,7 +8,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilHaste extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilHaste()
|
||||
{
|
||||
super("haste", 250);
|
||||
|
|
|
@ -16,7 +16,6 @@ import net.minecraftforge.fluids.IFluidHandler;
|
|||
|
||||
public class ItemSigilLava extends ItemSigilBase
|
||||
{
|
||||
|
||||
public ItemSigilLava()
|
||||
{
|
||||
super("lava", 1000);
|
||||
|
|
|
@ -11,7 +11,6 @@ import java.util.List;
|
|||
|
||||
public class ItemSigilMagnetism extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilMagnetism()
|
||||
{
|
||||
super("magnetism", 50);
|
||||
|
|
|
@ -11,7 +11,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilPhantomBridge extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilPhantomBridge()
|
||||
{
|
||||
super("phantomBridge", 100);
|
||||
|
|
|
@ -17,7 +17,6 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
|
|||
|
||||
public class ItemSigilSeer extends ItemSigilBase implements IAltarReader
|
||||
{
|
||||
|
||||
public ItemSigilSeer()
|
||||
{
|
||||
super("seer");
|
||||
|
|
|
@ -11,7 +11,6 @@ import net.minecraftforge.fluids.IFluidBlock;
|
|||
|
||||
public class ItemSigilSuppression extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilSuppression()
|
||||
{
|
||||
super("suppression", 400);
|
||||
|
|
|
@ -17,7 +17,6 @@ import java.util.List;
|
|||
|
||||
public class ItemSigilToggleable extends ItemSigilBase
|
||||
{
|
||||
|
||||
public ItemSigilToggleable(String name, int lpUsed)
|
||||
{
|
||||
super(name, lpUsed);
|
||||
|
|
|
@ -8,7 +8,6 @@ import net.minecraft.world.World;
|
|||
|
||||
public class ItemSigilWhirlwind extends ItemSigilToggleable
|
||||
{
|
||||
|
||||
public ItemSigilWhirlwind()
|
||||
{
|
||||
super("whirlwind", 250);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue