Skip to content

Commit

Permalink
unit test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit committed Oct 20, 2023
1 parent 84435fe commit 107e33f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/simulation/monsters/low/camdozaalGolems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const FlawedGolem = new SimpleMonster({
.tertiary(16, 'Barronite shards', [6, 12])
.tertiary(200, 'Clue scroll (beginner)')
.tertiary(800, 'Barronite guard'),
aliases: ['Flawed Golem']
aliases: ['flawed golem']
});

const MindGolem = new SimpleMonster({
Expand All @@ -39,7 +39,7 @@ const MindGolem = new SimpleMonster({
.tertiary(7.5, 'Mind core')
.tertiary(100, 'Clue scroll (beginner)')
.tertiary(500, 'Barronite guard'),
aliases: ['Mind Golem']
aliases: ['mind golem']
});

const BodyGolem = new SimpleMonster({
Expand All @@ -61,7 +61,7 @@ const BodyGolem = new SimpleMonster({
.tertiary(7.5, 'Body core')
.tertiary(62, 'Clue scroll (beginner)')
.tertiary(250, 'Barronite guard'),
aliases: ['Body Golem']
aliases: ['body golem']
});

const ChaosGolem = new SimpleMonster({
Expand All @@ -83,7 +83,7 @@ const ChaosGolem = new SimpleMonster({
.tertiary(7.5, 'Chaos core')
.tertiary(100, 'Clue scroll (beginner)')
.tertiary(150, 'Barronite guard'),
aliases: ['Chaos Golem']
aliases: ['chaos golem']
});

export const CamdozaalGolems = { FlawedGolem, MindGolem, BodyGolem, ChaosGolem };

0 comments on commit 107e33f

Please sign in to comment.