changed all non-owned unique_ptr access to reference to the object itself

This commit is contained in:
2024-07-11 22:15:15 -04:00
parent 6d3e8229df
commit c68330b3e3
17 changed files with 73 additions and 57 deletions

View File

@ -1,22 +0,0 @@
#include "restore_health.h"
#include <algorithm>
restore_health::restore_health():
potion{potion_type::restore_health, -1} {}
void restore_health::apply(enum race &race, int &HP, int &ATK, int &DEF,
float &base_hit_rate) {
if (remaining_duration > 0) {
if (race == rdrow)
HP = std::min(HP + 7, MAX_HP[race]);
else
HP = std::min(HP + 5, MAX_HP[race]);
--remaining_duration;
}
}
int restore_health::get_priority() const {
return CALC_ADD_BASE;
}

View File

@ -1,14 +0,0 @@
#ifndef __RESTORE_HEALTH_H__
#define __RESTORE_HEALTH_H__
#include "../potion.h"
class restore_health final: public potion {
public:
restore_health();
void apply(enum race &race, int &HP, int &ATK, int &DEF,
float &base_hit_rate) override;
int get_priority() const override;
};
#endif