Exemplo n.º 1
0
 /**
  * Constructor
  *
  * @param array $options
  */
 public function __construct(array $options = [])
 {
     // Shaman have the "Totemic Call" hero power. Summon a random totem
     $options['heroPower'] = new TotemicCall();
     // Call the constructor to apply hero power
     parent::__construct($options);
 }
 /**
  * Constructor
  *
  * @param array $options
  */
 public function __construct(array $options = [])
 {
     // Warrior have the "Armor Up!" hero power. Gain 2 armor
     $options['heroPower'] = new ArmorUp();
     // Call the constructor to apply hero power
     parent::__construct($options);
 }
Exemplo n.º 3
0
 /**
  * Constructor
  *
  * @param array $options
  */
 public function __construct(array $options = [])
 {
     // Priest have the "Lesser heal" hero power. Restore 2 health
     $options['heroPower'] = new LesserHeal();
     // Call the constructor to apply hero power
     parent::__construct($options);
 }