mirror of
https://github.com/openlegends/asset-php.git
synced 2025-02-08 04:54:15 +00:00
implement base act
This commit is contained in:
parent
c52eabc580
commit
4adff3ce11
@ -55,5 +55,9 @@ class Goblin extends \OpenLegends\Engine\Abstract\Card
|
||||
|
||||
public function act(
|
||||
\OpenLegends\Engine\Abstract\Card $target
|
||||
) {}
|
||||
) {
|
||||
$this->attack(
|
||||
$target
|
||||
);
|
||||
}
|
||||
}
|
@ -55,5 +55,9 @@ class Mouse extends \OpenLegends\Engine\Abstract\Card
|
||||
|
||||
public function act(
|
||||
\OpenLegends\Engine\Abstract\Card $target
|
||||
) {}
|
||||
) {
|
||||
$this->attack(
|
||||
$target
|
||||
);
|
||||
}
|
||||
}
|
@ -55,5 +55,9 @@ class Rat extends \OpenLegends\Engine\Abstract\Card
|
||||
|
||||
public function act(
|
||||
\OpenLegends\Engine\Abstract\Card $target
|
||||
) {}
|
||||
) {
|
||||
$this->attack(
|
||||
$target
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user