mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
102 lines
2.8 KiB
Java
102 lines
2.8 KiB
Java
package com.hbm.blocks.gas;
|
|
|
|
import java.util.Random;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.extprop.HbmLivingProps;
|
|
import com.hbm.util.ContaminationUtil;
|
|
import com.hbm.util.ContaminationUtil.ContaminationType;
|
|
import com.hbm.util.ContaminationUtil.HazardType;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
public class BlockGasRadonTomb extends BlockGasBase {
|
|
|
|
/*
|
|
* You should not have come here.
|
|
*
|
|
* This is not a place of honor. No great deed is commemorated here.
|
|
*
|
|
* Nothing of value is here.
|
|
*
|
|
* What is here is dangerous and repulsive.
|
|
*
|
|
* We considered ourselves a powerful culture. We harnessed the hidden fire,
|
|
* and used it for our own purposes.
|
|
*
|
|
* Then we saw the fire could burn within living things, unnoticed until it
|
|
* destroyed them.
|
|
*
|
|
* And we were afraid.
|
|
*
|
|
* We built great tombs to hold the fire for one hundred thousand years,
|
|
* after which it would no longer kill.
|
|
*
|
|
* If this place is opened, the fire will not be isolated from the world,
|
|
* and we will have failed to protect you.
|
|
*
|
|
* Leave this place and never come back.
|
|
*/
|
|
|
|
public BlockGasRadonTomb() {
|
|
super(0.1F, 0.3F, 0.1F);
|
|
}
|
|
|
|
@Override
|
|
public void onEntityCollidedWithBlock(World world, int p_149670_2_, int p_149670_3_, int p_149670_4_, Entity entity) {
|
|
|
|
if(entity instanceof EntityLivingBase) {
|
|
ContaminationUtil.contaminate((EntityLivingBase)entity, HazardType.RADIATION, ContaminationType.RAD_BYPASS, 0.5F);
|
|
HbmLivingProps.incrementFibrosis((EntityLivingBase)entity, 20);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public ForgeDirection getFirstDirection(World world, int x, int y, int z) {
|
|
|
|
if(world.rand.nextInt(3) == 0)
|
|
return ForgeDirection.UP;
|
|
|
|
return ForgeDirection.DOWN;
|
|
}
|
|
|
|
@Override
|
|
public ForgeDirection getSecondDirection(World world, int x, int y, int z) {
|
|
return this.randomHorizontal(world);
|
|
}
|
|
|
|
@Override
|
|
public void updateTick(World world, int x, int y, int z, Random rand) {
|
|
|
|
if(!world.isRemote) {
|
|
|
|
if(rand.nextInt(10) == 0) {
|
|
Block b = world.getBlock(x, y - 1, z);
|
|
|
|
if(b == Blocks.grass) {
|
|
if(rand.nextInt(5) == 0)
|
|
world.setBlock(x, y - 1, z, Blocks.dirt, 1, 3);
|
|
else
|
|
world.setBlock(x, y - 1, z, ModBlocks.waste_earth);
|
|
}
|
|
|
|
if((b.getMaterial() == Material.grass || b.getMaterial() == Material.leaves || b.getMaterial() == Material.plants || b.getMaterial() == Material.vine) && !b.isNormalCube())
|
|
world.setBlock(x, y - 1, z, Blocks.air);
|
|
}
|
|
|
|
if(rand.nextInt(600) == 0) {
|
|
world.setBlockToAir(x, y, z);
|
|
return;
|
|
}
|
|
}
|
|
|
|
super.updateTick(world, x, y, z, rand);
|
|
}
|
|
}
|