aether-legacy/src/main/java/com/gildedgames/the_aether/blocks/decorative/BlockSkyrootPlanks.java

16 lines
467 B
Java
Raw Normal View History

2020-08-14 08:29:22 +02:00
package com.gildedgames.the_aether.blocks.decorative;
2018-12-07 05:33:43 +01:00
2023-03-13 19:53:26 +01:00
import com.gildedgames.the_aether.Aether;
2018-12-07 05:33:43 +01:00
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
2018-12-07 06:32:48 +01:00
public class BlockSkyrootPlanks extends Block {
2023-03-13 19:53:26 +01:00
public BlockSkyrootPlanks() {
super(Material.wood);
2018-12-07 05:33:43 +01:00
2023-03-13 19:53:26 +01:00
this.setHardness(2F);
this.setResistance(5F);
this.setStepSound(soundTypeWood);
this.setBlockTextureName(Aether.find("skyroot_planks"));
}
2018-12-07 05:33:43 +01:00
}