diff --git a/src/components/gui/partials/CharacterScreen.vue b/src/components/gui/partials/CharacterScreen.vue index bcb415b..3b59417 100644 --- a/src/components/gui/partials/CharacterScreen.vue +++ b/src/components/gui/partials/CharacterScreen.vue @@ -10,28 +10,31 @@
-

Ethereal

+

{{ gameStore.character?.name }}

  • Class:
  • -
  • Health Points:
  • -
  • Magic Points:
  • +
  • Race:
  • +
  • Hit Points:
  • +
  • Mana Points:
  • Level:
  • Stat Points:
    -
  • Knight
  • -
  • 100 (+15)
  • -
  • 100
  • -
  • 69
  • -
  • 3
  • +
  • Knight
  • +
  • {{ gameStore.character?.characterType?.race }}
  • +
  • {{ gameStore.character?.hitpoints }} (+15)
  • +
  • {{ gameStore.character?.mana }}
  • +
  • {{ gameStore.character?.level }}
  • +
  • 3

Alignment

-
- +
+ +
@@ -56,4 +59,11 @@
- \ No newline at end of file + + + \ No newline at end of file diff --git a/src/components/gui/partials/Equipment.vue b/src/components/gui/partials/Equipment.vue index f8f935e..90032e0 100644 --- a/src/components/gui/partials/Equipment.vue +++ b/src/components/gui/partials/Equipment.vue @@ -5,9 +5,9 @@
-

Ethereal

+

{{ gameStore.character?.name }}

- Level 69 + Level {{ gameStore.character?.level }}
@@ -80,4 +80,11 @@
- \ No newline at end of file + + + \ No newline at end of file diff --git a/src/components/gui/partials/settings/CharacterSettings.vue b/src/components/gui/partials/settings/CharacterSettings.vue index ce31a35..bca082a 100644 --- a/src/components/gui/partials/settings/CharacterSettings.vue +++ b/src/components/gui/partials/settings/CharacterSettings.vue @@ -6,11 +6,15 @@
- +
-
+
- + + {{characterClass}}
@@ -22,6 +26,7 @@ import { ref } from 'vue' const editCharacter = ref(false) +const characterClass = ref('') const toggle = () => { editCharacter.value = !editCharacter.value