this doesn't compile yet, but have something to peek at
This commit is contained in:
parent
973f1019a5
commit
5fcdd978d7
329 changed files with 3247 additions and 2953 deletions
|
@ -1,8 +1,6 @@
|
|||
package WayofTime.bloodmagic.tile;
|
||||
|
||||
import WayofTime.bloodmagic.tile.base.TileTicking;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import net.minecraft.block.state.IBlockState;
|
||||
import net.minecraft.entity.item.EntityItem;
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
@ -25,12 +23,7 @@ public class TileDemonCrystal extends TileTicking
|
|||
|
||||
public double progressToNextCrystal = 0;
|
||||
public int internalCounter = 0;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
public int crystalCount = 1;
|
||||
@Getter
|
||||
@Setter
|
||||
public EnumFacing placement = EnumFacing.UP; //Side that this crystal is placed on.
|
||||
|
||||
public TileDemonCrystal()
|
||||
|
@ -188,4 +181,20 @@ public class TileDemonCrystal extends TileTicking
|
|||
tag.setDouble("progress", progressToNextCrystal);
|
||||
return tag;
|
||||
}
|
||||
|
||||
public int getCrystalCount() {
|
||||
return crystalCount;
|
||||
}
|
||||
|
||||
public void setCrystalCount(int crystalCount) {
|
||||
this.crystalCount = crystalCount;
|
||||
}
|
||||
|
||||
public EnumFacing getPlacement() {
|
||||
return placement;
|
||||
}
|
||||
|
||||
public void setPlacement(EnumFacing placement) {
|
||||
this.placement = placement;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue