-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBulbasaur.hpp
More file actions
34 lines (31 loc) · 823 Bytes
/
Copy pathBulbasaur.hpp
File metadata and controls
34 lines (31 loc) · 823 Bytes
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
/*********************************************************************
** Program name: FinalProject
** Author: James Scanlon
** Date: March 19, 2019
** Description: Interface of the Bulbasaur class. Derived from Pokemon class.
*********************************************************************/
#ifndef Bulbasaur_hpp
#define Bulbasaur_hpp
#include <stdio.h>
#include "Pokemon.hpp"
class Bulbasaur : public Pokemon
{
private:
int maxStrength;
bool hasFainted;
bool hasRazorLeaf;
bool hasSolarBeam;
public:
Bulbasaur();
void increaseLevel();
void trainingDamage();
void healDamage();
void makeFaint();
//get functions
bool getRazorLeaf();
bool getSolarBeam();
int getMaxStrength();
bool getHasFainted();
~Bulbasaur();
};
#endif /* Bulbasaur_hpp */