diff --git a/src/Test/Card/Goblin.php b/src/Test/Card/Goblin.php index 8f5f7a3..3c9d02e 100644 --- a/src/Test/Card/Goblin.php +++ b/src/Test/Card/Goblin.php @@ -6,6 +6,45 @@ namespace OpenLegends\Asset\Test\Card; class Goblin extends \OpenLegends\Engine\Abstract\Card { + public function __construct() + { + $this->addAttribute( + _('Neutral') + ); + + $this->setType( + _('Unknown') + ); + + $this->setTitle( + _('Goblin') + ); + + $this->setDescription( + _('Just goblin') + ); + + $this->setCost( + 1 + ); + + $this->setPower( + 3 + ); + + $this->setHealth( + 3 + ); + + $this->setCraft( + 3 + ); + + $this->setExtract( + 3 + ); + } + public function act( \OpenLegends\Engine\Abstract\Card $target ) {} diff --git a/src/Test/Card/Mouse.php b/src/Test/Card/Mouse.php index 1c9a4eb..6d0f4b9 100644 --- a/src/Test/Card/Mouse.php +++ b/src/Test/Card/Mouse.php @@ -6,6 +6,45 @@ namespace OpenLegends\Asset\Test\Card; class Mouse extends \OpenLegends\Engine\Abstract\Card { + public function __construct() + { + $this->addAttribute( + _('Neutral') + ); + + $this->setType( + _('Animal') + ); + + $this->setTitle( + _('Mouse') + ); + + $this->setDescription( + _('Just mouse') + ); + + $this->setCost( + 0 + ); + + $this->setPower( + 1 + ); + + $this->setHealth( + 1 + ); + + $this->setCraft( + 1 + ); + + $this->setExtract( + 1 + ); + } + public function act( \OpenLegends\Engine\Abstract\Card $target ) {} diff --git a/src/Test/Card/Rat.php b/src/Test/Card/Rat.php index 06a3756..83b2d11 100644 --- a/src/Test/Card/Rat.php +++ b/src/Test/Card/Rat.php @@ -6,6 +6,45 @@ namespace OpenLegends\Asset\Test\Card; class Rat extends \OpenLegends\Engine\Abstract\Card { + public function __construct() + { + $this->addAttribute( + _('Neutral') + ); + + $this->setType( + _('Animal') + ); + + $this->setTitle( + _('Rat') + ); + + $this->setDescription( + _('Just rat') + ); + + $this->setCost( + 0 + ); + + $this->setPower( + 2 + ); + + $this->setHealth( + 2 + ); + + $this->setCraft( + 2 + ); + + $this->setExtract( + 2 + ); + } + public function act( \OpenLegends\Engine\Abstract\Card $target ) {}