Hide

Problem H
Heroes of Velmar

Welcome to the world of Heroes of Velmar, the critically acclaimed trading card game developed by Sidney Games! After the tremendous success of the physical card game, Sidney Games has decided to take it to the next level and transform it into an immersive video game experience.

As Sidney Games embarks on this ambitious video game project, they seek the expertise of talented developers like you to bring this digital version to life. The challenge lies in coding the algorithm that determines the winner in the virtual battles that unfold between players. The video game will need to retain the same core mechanics as the original card game, where players compete on three distinct locations over six turns, with abilities and power levels shaping the outcomes.

The full rules of the game are listed below. You are given the state of the locations after Setup and Gameplay have finished and the End of the Game has been reached. Sidney Games has tasked you with implementing the Location Resolution part of the game rules, including the application of Special Abilities, to determine the winner.

The game designers have provided you with images of the cards as well as a JSON file with their specifications.

Heroes of Velmar - Game Rules

Objective

The objective of the two-player card game Heroes of Velmar is to win more locations than the opponent over six turns. If there is a tie, the total power level across all locations acts as a tiebreaker.

Setup

  1. Each player selects a deck of cards containing heroes with different abilities and power levels.

  2. The players shuffle their decks and draw a starting hand of 7 cards each.

  3. Designate three distinct locations for the battle. Each location will have its own separate battlefield.

Gameplay

  1. Each player draws 1 card from the deck, to their hand, if possible. Maximum cards per hand is 7.

  2. Players take turns playing cards from their hand on any of the three locations.

  3. On each turn, players have energy equal to the turn number, for example, on Turn 3, they have 3 energy to spend.

  4. Each card has a cost that must be paid using energy to play it on a location.

  5. Players can play as many cards as they want as long as the following conditions are met:

    1. They have sufficient energy to spend on the card.

    2. The location has an empty spot. Each player has 4 available spots per location.

  6. The power level of each card represents its strength in the game.

  7. When the turn ends, the energy not used is lost.

End of the Game

  1. The game ends after six turns, at which point locations are resolved, with each location having a winner or a tie.

  2. The player who wins the most locations is the overall winner.

  3. If the players win an equal number of locations, the total power level across all locations is used as a tiebreaker to determine the winner.

  4. If the total power level across all locations is also tied, then the game results in a tie.

Location Resolution

  1. Locations are resolved separately at the end of the game.

  2. Compare the total power levels of all cards played by each player at the location after applying special abilities.

  3. The player with the higher total power level wins the location.

  4. If there is a tie, no one wins the location.

Special Abilities

  1. Some cards have special abilities that can affect the game. These abilities trigger at the end of the game, before location resolution.

  2. Abilities can buff the card’s power level, interact with other cards, or manipulate the game state.

  3. Two cards that portray the same character are considered to portray distinct characters for the sake of abilities.

The game Heroes of Velmar offers a mix of strategic card play, resource management, and tactical decision-making. Players must choose their heroes wisely, coordinate their plays, and employ their unique abilities to outwit their opponents and emerge victorious in the epic battle for control over Velmar!

Card design

Card Explanation:

  • Top Left Corner: The energy cost required to play the card on the battlefield.

  • Top Right Corner: The power level of the card, representing its strength.

  • Text on the Bottom: The name of the card, identifying its character.

  • Text Underneath: The card’s ability, describing its unique effect during gameplay.

\includegraphics[width=0.29\textwidth ]{imgs/shadow.png} \includegraphics[width=0.29\textwidth ]{imgs/gale.png} \includegraphics[width=0.29\textwidth ]{imgs/ranger.png}

\includegraphics[width=0.29\textwidth ]{imgs/anvil.png} \includegraphics[width=0.29\textwidth ]{imgs/vexia.png} \includegraphics[width=0.29\textwidth ]{imgs/guardian.png}

\includegraphics[width=0.29\textwidth ]{imgs/thunderheart.png} \includegraphics[width=0.29\textwidth ]{imgs/frostwhisper.png} \includegraphics[width=0.29\textwidth ]{imgs/voidclaw.png}

\includegraphics[width=0.29\textwidth ]{imgs/ironwood.png} \includegraphics[width=0.29\textwidth ]{imgs/zenith.png} \includegraphics[width=0.29\textwidth ]{imgs/seraphina.png}

Input

Input consists of six lines representing the state of the three locations after six turns of play. This means that there will be at most 24 cards total listed in the input.

First the left location is described, then the center location is described, and finally the right location is described. Each location is described by two lines, the first of which represents player 1’s cards and the second of which represents player 2’s cards. Each line lists the number of cards in the line and then the names of the cards played by the player, separated by spaces. There will be at most four cards in each line.

Note that a player may leave a location empty. Each input is guaranteed to be a valid reachable final game state according to the game rules.

Output

Output "Player 1" if player 1 won, "Player 2" if player 2 won, or "Tie" if there was no victor.

Sample Input 1 Sample Output 1
3 Shadow Seraphina Ironwood
2 Voidclaw Voidclaw
1 Vexia
0
1 Ranger
0
Player 1
Sample Input 2 Sample Output 2
1 Guardian
1 Anvil
2 Seraphina Seraphina
1 Ranger
2 Ironwood Ranger
1 Guardian
Tie
Sample Input 3 Sample Output 3
1 Guardian
1 Anvil
2 Seraphina Seraphina
1 Ranger
1 Ironwood
1 Guardian
Player 2

Please log in to submit a solution to this problem

Log in