Finished Rules
continuous-integration/drone/push Build is passing Details

old_branch_before_remy
Jules LASCRET 11 months ago
parent 43121b4661
commit d8d106ced0

@ -45,6 +45,34 @@
<Label
Text="2. On a line assigned to a certain color/shape, the tiles must have the same color/shape."
Style="{StaticResource RulesContent}" />
<Label
Text="3. For a line assigned to a certain color/shape, if a tile of a specific shape/color has already been placed, they can't place it again."
Style="{StaticResource RulesContent}" />
<Label
Text="Example: If a player has already placed a blue square on a line assigned to the color blue, they can't place another blue square on the same line."
Style="{StaticResource RulesSubContent}" />
<Label
Text="Swapping your tiles"
Style="{StaticResource RulesSubTitle2}" />
<Label
Text="If a player can't place any tiles on the board, they can swap between 1 and 6 of their tiles with the remaining ones in the bag."
Style="{StaticResource RulesContent}" />
<Label
Text="Swapping can be only done if the player didn't place any tile on this turn."
Style="{StaticResource RulesContent}" />
<Label
Text="This action makes the player skip their turn."
Style="{StaticResource RulesContent}" />
<Label
Text="End of the game"
Style="{StaticResource RulesSubTitle}" />
<Label
Text="The game stops either right after a player has placed their last tile or when no player can place any more tiles."
Style="{StaticResource RulesContent}" />
</VerticalStackLayout>

@ -262,6 +262,14 @@
<Setter Property="FontAttributes" Value="Bold" />
</Style>
<Style TargetType="Label" x:Key="RulesSubTitle2">
<Setter Property="TextColor" Value="Black" />
<Setter Property="FontSize" Value="22" />
<Setter Property="Padding" Value="15" />
<Setter Property="HorizontalOptions" Value="Center" />
<Setter Property="FontAttributes" Value="Bold, Italic" />
</Style>
<Style TargetType="Label" x:Key="ContentCenter">
<Setter Property="TextColor" Value="Black" />
<Setter Property="FontSize" Value="20" />
@ -274,6 +282,13 @@
<Setter Property="HorizontalOptions" Value="Center" />
</Style>
<Style TargetType="Label" x:Key="RulesSubContent">
<Setter Property="TextColor" Value="Black" />
<Setter Property="FontSize" Value="14" />
<Setter Property="FontAttributes" Value="Italic"></Setter>
<Setter Property="HorizontalOptions" Value="Center" />
</Style>
<Style TargetType="Label" x:Key="ContentStart">
<Setter Property="TextColor" Value="Black" />
<Setter Property="FontSize" Value="20" />

Loading…
Cancel
Save