added extra enemies
This commit is contained in:
@ -25,11 +25,13 @@ long_result halfling::get_hit(character *ch, const int tATK,
|
||||
if (HP == 0)
|
||||
return {result::hit,
|
||||
"PC deals " + std::to_string(tmp) +
|
||||
" damage to " + abbrev + ". " + abbrev +
|
||||
" is slain by PC. "};
|
||||
" damage to " + abbrev + " (" +
|
||||
std::to_string(HP) + " HP). " +
|
||||
abbrev + " is slain by PC. "};
|
||||
|
||||
return {result::hit, "PC deals " +
|
||||
std::to_string(tmp) + " damage to " + abbrev + ". "};
|
||||
std::to_string(tmp) + " damage to " + abbrev + " (" +
|
||||
std::to_string(HP) + " HP). "};
|
||||
}
|
||||
|
||||
return {miss, "PC tried to hit " + abbrev +
|
||||
|
Reference in New Issue
Block a user