Skip to content

Commit 62f9906

Browse files
committed
solo mode rules
1 parent c2f5aff commit 62f9906

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

src/locales/en.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,16 @@
3535
"description": "Select the 3 or 4 <b>flower colors</b> you planted in your garden.",
3636
"flowerPriorityNote": "The order of flowers reflects Lady Pei's flower priority.",
3737
"validationHint": "Please select the flower colors you planted in your garden."
38+
},
39+
"soloModeRules": {
40+
"title": "Solo Mode Rules",
41+
"turnStructure": "The turn structure in a solo game is different: You take all of your actions of a Season at once, and then Lady Pei executes her actions. The more actions you are taking, the more actions Lady Pei will execute.",
42+
"excessActions": "If you take more than 5 actions in a season, Lady Pei will \"discard\" three cards from her internal solo deck for each of your action beyond 5. This will let her claim Milestones sooner.",
43+
"milestones": "When Lady Pei claims a milestone (as displayed by the application, this can even happen during your own turns), put one of her marker to the highest available point value. She doesn't need to fulfill the conditions.",
44+
"noBonuses": "In general, Lady Pei does not receive the bonuses displayed on the window tiles when delivering, and does not interact with neighbors.",
45+
"actionBoxTypes": "When Lady Pei executes her actions, some are displayed in a grey box, and some in a blue box. The actions for grey boxes are executed automatically by the application and shown only for information. For the blue boxes, you have to execute the action for her and follow the instructions.",
46+
"autoActions": "Some actions start as blue boxes, but are automatically executed as grey actions later when the application learns the board state.",
47+
"clickForDetails": "You can click on each action box to see rules details."
3848
}
3949
},
4050
"roundTurnPlayer": {

src/views/SetupBot.vue

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,27 @@
1616
<p v-html="t('setupBot.instructions.botComponentsNotRequired')"/>
1717
</div>
1818

19+
<div class="row">
20+
21+
</div>
22+
23+
<div class="row">
24+
<div class="col">
25+
<div class="alert alert-info">
26+
<h5>{{t('setupBot.soloModeRules.title')}}</h5>
27+
<ul>
28+
<li v-html="t('setupBot.soloModeRules.turnStructure')"/>
29+
<li v-html="t('setupBot.soloModeRules.excessActions')"/>
30+
<li v-html="t('setupBot.soloModeRules.milestones')"/>
31+
<li v-html="t('setupBot.soloModeRules.noBonuses')"/>
32+
<li v-html="t('setupBot.soloModeRules.actionBoxTypes')"/>
33+
<li v-html="t('setupBot.soloModeRules.autoActions')"/>
34+
<li v-html="t('setupBot.soloModeRules.clickForDetails')"/>
35+
</ul>
36+
</div>
37+
</div>
38+
</div>
39+
1940
<div class="row" v-if="!isPlayerFlowerSelectionValid">
2041
<div class="col">
2142
<p v-if="!isPlayerFlowerSelectionValid" class="alert alert-warning" v-html="t('setupBot.playerFlowerSelection.validationHint')"></p>

0 commit comments

Comments
 (0)