From e176872c05503ac0f583113f3bcaf4bb875675c8 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Sun, 21 Jul 2024 11:12:50 -0400 Subject: [PATCH] fixed stat issue for PH and RH --- src/potions/poison_health.h | 2 +- src/potions/restore_health.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/potions/poison_health.h b/src/potions/poison_health.h index ae74eb6..89ea3e8 100644 --- a/src/potions/poison_health.h +++ b/src/potions/poison_health.h @@ -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, diff --git a/src/potions/restore_health.h b/src/potions/restore_health.h index 303bc59..84d8bfd 100644 --- a/src/potions/restore_health.h +++ b/src/potions/restore_health.h @@ -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,