您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

24 行
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;
}