silphius/resources/tomato/collision-start.js
2024-10-19 08:40:35 -05:00

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);
}
}