mastring the simple heritage

This commit is contained in:
Raphael 2025-01-24 21:02:57 +01:00
parent 245ac4c3a9
commit d161579a2a
13 changed files with 376 additions and 4 deletions

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/24 17:41:01 by rparodi #+# #+# */
/* Updated: 2025/01/24 18:31:52 by rparodi ### ########.fr */
/* Updated: 2025/01/24 20:31:45 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
@ -17,5 +17,11 @@ ScavTrap::ScavTrap (std::string name) {
_hit_point = 100;
_energy_point = 50;
_attack_damage = 20;
_gateKeeperMode = false;
std::cout << "\n[Init] ScavTrap:\n\t" << "Name: " << _name << std::endl;
}
void ScavTrap::guardGate() {
_gateKeeperMode = !_gateKeeperMode;
std::cout << "\n[Mode] ScavTrap:\n\t" << "Name: " << _name << " the mode gate keeper is now: " << (_gateKeeperMode ? "enable" : "disable") << std::endl;
}