-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFollower.hpp
49 lines (36 loc) · 1.02 KB
/
Follower.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//Kanellaki Maria Anna - 1115201400060
//Matanis Panagiotis - 1115201400297
#ifndef PROJECT_FOLLOWER_HPP
#define PROJECT_FOLLOWER_HPP
#include <string>
#include "GreenCard.hpp"
using namespace std;
class Follower: public GreenCard {
string name;
int cost;
bool tapped;
Followers typeF;
int attackBonus;
int defenseBonus;
int minimumHonor;
string cardText;
int effectBonus;
int effectCost;
public:
Follower(string n, int t, int spT, int cost, int at, int def, int hon, int bon, int bc, string txt);
void PrintFollower();
int getFollowerType();
virtual ~Follower() {};
int getCost() const;
bool isTapped() const;
int getEffectBonus() const;
int getEffectCost() const;
void setAttackBonus(int attackBonus);
void setDefenseBonus(int defenseBonus);
int getAttackBonus() const;
int getDefenseBonus() const;
int getMinimumHonor() const;
void setTapped(bool tapped);
const string &getCardText() const;
};
#endif //PROJECT_FOLLOWER_HPP