Textures, fixes

This commit is contained in:
paulevsGitch 2020-09-28 15:34:04 +03:00
parent 20eac0cf8b
commit 0373b4c116
47 changed files with 333 additions and 94 deletions

View file

@ -0,0 +1,13 @@
package ru.betterend.blocks;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
import net.minecraft.block.Material;
import net.minecraft.sound.BlockSoundGroup;
import ru.betterend.blocks.basis.BlockBase;
public class BlockMossyGlowshroomHymenophore extends BlockBase {
public BlockMossyGlowshroomHymenophore() {
super(FabricBlockSettings.of(Material.WOOD).breakByTool(FabricToolTags.AXES).sounds(BlockSoundGroup.WART_BLOCK).lightLevel(15));
}
}