openlegends
9 months ago
1 changed files with 27 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -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…
Reference in new issue