The goal of the game is to make your opponent lose all the coins or have less than three cards at the end of a round.

Player can earn coins by beating opponent with his placed cards against opponent's placed cards;

The cards relation: SWORD >> BOW >> HORSE >> SWORD

# The game flow

## SETUP phase:

Each player will choose six cards from decks as his hands;

## PLACE phase

Each player places THREE cards in the slots in play area, facing down;

Then both players reveal their cards together;

## SWITCH phase:

Each player can SWAP positions of a pair of card ( or no swap );

## COMPARE phase

Compare the three pairs of cards, each slot has a price tag, winner will discard the card, loser will keep his card; winner will get the coins equal to price tag, loser will lose the coins;

## BIDDING phase

The system will place THREE cards in play area for players to bid;

Player can bid coins for each card, but the coins will not return the player no matter he wins or loses the bid;

if it's a tie for a card, then the card will be discarded.

==================

# Card Buffs

Each card can have 0 ~ 2 buffs;

Each Buff consist of two parts: [target] [function];

[target] has three options: LEFT, SELF, RIGHT; It indicates which card the [function] will affect;

[function] has these options:

HIDDEN: hide the target card until COMPARE phase;

GAIN MORE: if the target card wins against opponent, will earn 50% more coins;

LOSE LESS: if the target card loses against opponent, will lose 50% less coins;

POWER: The target card will win against opponent if it's a tie;

KEEP: The target card will not be discarded if it wins against opponent;

GRAB: Grab opponent card if the target card wins;


Leave a comment

Log in with itch.io to leave a comment.