add breakthrough ability

This commit is contained in:
openlegends 2024-03-18 17:23:30 +02:00
parent fd5fe1cd85
commit d17ff2c13a

View File

@ -0,0 +1,19 @@
<?php
declare(strict_types=1);
namespace OpenLegends\Asset\Test\Card\Ability;
class Breakthrough extends \OpenLegends\Engine\Abstract\Card\Ability
{
public function __construct()
{
$this->setName(
_('Breakthrough')
);
$this->setDescription(
_('Damage player with card power more than target health')
);
}
}