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