From c8cbd1cacc8d8d67dbf003ad579ed22cc9e05c0d Mon Sep 17 00:00:00 2001 From: Leonardo Brandenberger Date: Fri, 10 Dec 2021 21:35:42 +0100 Subject: [PATCH] Improved Readme --- README.md | 75 ++++++++++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index f98574f..421d6d8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Siedler of Catan -Siedler of Catan is a multi-player-roleplay game, that lets you create settlements, +Siedler of catan is a multi-player-roleplay game, that lets you create settlements, build roads and upgrade settlements to cites in the world of catan. You have to try to get the required amount of winpoints as fast as possible to come out as the winner. You collect winpoints by owning settlements and cities and even get an extra two for owning the longest road. @@ -18,12 +18,13 @@ There have to be at least two roads between them. 7. The player with the longest road (most roads connecting to one another), which is longer than 4 will be awarded two additional winpoints. 8. If a player rolls a 7 on a dice throw, all player that are holding more than 7 resources, -will lose half of all their resources. The resources that are being taken are chosen -by random. +will lose half of all their resources. The resources that are being taken are chosen randomly. +9. Winpoints get awarded as following: (Settlement: 1), (City: 2), (Longest Road: 2) + For a more detailed version of the rules please look here: https://www.catan.de/sites/prod/files/2021-06/CATAN_DasSpiel_Spielregel.pdf -#Usermanual +#How To Play Setup Phase: 1. Enter the number of players that will be playing. (min 2, max 4) 2. Enter the number of winpoints needed to win the game. (min 3) @@ -38,62 +39,52 @@ Navigate in the Game Phase: >It is your turn as soon as the console shows it is your turn. ->To execute an action type in the associated number of the command, which is showed in the terminal. +>To execute an action type in the associated number of the command which is showed in the terminal. Same applies when asked about resources. +> Note that the dice throwing gets done automatically before each turn, +and you get informed in the console which number has been chosen. +The resources will also be added to the corresponding factions automatically. + +>You can do as many Commands as you like per turn. If decide to finish your turn, you can do so using the next player command. + #Avaible Commands: ->``next player`` Ends a players turn and the next player turn will be started - -When the current player has done all the building and trading they wanted and now -want to end their turn they can end it by entering the command next player. By choosing -the command the player finishes their turn and the next player is at turn - - +>``next player`` Ends a players turn and the next player turn will be started >``build settlement`` Builds a settlement at the chosen location. -When it's the players turn, they can build a new settlement by giving the command -build settlement. With that they will be asked where they want to build said settlement -and to enter the coordinates, then the program will check if those coordinates are available or not. Then the -program will subtract the resources needed to build a settlement. If the player has -insufficient resources the settlement will not be built and an error message will -appear. The turn of the current player will continue until the player ends it. +You will be prompted to give coordinates for the settlement. If the coordinates are valid +and comply with all siedler rules a settlement of your faction will be build on the map. +If the coordinates aren't a valid position you will be prompted to input them again. +If there is an illegal move for example not enough resources or invalid field an error will be shown. + >``build city`` Builds a city at the chosen location. -During the players turn they can build a city on the same coordinates that they -have already built a settlement on. To do that they have to enter the command -build city. Then they have to add the coordinates that they want the city to be -built at. If the coordinates are available and the settlement at that coordinate is -of the same faction as the player then the city can be built there. The program -will then check if the player has sufficient resources to build the city, then -the program will subtract them of the players resources, otherwise the city won't -be build and the player continues their turn until they end it. - +You will be prompted to give the coordinates for an existing settlement. If the coordinates are valid +and comply with all siedler rules a city of your faction will be build on the map. +If the coordinates aren't a valid position you will be prompted to input them again. +If there is an illegal move for example not enough resources or invalid field an error will be shown. >``build road`` Builds a road at chosen location. -During the current players turn, the player can build a new road by choosing the -command build road. The player will be asked to give the coordinates of the start corner and the end corner for where -they want to build the new road after entering the coordinates the program will -check to see if they are valid coordinates and if they aren't occupied. -If the coordinates are checked and there was no error message, then the program -will check if the player has enough resources to build the road if they do the -program will then subtract the amount of resources of the player. If they do not -have enough resources the road will not be built and the player will receive -an error message. The player continues their turn until they end it. +You will be prompted to give two coordinate sets, the first coordinate of the start of the road and the second one +of the end of the road.If the coordinates aren't a valid position you will be prompted to input them again. +If there is an illegal move for example not enough resources or invalid field an error will be shown. + + >``trade with bank`` Starts the trade with the bank -The current player can trade resources with the bank by entering the command -trade with bank. The player then can enter what and how many resources they want -then they have to enter what resources they will give in return. The trade course -for the resources is set to 1:4. That means the player will have to give 4 resources -trade for one of their choosing from the bank. If they do not have enough resources -to give the trade will not be completed and the player may continue their turn. +You will first be prompted to input the resource that you offer. +Afterwards you will be prompted to input the resource that you would like to receive. +The Trade is in a 4 to 1 ratio, meaning that you give 4 resources to receive 1. +If you own the needed resources the trade will be completed. +If the bank doesn't have your desired resource, or you don't own enough resources of the one to give, +an error message will be shown. >``quit`` Quits the game completely.