Browse Source

draft player asset

main
openlegends 9 months ago
parent
commit
932638c4ca
  1. 27
      src/Test/Player/Elf.php

27
src/Test/Player/Elf.php

@ -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
);
}
}
Loading…
Cancel
Save