Skip to content

Commit

Permalink
Improve boss
Browse files Browse the repository at this point in the history
  • Loading branch information
leaftail1880 committed Jan 6, 2025
1 parent 92dd2f1 commit 2e35192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/rpg/boss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ export class Boss {
const player = players.find(e => e.id === playerId)
if (!player) return

givePlayerMoneyAndXp(player, ~~damage * 2, ~~(damage / 50))
givePlayerMoneyAndXp(player, ~~(damage * 4), ~~(damage / 20))
player.scores.pvp = 0
}
this.damage.clear()
}
Expand Down

0 comments on commit 2e35192

Please sign in to comment.