Begin radio evolution

This commit is contained in:
Andrew-71 2023-08-29 12:36:54 +03:00
parent b54f6f4a31
commit f1cd38e73b
5 changed files with 6 additions and 12 deletions

View file

@ -1,5 +0,0 @@
Ideas for block functionality
Radio: Like a jukebox on steroids. Maybe container for disks, maybe a way to connect to real radio. Who knows.
TV: CC compatible peripheral which combines a speaker and an 8x8 monitor
Crate: Like a shulker box but much smaller (but cheaper!)

View file

@ -13,8 +13,8 @@ import net.minecraft.util.shape.VoxelShape;
import net.minecraft.util.shape.VoxelShapes;
import net.minecraft.world.BlockView;
public class RadioBlock extends HorizontalFacingBlock {
public RadioBlock() {
public class RadioReceiverBlock extends HorizontalFacingBlock {
public RadioReceiverBlock() {
super(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL).notSolid().pistonBehavior(PistonBehavior.DESTROY).strength(1f, 2f).mapColor(MapColor.PALE_YELLOW));
setDefaultState(getDefaultState().with(Properties.HORIZONTAL_FACING, Direction.NORTH));
}