Skip to content

Commit

Permalink
Give easy monsters a bit more health
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarrough committed Jan 16, 2024
1 parent 52c0765 commit d40de53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/content/dungeon-encounters.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ export const bosses = {}

easyMonsters['Easy does it'] = MonsterRoom(
Monster({
hp: random(8, 13),
hp: random(8, 14),
intents: [{damage: 7}, {damage: 11}, {damage: 7}, {block: 9}],
random: 2,
}),
)
easyMonsters['Easy does it x2'] = MonsterRoom(
Monster({
hp: random(8, 13),
hp: random(8, 14),
intents: [{damage: 7}, {damage: 11}, {damage: 7}, {block: 9}],
random: 2,
}),
Monster({
hp: random(8, 13),
hp: random(8, 14),
intents: [{damage: 6}, {damage: 11}, {damage: 5}, {block: 5}],
random: 1,
}),
Expand Down

1 comment on commit d40de53

@vercel
Copy link

@vercel vercel bot commented on d40de53 Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

slaytheweb – ./

slaytheweb-git-main-oskar.vercel.app
slaytheweb-oskar.vercel.app
slaytheweb.vercel.app
slaytheweb.cards

Please sign in to comment.