2024-10-26 14:24:38 +01:00
|
|
|
import BlockBehaviour from "./BlockBehaviour";
|
|
|
|
import Item from "../items/Item";
|
2024-10-17 01:51:41 +01:00
|
|
|
|
|
|
|
export default class BlockBehaviourRedstoneOre extends BlockBehaviour {
|
|
|
|
public droppedItem(blockId:number) {
|
|
|
|
return Item.clay.shiftedItemID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public droppedCount(blockId:number) {
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
}
|