finished the bulk of game

This commit is contained in:
2024-07-14 21:32:41 -04:00
parent b3475b7530
commit af8bc4112c
110 changed files with 1876 additions and 1481 deletions

View File

@ -0,0 +1,15 @@
#ifndef __POISON_HEALTH_H__
#define __POISON_HEALTH_H__
#include "../potion.h"
class poison_health final: public potion {
public:
poison_health(const position &pos);
void apply(const enum race &race, int &HP, int &ATK, int &DEF,
fraction &base_hit_rate) override;
int get_priority() const override;
const char *get_name() const override;
};
#endif