added T-800 as playable character

This commit is contained in:
2024-07-15 19:33:32 -04:00
parent 1ebdd2d162
commit 991ab34ca2
8 changed files with 56 additions and 13 deletions

View File

@ -39,6 +39,10 @@ long_result player_base::apply(potion *p) {
apply_effect(p);
if (race == rt_800)
return {result::applied,
"PC gets rusty joints (-5 HP). "};
return {result::applied,
(std::string)"PC applied potion of " + p->get_name() + ". "};
}