From 05a3c687badfd9e1ac468dbe4b969f39f72abcaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lyx=20Rothbo=CC=88ck?= Date: Wed, 21 Aug 2024 18:50:58 +0200 Subject: [PATCH] Balancing update - changed goal targets - simplified tyrant/banker (& buffed them) - Pacts are dealt open from the start - New Bonus rule (Co-op) --- Game of Intrigue.typ | 23 +++++++++++------------ data.typ | 10 +++++----- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/Game of Intrigue.typ b/Game of Intrigue.typ index 09ec5d2..677de06 100644 --- a/Game of Intrigue.typ +++ b/Game of Intrigue.typ @@ -237,7 +237,8 @@ Each player gets #standing_card_amount Standing cards. The rest are removed from Separate the Colored cards from the rest.\ Sort them by Color and give each player one of the piles.\ -The Color Token is put on the table in front of the player visible to everyone. Each player then shuffles their Colored cards and puts them face down in their personal pile.\ +The Color Token and the Pact card are put on the table in front of the player visible to everyone.\ +Each player then shuffles their Colored cards and puts them face down in their personal pile.\ The remaining Colored cards are removed from the game.\ The Role cards are seperated into Goals and Perks and shuffled. Each player is dealt a Goal (into their hand) and a Perk to the *bottom* of their personal pile.\ @@ -336,8 +337,8 @@ You loose when all your Standing is lost. _Colored_\ _Can be Illegal_\ -This card symbolizes a pact between you and another player. Other players Pacts are placed openly next to your Color Token on the table after you receive them.\ -It can only be traded for another Pact card and only you can trade with your Pact card. When discarded or paid as a fine it is removed from the game. +This card symbolizes a pact between you and another player. Pacts are placed openly next to your Color Token on the table.\ +They can only be traded for another Pact card and only you can trade with your Pact card. If you have someone else's Pact card you cannot: - use a Social card on them @@ -397,16 +398,14 @@ When a player objects to a trade the legality of the traded cards is checked. Yo If any traded card is illegal: 1. The player offering an illegal card will have to pay a fine to the accuser. - 2. If any illegal Pacts were found to be offered remove them from the game. (Tipp: Pacts are the only illegal cards without a value) - 3. The trade does not happen; Everyone keeps their offered cards + 2. The trade does not happen; Everyone keeps their offered cards If no card is illegal: 1. The accusing player will have to pay a fine to one of the trading players (accusors choice) 2. The trade goes on. #pagebreak() == Paying a fine You have to let the other player draw a card from your hand or personal pile.\ -You can choose to protect up to #standing_card_amount cards from your hand (put them aside) or your personal pile (hold a hand over it) from being drawn from. If you have less than #standing_card_amount cards in your hand and your personal pile is empty, you cannot protect any cards.\ -If a Pact is drawn it is removed from the game. +You can choose to protect up to #standing_card_amount cards from your hand (put them aside) or your personal pile (hold a hand over it) from being drawn from. If you have less than #standing_card_amount cards in your hand and your personal pile is empty, you cannot protect any cards. == Removed from the game Put them back in the box. They are not to be used this game anymore. @@ -486,11 +485,7 @@ Each player can put any amount of cards from their hand into an investments pile === Investment Boni You get the following bonus per 10 total Value put into the investments pile:\ _Either (Decide this for the whole game in advance)_\ - Hand size +1\ - _Or_\ - Announce +1 card\ - _Or_\ - Add 1 value to your announced card + Hand size +1 _Or_ Announce +1 card _Or_ Add 1 value to your announced card === Investment Resolution The player with the most total Value in the investments pile is the Auctioneer.\ @@ -508,6 +503,10 @@ Anyone can win by holding cards worth more or equal to #(calc.floor(int(goal_han Remove the Liar Role from the game. It applies to all players.\ You start with #(standing_card_amount - 1) Standing. +== Co-op +Remove the Leach Role from the game.\ +Players, that have a pact together, win together. + #pagebreak() = Material == Cards diff --git a/data.typ b/data.typ index ccdf992..beda4c6 100644 --- a/data.typ +++ b/data.typ @@ -1,4 +1,4 @@ -#let version = "1.2.0" +#let version = "1.2.1" // Game settings #let colors = ( @@ -65,16 +65,16 @@ "Defence": "When announced you are immune to all Social cards.", ) -#let goal_hand_size = calc.ceil(hand_card_amount * 0.8) +#let goal_hand_size = hand_card_amount - 2 #let role_descriptions = ( "Millionaire": "[Goal]Hold cards worth more or equal to " + str(calc.floor(int(goal_hand_size * ((asset_value_range.at(1) + asset_value_range.at(0)) / 2) / 10) * 10)) + ". (excluding Standing)", "Mafioso": "[Goal]Hold more or equal to " + str(goal_hand_size) + " illegal cards, but only illegal cards. (excluding Standing and cards of your Color)", - "Broker": "[Goal]Hold " + str(goal_hand_size) + " cards with ascending values.", + "Broker": "[Goal]Hold " + str(goal_hand_size + 1) + " cards with ascending values.", "Hoarder": "[Goal]Hold " + str(calc.ceil(asset_copy_amount * 0.6)) + " Assets with the same value.", "Snitch": "[Goal]Hold " + str(calc.floor(hand_card_amount * 1.5)) + " Cards. (excluding Standing)", "Isolationist": "[Goal]Hold only cards with less than 2 value. (including Standing)", - "Tyrant": "[Goal](3 Players) Hold 2 Threats for all other players.\n(4-" + str(player_count) + " Players) Hold Threats for all other players.", - "Politician": "[Goal](3 Players) Hold 2 Favours for all other players.\n(4-" + str(player_count) + " Players) Hold Favours for all other players.", + "Tyrant": "[Goal]Hold an evil Social card\n(Threat |Hook )\nfor all other players.\n(3 Players: Hold 2)", + "Politician": "[Goal]Hold a calm Social card\n(Favour |Secret )\nfor all other players.\n(3 Players: Hold 2)", "Lobbyist": "[Perk]If you trade this card to another player, they have to discard all their Standing.", "Leach": "[Perk]If someone you have a Pact with wins, you win too. When you loose, you can try to sneak this card out of the game, to win later.", "Undead": "[Perk]When you loose, take " + str((standing_card_amount - 1)) + " Standing cards from the draw pile and shuffle it again, then remove this card from the game.",