2020-06-14 03:04:21 +00:00
|
|
|
package com.thebrokenrail.twine.block;
|
|
|
|
|
2020-06-17 21:57:52 +00:00
|
|
|
import com.thebrokenrail.twine.util.ItemUtil;
|
|
|
|
import net.fabricmc.api.EnvType;
|
|
|
|
import net.fabricmc.api.Environment;
|
2020-06-14 03:04:21 +00:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.Material;
|
|
|
|
import net.minecraft.block.MaterialColor;
|
2020-06-17 21:57:52 +00:00
|
|
|
import net.minecraft.client.item.TooltipContext;
|
2020-06-14 03:04:21 +00:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.LivingEntity;
|
|
|
|
import net.minecraft.entity.damage.DamageSource;
|
|
|
|
import net.minecraft.entity.mob.Monster;
|
2020-06-17 21:57:52 +00:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.text.Text;
|
2020-06-14 03:04:21 +00:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2020-06-17 21:57:52 +00:00
|
|
|
import net.minecraft.world.BlockView;
|
2020-06-14 03:04:21 +00:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2020-06-17 21:57:52 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
2020-06-14 03:04:21 +00:00
|
|
|
public class GlowingObsidianBlock extends Block {
|
|
|
|
public GlowingObsidianBlock() {
|
|
|
|
super(Settings.of(Material.STONE, MaterialColor.BLACK).requiresTool().strength(50.0F, 1200.0F).lightLevel(state -> 4));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSteppedOn(World world, BlockPos pos, Entity entity) {
|
|
|
|
super.onSteppedOn(world, pos, entity);
|
|
|
|
if (entity instanceof LivingEntity && entity.age % 5 == 0) {
|
2020-06-15 20:05:35 +00:00
|
|
|
final float amount = 2f;
|
2020-06-14 03:04:21 +00:00
|
|
|
if (entity instanceof Monster) {
|
|
|
|
((LivingEntity) entity).heal(amount);
|
|
|
|
} else {
|
|
|
|
entity.damage(DamageSource.MAGIC, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-17 21:57:52 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
@Environment(EnvType.CLIENT)
|
|
|
|
public void buildTooltip(ItemStack stack, BlockView world, List<Text> tooltip, TooltipContext options) {
|
|
|
|
super.buildTooltip(stack, world, tooltip, options);
|
|
|
|
ItemUtil.addTooltip("block", "glowing_obsidian", 2, tooltip);
|
|
|
|
}
|
2020-06-14 03:04:21 +00:00
|
|
|
}
|