You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
922 B
23 lines
922 B
4 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping ../../vendor/doctrine/orm/doctrine-mapping.xsd ">
|
||
|
|
||
|
<embeddable name="App\Entity\Skillz">
|
||
|
<!-- basically the HP -->
|
||
|
<field name="constitution" type="integer" />
|
||
|
|
||
|
<!-- former MP! Some moves will require KI to function -->
|
||
|
<field name="ki" type="integer" />
|
||
|
|
||
|
<!-- damage dealer / block skill -->
|
||
|
<field name="strength" type="integer" />
|
||
|
|
||
|
<!-- evade / hit chance skill -->
|
||
|
<field name="agility" type="integer" />
|
||
|
|
||
|
<!-- if low => one is vulnerable for critical hits or slow attack speed / low damage -->
|
||
|
<field name="stamina" type="integer" />
|
||
|
</embeddable>
|
||
|
</doctrine-mapping>
|