[Feat] : move end turn button, remove self statistics overlay
release-tag / release-image (push) Successful in 29s
release-tag / release-image (push) Successful in 29s
Closes #18
This commit is contained in:
@@ -92,14 +92,18 @@ const prepare_champion = (target: Card) => run_effect(CardEffects.PREPARE, targe
|
||||
</div>
|
||||
</template>
|
||||
<div id="player_banner">
|
||||
<div class="ready-bubble not-ready" v-if="!props.player.ready && !goStore.current_game?.started">Pas encore prêt...</div>
|
||||
<div class="ready-bubble not-ready" v-if="!props.player.ready && !goStore.current_game?.started">Pas encore
|
||||
prêt...
|
||||
</div>
|
||||
<div class="ready-bubble ready" v-if="props.player.ready && !goStore.current_game?.started">Prêt!</div>
|
||||
<div id="player_info">
|
||||
<PlayerIcon :player="props.player"></PlayerIcon>
|
||||
</div>
|
||||
<div id="player_stats">
|
||||
|
||||
<PlayerStats v-if="goStore.current_game?.started" :player="props.player"></PlayerStats>
|
||||
<template v-if="goStore.current_game?.started">
|
||||
<PlayerStats v-if="props.player != goStore.self" :player="props.player"></PlayerStats>
|
||||
<SelfView v-if="props.player === goStore.self" :player="props.player"></SelfView>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
<div id="current_player_board">
|
||||
|
||||
Reference in New Issue
Block a user