Skip to content
Permalink
12d06b305d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (25 sloc) 555 Bytes
#ifndef ABILITY_HPP
#define ABILITY_HPP
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
#include <tuple>
#include "libsqlite.hpp"
#include "Effect.hpp"
#include <cstdlib>
using namespace std;
class Ability
{
private:
string Ability_Name, Ability_Description;
int Damage_Max, Damage_Min, Heal_Max, Heal_Min, Mana_Cost, Stamina_Cost, Effect_ID;
vector<int> effect_ids;
vector<Effect> effects;
public:
Ability(int _id);
int GetDamage();
int GetHealing();
friend ostream& operator<<( ostream&, const Ability&);
};
#endif