We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad5ef8 commit 1f92176Copy full SHA for 1f92176
development/code/logic/rules/WithAgeComesWisdomRule.ts
@@ -5,13 +5,13 @@ import { BaseRule } from './BaseRule';
5
export class WithAgeComesWisdomRule extends BaseRule {
6
constructor(isRevealed = false) {
7
const description = 'With age comes wisdom.';
8
- const condition = () => game.getRoundCounter() === 20;
+ const condition = () => game.getRoundCounter() === 50;
9
const onTrigger = () => {
10
new RuleLog(
11
'Children of war, you have grown old. Each player gains five XP.',
12
).addToQueue();
13
game.getPlayers().forEach((player) => {
14
- player.xp += 5;
+ player.xp += 10;
15
});
16
};
17
0 commit comments