mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
120 lines
3.4 KiB
Java
120 lines
3.4 KiB
Java
package com.hbm.blocks;
|
|
|
|
import java.util.Random;
|
|
|
|
import com.hbm.entity.mob.EntityNuclearCreeper;
|
|
import com.hbm.lib.Library;
|
|
import com.hbm.lib.ModDamageSource;
|
|
import com.hbm.lib.RefStrings;
|
|
import com.hbm.main.MainRegistry;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.entity.Entity;
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.entity.monster.EntityCreeper;
|
|
import net.minecraft.entity.monster.EntityZombie;
|
|
import net.minecraft.entity.passive.EntityMooshroom;
|
|
import net.minecraft.entity.passive.EntityVillager;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.init.Blocks;
|
|
import net.minecraft.potion.Potion;
|
|
import net.minecraft.potion.PotionEffect;
|
|
import net.minecraft.util.DamageSource;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraft.world.World;
|
|
import net.minecraftforge.fluids.BlockFluidClassic;
|
|
import net.minecraftforge.fluids.Fluid;
|
|
|
|
public class AcidBlock extends BlockFluidClassic {
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public static IIcon stillIcon;
|
|
@SideOnly(Side.CLIENT)
|
|
public static IIcon flowingIcon;
|
|
public Random rand = new Random();
|
|
|
|
public static DamageSource damageSource;
|
|
|
|
public AcidBlock(Fluid fluid, Material material, DamageSource damage) {
|
|
super(fluid, material);
|
|
damageSource = damage;
|
|
setQuantaPerBlock(4);
|
|
setCreativeTab(null);
|
|
displacements.put(this, false);
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public IIcon getIcon(int side, int meta) {
|
|
return (side == 0 || side == 1) ? stillIcon : flowingIcon;
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerBlockIcons(IIconRegister register) {
|
|
stillIcon = register.registerIcon(RefStrings.MODID + ":acid_still");
|
|
flowingIcon = register.registerIcon(RefStrings.MODID + ":acid_flowing");
|
|
}
|
|
|
|
@Override
|
|
public boolean canDisplace(IBlockAccess world, int x, int y, int z) {
|
|
|
|
if (world.getBlock(x, y, z).getMaterial().isLiquid()) {
|
|
return false;
|
|
}
|
|
return super.canDisplace(world, x, y, z);
|
|
}
|
|
|
|
@Override
|
|
public boolean displaceIfPossible(World world, int x, int y, int z) {
|
|
|
|
if (world.getBlock(x, y, z).getMaterial().isLiquid()) {
|
|
return false;
|
|
}
|
|
return super.displaceIfPossible(world, x, y, z);
|
|
}
|
|
|
|
public void onEntityCollidedWithBlock(World world, int x, int y, int z, Entity entity) {
|
|
entity.setInWeb();
|
|
entity.attackEntityFrom(ModDamageSource.acid, 10000F);
|
|
}
|
|
|
|
public void updateTick(World world, int x, int y, int z, Random rand) {
|
|
super.updateTick(world, x, y, z, rand);
|
|
|
|
reactToBlocks(world, x + 1, y, z);
|
|
reactToBlocks(world, x - 1, y, z);
|
|
reactToBlocks(world, x, y + 1, z);
|
|
reactToBlocks(world, x, y - 1, z);
|
|
reactToBlocks(world, x, y, z + 1);
|
|
reactToBlocks(world, x, y, z - 1);
|
|
}
|
|
|
|
@Override
|
|
public void onNeighborBlockChange(World world, int x, int y, int z, Block block)
|
|
{
|
|
super.onNeighborBlockChange(world, x, y, z, block);
|
|
|
|
reactToBlocks(world, x + 1, y, z);
|
|
reactToBlocks(world, x - 1, y, z);
|
|
reactToBlocks(world, x, y + 1, z);
|
|
reactToBlocks(world, x, y - 1, z);
|
|
reactToBlocks(world, x, y, z + 1);
|
|
reactToBlocks(world, x, y, z - 1);
|
|
}
|
|
|
|
public void reactToBlocks(World world, int x, int y, int z) {
|
|
if(world.getBlock(x, y, z) != ModBlocks.acid_block) {
|
|
world.setBlock(x, y, z, Blocks.air);
|
|
}
|
|
}
|
|
|
|
public int tickRate(World p_149738_1_) {
|
|
return 5;
|
|
}
|
|
|
|
}
|