2015-11-09 18:05:52 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("BlockCrystal.java") is part of the Actually Additions mod for Minecraft.
|
2015-11-09 18:05:52 +01:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-11-09 18:05:52 +01:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-11-09 18:05:52 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2016-01-10 15:29:44 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.ItemBlockBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheCrystals;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2015-11-09 18:05:52 +01:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
2016-11-21 16:23:48 +01:00
|
|
|
import net.minecraft.block.properties.PropertyEnum;
|
|
|
|
import net.minecraft.block.state.BlockStateContainer;
|
2016-01-07 21:41:28 +01:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-11-09 18:05:52 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.NonNullList;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class BlockCrystal extends BlockBase{
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static final TheCrystals[] ALL_CRYSTALS = TheCrystals.values();
|
2016-11-21 16:23:48 +01:00
|
|
|
private static final PropertyEnum<TheCrystals> TYPE = PropertyEnum.create("type", TheCrystals.class);
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2016-11-16 20:31:16 +01:00
|
|
|
private final boolean isEmpowered;
|
2016-08-03 13:36:42 +02:00
|
|
|
|
|
|
|
public BlockCrystal(String name, boolean isEmpowered){
|
2016-04-20 21:39:03 +02:00
|
|
|
super(Material.ROCK, name);
|
2016-08-03 13:36:42 +02:00
|
|
|
this.isEmpowered = isEmpowered;
|
2015-11-09 18:05:52 +01:00
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setResistance(10.0F);
|
|
|
|
this.setHarvestLevel("pickaxe", 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int damageDropped(IBlockState state){
|
|
|
|
return this.getMetaFromState(state);
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
2016-06-10 21:52:37 +02:00
|
|
|
@Override
|
2015-11-09 18:05:52 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2017-06-17 00:48:49 +02:00
|
|
|
public void getSubBlocks(CreativeTabs tab, NonNullList list){
|
2016-06-17 23:50:38 +02:00
|
|
|
for(int j = 0; j < ALL_CRYSTALS.length; j++){
|
2017-06-17 00:48:49 +02:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-04-20 21:39:03 +02:00
|
|
|
protected ItemBlockBase getItemBlock(){
|
|
|
|
return new TheItemBlock(this);
|
2016-02-01 20:32:49 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2017-06-29 18:30:02 +02:00
|
|
|
public void registerRendering(){
|
2016-06-17 23:50:38 +02:00
|
|
|
for(int i = 0; i < ALL_CRYSTALS.length; i++){
|
2016-11-21 16:23:48 +01:00
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), TYPE.getName()+"="+ALL_CRYSTALS[i].name);
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 18:05:52 +01:00
|
|
|
@Override
|
2016-11-21 16:23:48 +01:00
|
|
|
public IBlockState getStateFromMeta(int meta){
|
|
|
|
return this.getDefaultState().withProperty(TYPE, TheCrystals.values()[meta]);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetaFromState(IBlockState state){
|
|
|
|
return state.getValue(TYPE).ordinal();
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 15:29:44 +01:00
|
|
|
@Override
|
2016-11-21 16:23:48 +01:00
|
|
|
protected BlockStateContainer createBlockState(){
|
|
|
|
return new BlockStateContainer(this, TYPE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return stack.getItemDamage() >= ALL_CRYSTALS.length ? EnumRarity.COMMON : ALL_CRYSTALS[stack.getItemDamage()].rarity;
|
2016-01-10 15:29:44 +01:00
|
|
|
}
|
|
|
|
|
2015-11-09 18:05:52 +01:00
|
|
|
public static class TheItemBlock extends ItemBlockBase{
|
|
|
|
|
|
|
|
public TheItemBlock(Block block){
|
|
|
|
super(block);
|
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2016-11-19 23:12:22 +01:00
|
|
|
return stack.getItemDamage() >= ALL_CRYSTALS.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+"_"+ALL_CRYSTALS[stack.getItemDamage()].name;
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
2016-08-03 13:36:42 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasEffect(ItemStack stack){
|
|
|
|
return this.block instanceof BlockCrystal && ((BlockCrystal)this.block).isEmpowered;
|
|
|
|
}
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
}
|