You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae201_qwirkle/Qwirkle/QwirkleViews/Pages/Rules.xaml

52 lines
2.1 KiB

<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Qwirkle.Pages.Rules"
xmlns:controls="clr-namespace:Qwirkle.Views"
Title="Rules">
<ScrollView>
<VerticalStackLayout>
<Grid Style="{StaticResource GridMain}">
<controls:GoBack></controls:GoBack>
<Label Text="Qwirkle Rules"
Style="{StaticResource Title}" />
</Grid>
<Label
Text="Game Composition"
Style="{StaticResource RulesSubTitle}"/>
<Label
Text="The game is composed of 3 sets of 36 tiles, each set containing 6 tiles of each of the 6 colors and 6 shapes."
Style="{StaticResource RulesContent}"/>
<Label
Text="Who Starts ?"
Style="{StaticResource RulesSubTitle}" />
<Label
Text="In order to determine who starts, the algorithm checks which player has the most tiles with the same shape or color."
Style="{StaticResource RulesContent}" />
<Label
Text="Then, the first player can place his tiles wherever he wants on the board."
Style="{StaticResource RulesContent}" />
<Label
Text="Progress of the game"
Style="{StaticResource RulesSubTitle}" />
<Label
Text="Each player can then place as many tiles as they want on the board, as long as they respect these 3 rules:"
Style="{StaticResource RulesContent}" />
<Label
Text="1. The tiles must be placed in a straight line/column."
Style="{StaticResource RulesContent}" />
<Label
Text="2. On a line assigned to a certain color/shape, the tiles must have the same color/shape."
Style="{StaticResource RulesContent}" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>