Amber ore, raw amber, amber gem, amber block

This commit is contained in:
paulevsGitch 2020-11-26 02:21:11 +03:00
parent 6b1029a628
commit 4a54b072d7
18 changed files with 69 additions and 19 deletions

View file

@ -0,0 +1,12 @@
package ru.betterend.blocks;
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
import net.minecraft.block.Blocks;
import net.minecraft.block.MaterialColor;
import ru.betterend.blocks.basis.BlockBase;
public class BlockAmber extends BlockBase {
public BlockAmber() {
super(FabricBlockSettings.copyOf(Blocks.DIAMOND_BLOCK).materialColor(MaterialColor.YELLOW));
}
}