Skip to content

Commit

Permalink
Fix base fireball base damage
Browse files Browse the repository at this point in the history
  • Loading branch information
kyvg committed Sep 1, 2023
1 parent 0ab3cbd commit caccadc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/arena/magics/fireBall.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('fireBall', () => {

beforeEach(async () => {
const harks = { ...profsData.m.hark, wis: 20 };
const initiator = await TestUtils.createCharacter({ prof: 'm', magics: { fireBall: 2 }, harks });
const initiator = await TestUtils.createCharacter({ prof: 'm', magics: { fireBall: 3 }, harks });
const chars = await Promise.all(times(10, () => TestUtils.createCharacter()));
const charIds = chars.map(({ id }) => id);

Expand Down
2 changes: 1 addition & 1 deletion src/arena/magics/fireBall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class FireBall extends AoeDmgMagic {
aoeType: 'team',
magType: 'bad',
chance: [95, 95, 95],
effect: ['1d3+7', '1d3+7', '1d3+7'],
effect: ['1d3+5', '1d3+6', '1d3+7'],
dmgType: 'fire',
profList: ['m'],
});
Expand Down

0 comments on commit caccadc

Please sign in to comment.