finished the bulk of game
This commit is contained in:
15
src/potions/boost_atk.h
Normal file
15
src/potions/boost_atk.h
Normal file
@ -0,0 +1,15 @@
|
||||
#ifndef __BOOST_ATK_H__
|
||||
#define __BOOST_ATK_H__
|
||||
|
||||
#include "../potion.h"
|
||||
|
||||
class boost_atk final: public potion {
|
||||
public:
|
||||
boost_atk(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
|
Reference in New Issue
Block a user