draft player asset

This commit is contained in:
openlegends 2024-03-18 21:55:59 +02:00
parent 4a3364aaa8
commit 932638c4ca

27
src/Test/Player/Elf.php Normal file
View File

@ -0,0 +1,27 @@
<?php
declare(strict_types=1);
namespace OpenLegends\Asset\Test\Player;
class Elf extends \OpenLegends\Engine\Abstract\Player
{
public function __construct()
{
$this->setName(
_('Elf')
);
$this->setDescription(
_('Just Elf')
);
$this->setHealth(
30
);
$this->setRunes(
5
);
}
}