-
Notifications
You must be signed in to change notification settings - Fork 0
/
enchantmentabilitydata.h
35 lines (28 loc) · 1.03 KB
/
enchantmentabilitydata.h
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
#ifndef enchantmentabilitydata_h
#define enchantmentabilitydata_h
#include "enchantmenteffect.h"
#include <memory>
class Minion;
class Attackable;
class Player;
class GiantStrengthE : public EnchantmentEffect {
public:
void enchant(std::shared_ptr<Minion> m) override;
void activate(Player &whoactivated, Player &targetP, std::shared_ptr<Attackable> target, int cost) override;
};
class MagicFatigueE : public EnchantmentEffect {
public:
void enchant(std::shared_ptr<Minion> m) override;
void activate(Player &whoactivated, Player &targetP, std::shared_ptr<Attackable> target, int cost) override;
};
class SilenceE : public EnchantmentEffect {
public:
void enchant(std::shared_ptr<Minion> m) override;
void activate(Player &whoactivated, Player &targetP, std::shared_ptr<Attackable> target, int cost) override;
};
class ExtraDrawE : public EnchantmentEffect {
public:
void enchant(std::shared_ptr<Minion> m) override;
void activate(Player &whoactivated, Player &targetP, std::shared_ptr<Attackable> target, int cost) override;
};
#endif