10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
|
|
import { registerAction } from '@actions';
|
||
|
|
import { Game } from '@game';
|
||
|
|
|
||
|
|
registerAction('Gather Rocks', (qty) => {
|
||
|
|
Game.current.board.addTask({
|
||
|
|
taskId: 'core:gather-rocks',
|
||
|
|
options: {}
|
||
|
|
})
|
||
|
|
});
|