-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbility.h
35 lines (29 loc) · 1.07 KB
/
Ability.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
35
#pragma once
#include <vector>
#include <string>
#include "Die.h"
class Character;
class Ability
{
private:
int id;
std::string name;
bool rollHit;
int mpCost;
std::vector<std::string> targets; //self, other
std::vector<std::string> stats; //hp, mp, sp, ac
std::vector<char> directions; //+,-
std::vector<std::string> amounts; //Any die, wep
std::vector<int> times;
std::vector<std::string> bonuses;
public:
Ability(int _id, std::string _name, bool _rollHit) : id(_id), name(_name), rollHit(_rollHit), mpCost(0) {};
Ability(int _id, std::string _name,
std::vector<std::string> _targets, std::vector<std::string> _stats,
std::vector<char> _directions, std::vector <std::string> _amounts, std::vector<int> times);
bool addEffect(std::string _target, std::string _targetstat, char _direction, std::string _amount, int _time, std::string _bonus);
std::vector<std::vector<std::string>> useAbility(Character* active, Character* other);
std::string stringRep();
std::string name_() { return name; };
int mpCost_() { return mpCost; };
};