fixed stat issue for PH and RH

This commit is contained in:
2024-07-21 11:12:50 -04:00
parent 82f9d35f90
commit e176872c05
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include "../potion.h"
class poison_health final: public potion {
static const int LOSE_HEALTH = 5;
static const int LOSE_HEALTH = 10;
public:
poison_health(const position &pos);
void apply(const enum race &race, int &HP, int &ATK, int &DEF,

View File

@ -4,7 +4,7 @@
#include "../potion.h"
class restore_health final: public potion {
static const int GAIN_HEALTH = 5;
static const int GAIN_HEALTH = 10;
public:
restore_health(const position &pos);
void apply(const enum race &race, int &HP, int &ATK, int &DEF,