72 lines
1.6 KiB
Vue
72 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import { playSound } from "~/helpers/audioHelpers";
|
|
import type { Game, Player } from "~/netcode/interfaces";
|
|
|
|
export interface Props {
|
|
game: Game;
|
|
player: Player;
|
|
}
|
|
|
|
const props = defineProps<Props>();
|
|
|
|
const team = computed(() =>
|
|
props.game.teams.find((t) =>
|
|
t.players.map((p) => p._id).includes(props.player._id)
|
|
)
|
|
);
|
|
|
|
const isTurn = computed(
|
|
() => team.value && team.value?._id == props.game.currentTurn.currentTeam
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="turn_icon">
|
|
<img src="/img/champion-shield.png" class="icon_img" draggable="false" />
|
|
<span class="turn_icon_number">
|
|
{{ team?.health }}
|
|
</span>
|
|
</div>
|
|
<div class="turn_icon" v-if="isTurn">
|
|
<img src="/img/gold.png" class="icon_img" draggable="false" />
|
|
<span class="turn_icon_number">
|
|
{{ game.currentTurn.gold }}
|
|
</span>
|
|
</div>
|
|
<div class="turn_icon" v-if="isTurn">
|
|
<img src="/img/damage.png" class="icon_img" draggable="false" />
|
|
<span class="turn_icon_number">
|
|
{{ game.currentTurn.damage }}
|
|
</span>
|
|
</div>
|
|
<div class="turn_icon">
|
|
<img src="/img/fuck.svg" class="icon_img" draggable="false" />
|
|
<span class="turn_icon_number">{{
|
|
(player.discardMarkers ?? 0) + (player.fuckUMarkers ?? 0)
|
|
}}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.turn_icon {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
img.icon_img {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
span.icon_img {
|
|
font-size: 50px;
|
|
}
|
|
|
|
.turn_icon_number {
|
|
position: absolute;
|
|
text-shadow: white 0 0 1px;
|
|
}
|
|
</style>
|