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

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