Browse Source

add new setters

main
openlegends 3 months ago
parent
commit
c52eabc580
  1. 8
      src/Test/Card/Goblin.php
  2. 8
      src/Test/Card/Mouse.php
  3. 8
      src/Test/Card/Rat.php

8
src/Test/Card/Goblin.php

@ -43,6 +43,14 @@ class Goblin extends \OpenLegends\Engine\Abstract\Card @@ -43,6 +43,14 @@ class Goblin extends \OpenLegends\Engine\Abstract\Card
$this->setExtract(
3
);
$this->setGuard(
true
);
$this->setSilent(
false
);
}
public function act(

8
src/Test/Card/Mouse.php

@ -43,6 +43,14 @@ class Mouse extends \OpenLegends\Engine\Abstract\Card @@ -43,6 +43,14 @@ class Mouse extends \OpenLegends\Engine\Abstract\Card
$this->setExtract(
1
);
$this->setGuard(
false
);
$this->setSilent(
false
);
}
public function act(

8
src/Test/Card/Rat.php

@ -43,6 +43,14 @@ class Rat extends \OpenLegends\Engine\Abstract\Card @@ -43,6 +43,14 @@ class Rat extends \OpenLegends\Engine\Abstract\Card
$this->setExtract(
2
);
$this->setGuard(
false
);
$this->setSilent(
false
);
}
public function act(

Loading…
Cancel
Save