10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
export default function*({ecs, entity, other}) {
|
|
if (other.Inventory) {
|
|
other.Inventory.give({
|
|
qty: 1,
|
|
source: '/resources/tomato/tomato.item.json',
|
|
})
|
|
ecs.destroy(entity.id);
|
|
}
|
|
}
|