hadean-old/content/core/actions/GatherRocksAction.ts

10 lines
205 B
TypeScript
Raw Normal View History

2021-06-22 19:25:41 -04:00
import { registerAction } from '@actions';
import { Game } from '@game';
registerAction('Gather Rocks', (qty) => {
Game.current.board.addTask({
taskId: 'core:gather-rocks',
options: {}
})
});