Refactored actions and let actions apply buffs to self

This commit is contained in:
Stefan Zermatten
2020-06-21 23:54:51 +02:00
parent 50b99ef54f
commit 315073bd8e
13 changed files with 322 additions and 95 deletions

View File

@@ -13,6 +13,7 @@
:error-messages="errors.description"
@change="change('description', ...arguments)"
/>
<!-- Duration not implemented yet
<text-field
label="Duration"
hint="How long the buff lasts"
@@ -20,6 +21,16 @@
:error-messages="errors.duration"
@change="change('duration', ...arguments)"
/>
-->
<smart-select
label="Target"
:hint="targetOptionHint"
:items="targetOptions"
:value="model.target"
:error-messages="errors.target"
:menu-props="{auto: true, lazy: true}"
@change="change('target', ...arguments)"
/>
</div>
</template>