add new setters

This commit is contained in:
openlegends 2024-03-15 16:17:58 +02:00
parent d8ec77800c
commit c52eabc580
3 changed files with 24 additions and 0 deletions

View File

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

View File

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

View File

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