blob: c7ca01886d27762bd48aacfabcfa20cc1ce32a82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/**
*
*/
package darkknight.jewelrycraft.tileentity;
import darkknight.jewelrycraft.config.ConfigHandler;
import net.minecraft.tileentity.TileEntity;
/**
* @author Sorin
*/
public class TileEntityCrystal extends TileEntity
{
public int shine = 120;
boolean descent = false;
int timer = 0;
@Override
public void updateEntity()
{
if (ConfigHandler.CRYSTAL_GLOW){
timer++;
if (timer > 20){
if (shine < 230 && !descent){
shine += 2;
if (shine >= 230) descent = true;
}else if (shine > 100 && descent){
shine -= 2;
if (shine <= 100) descent = false;
}
this.worldObj.markBlockRangeForRenderUpdate(xCoord, yCoord, zCoord, xCoord, yCoord, zCoord);
timer = 0;
}
}
}
public boolean canUpdate()
{
return ConfigHandler.CRYSTAL_GLOW;
}
}
|