Swordsman.php 359 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: artem
  5. * Date: 06.07.18
  6. * Time: 20:45
  7. */
  8. include_once 'Guard.php';
  9. class Swordsman extends Guard
  10. {
  11. public function __construct($name)
  12. {
  13. parent::__construct($name);
  14. $this->health = 50;
  15. }
  16. protected function playLoading()
  17. {
  18. echo 'Playing swordsman loading<br>';
  19. }
  20. }