Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

24 wiersze
564 B

#include "src/class/monster.hpp"
Monster::Monster(std::string monsterName)
: Character(monsterName)
{
bounty = 0;
}
Monster::Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef)
: Character(monsterName, monsterMaxHP, monsterAtk, monsterDef)
{
bounty = 0;
}
Monster::Monster(std::string monsterName, int monsterMaxHP, int monsterAtk, int monsterDef, int monsterBounty)
: Character(monsterName, monsterMaxHP, monsterAtk, monsterDef)
{
bounty = monsterBounty;
}
int Monster::getBounty()
{
return bounty;
}