2D Card Battle game

Hello. I am looking for a template or some guidance on how to create a simple game as follows:

2 player game
Each player selects three characters from a group of characters
Each character has different attributes and moves that do damage, etc.
Game is played until one team has no health left.
Some moves require dice roll

Characters do not have to be animated, just would be stationery jpgs.

Thank you in advance

  1. Create classes for each thing you’re talking about - players, cards, characters
  2. Create visual representations of each of those with some UI images and monobehaviours
  3. Create a game manager that controls turns, dice, ui etc
  4. Then you can have fun adding animations etc

Thats a general concept for any sort of game you’re going for btw

Try this tutorial for turn-based card game:

Or try this series of videos for card games:

Basically, you’ll first want to figure out how to get turns working from a game manager (like Primoz56 said). Then you can start figuring out how combat, defense, etc. (how each turn functions).