mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
25 lines
671 B
Java
25 lines
671 B
Java
package net.xevianlight.aphelion.block.custom;
|
|
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.level.block.Block;
|
|
import net.minecraft.world.level.block.SoundType;
|
|
|
|
public class RocketSeat extends Block {
|
|
public RocketSeat(Properties properties) {
|
|
super(properties);
|
|
}
|
|
|
|
public static Properties getProperties() {
|
|
return Properties
|
|
.of()
|
|
.sound(SoundType.STONE)
|
|
.destroyTime(2f)
|
|
.explosionResistance(10f)
|
|
.requiresCorrectToolForDrops();
|
|
}
|
|
|
|
public static Item.Properties getItemProperties() {
|
|
return new Item.Properties();
|
|
}
|
|
}
|