finish up base recruitment system

This commit is contained in:
2025-05-31 19:53:31 +02:00
parent 2cb9221da1
commit a821094513
9 changed files with 148 additions and 39 deletions
+8 -1
View File
@@ -13,7 +13,10 @@
<p>Exp: {{ adventurer.exp }} / {{ adventurer.getNextLevelExpRequirement() }}</p>
<p>DPS: {{ formatDamage(adventurer.getDPS()) }}</p>
</div>
<div class="adventurer-upgrades">
<div
v-if="showPrestigeButton"
class="adventurer-upgrades"
>
<button
class="button metal"
:disabled="!adventurer.canPrestigeUp()"
@@ -44,6 +47,10 @@ export default defineComponent({
type: Object as PropType<Adventurer | null>,
required: true,
},
showPrestigeButton: {
type: Boolean,
default: true,
},
},
mounted() {
const refs = this.$refs as any;