12 lines
No EOL
285 B
TypeScript
12 lines
No EOL
285 B
TypeScript
import BlockBehaviour from "./BlockBehaviour";
|
|
import Item from "../items/Item";
|
|
|
|
export default class BlockBehaviourRedstoneOre extends BlockBehaviour {
|
|
public droppedItem(blockId:number) {
|
|
return Item.clay.shiftedItemID;
|
|
}
|
|
|
|
public droppedCount(blockId:number) {
|
|
return 4;
|
|
}
|
|
} |