aether-legacy/src/main/java/com/gildedgames/the_aether/blocks/decorative/BlockSkyrootPlanks.java
2023-03-13 19:53:26 +01:00

16 lines
467 B
Java

package com.gildedgames.the_aether.blocks.decorative;
import com.gildedgames.the_aether.Aether;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
public class BlockSkyrootPlanks extends Block {
public BlockSkyrootPlanks() {
super(Material.wood);
this.setHardness(2F);
this.setResistance(5F);
this.setStepSound(soundTypeWood);
this.setBlockTextureName(Aether.find("skyroot_planks"));
}
}