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