Card Games

I wanted to challange myself to recreate how these games work

Blackjack

A complete casino-style Blackjack implementation featuring dealer AI, betting system, and authentic game rules.

  • Complex dealer decision-making logic
  • Card counting and hand evaluation
  • Smooth animations with doTween

Hi-Lo

A streamlined card prediction game that served as an initial exploration into card game mechanics and Unity development.

  • Probability-based gameplay
  • Deck management system
  • Intuitive UI/UX design

Key Learnings

💡

Implemented ScriptableObjects for efficient card and deck management, enabling easy modification and reuse across different game modes.

💡

Learned doTween animation system for creating smooth card movements and chip spawning.

💡

Developed modular code structure that allowed for easy expansion from Hi-Lo to the more complex Blackjack implementation.

Technical Challenges

🔧

Implementing dealer AI logic with appropriate delays for natural gameplay flow.

🔧

Synchronizing animations with game state changes to prevent race conditions.

🔧

Creating a flexible card system that could be easily adapted for different games.

Code Architecture

Card ScriptableObject CardDeck ScriptableObject

ScriptableObject Implementation

Cards and decks are implemented as ScriptableObjects, providing a flexible foundation for both games. This approach allows for easy modification of card properties and quick creation of different deck configurations and offers the possiblitys to make sidebets.

Dealer Logic

CardDeck ScriptableObject

ScriptableObject Implementation

Ensuring the dealer Hits on a 16, giving the player a chance for the dealer to bust.

Blackjack Game

Hi-Lo Game