Skip to content

Commit 1f92176

Browse files
committed
[#208] Increased number of turns for "with age comes wisdom" rule
1 parent aad5ef8 commit 1f92176

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

development/code/logic/rules/WithAgeComesWisdomRule.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { BaseRule } from './BaseRule';
55
export class WithAgeComesWisdomRule extends BaseRule {
66
constructor(isRevealed = false) {
77
const description = 'With age comes wisdom.';
8-
const condition = () => game.getRoundCounter() === 20;
8+
const condition = () => game.getRoundCounter() === 50;
99
const onTrigger = () => {
1010
new RuleLog(
1111
'Children of war, you have grown old. Each player gains five XP.',
1212
).addToQueue();
1313
game.getPlayers().forEach((player) => {
14-
player.xp += 5;
14+
player.xp += 10;
1515
});
1616
};
1717

0 commit comments

Comments
 (0)