Skip to content

Commit

Permalink
cosmetic improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Aug 27, 2024
1 parent a621f61 commit bd23b88
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/turn/ActionAdvance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p>
{{t('turnBot.pickHighest')}}<br/>
<template v-for="value of 4" :key="value">
<button class="btn btn-primary mt-1" @click="gainTiles(value)">
<button class="btn btn-primary mt-2" @click="gainTiles(value)">
<WorkerIcon :worker="navigationState.worker" :value="value"/>:
<template v-for="(tile,index) of getAdvanceTiles(value)" :key="tile">
<template v-if="index > 0"> + </template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/turn/ActionCarve.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<p>
<WorkerIcon :worker="navigationState.worker" :value="4"/>?
<a class="btn btn-primary mt-1" data-bs-toggle="modal" data-bs-target="#carveModal">
<a class="btn btn-secondary mt-1" data-bs-toggle="modal" data-bs-target="#carveModal">
{{t('turnBot.carve.title', {value:navigationState.carveSteps})}}
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/turn/ActionExplore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p>
{{t('turnBot.pickHighest')}}<br/>
<template v-for="value of 4" :key="value">
<button class="btn btn-primary mt-1" @click="showExploreModal(value)">
<button class="btn btn-secondary mt-2" @click="showExploreModal(value)">
<WorkerIcon :worker="navigationState.worker" :value="value"/>: {{t('turnBot.explore.title', {value})}}
</button><br/>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/turn/ActionScoreWorker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<p>
{{t('turnBot.pickHighest')}}<br/>
<template v-for="value of 4" :key="value">
<button class="btn btn-primary mt-1" @click="$emit('scoreVP', getWorkerVP(value))">
<button class="btn btn-primary mt-2" @click="$emit('scoreVP', getWorkerVP(value))">
<WorkerIcon :worker="navigationState.worker" :value="value"/>:
<VictoryPointIcon :value="getWorkerVP(value)"/>
</button><br/>
Expand Down
2 changes: 1 addition & 1 deletion src/util/NavigationState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class NavigationState {
this.cardDeck = CardDeck.new()
}
this.tiles = BotTiles.new()
this.victoryPoints = 0
this.victoryPoints = 1
}

this.expertMode = state.setup.difficultyLevel >= 5
Expand Down

0 comments on commit bd23b88

Please sign in to comment.