top of page
TurnBasedCombat.png

Turn base combat prototype

Game Design & Game Programming
Unity prototype

Personnal game project i worked on in between school project and intership (2021-2023)

About The Game

I created this game to practice and improve my technical skills in Unity C#. On the other hand, it served as a design exploration of turn-based combat, with the goal of uncovering some of its core principles.

I delved deeply into its origins in tabletop role-playing games (TTRPGs) and examined various interpretations in both Western and Eastern video games. This involved analyzing and synthesizing over 30 years of history and evolution, with a particular focus on Western indie turn-based combat and JRPGs.

Details

  • 5 people

  • Tools

    • Unity 3D​

    • Google (documentation)

    • Github

  • Responsibilities

    • Game Design

    • Programming

--------------------------------------------------------------------------------------------------------

A Design Perspective

I haven't finish the document sadly because i would like to provide best exemple and deeper analysis on the good and bad of each principle and their possible contratiction. Each principle might end up being entry of the Design Cookbook.

Before we begin, I want to clarify that I followed a set of rules for this analysis: no tactical game elements, no focus on input actions, and no inclusion of card or deck-building mechanics.
 

  1. Microeconomic System: Turn-based combat can be viewed as a microeconomic system where players aim to win trades. Designers increase its complexity and rewards by introducing progression elements that further complicate these trades.
     

  2. Focus on Surprises and Adaptation: The design should focus on surprising players and forcing them to adapt, whether during or between fights. A balance of chaos and player agency is key to creating a dynamic experience.
     

  3. Accumulation of Gameplay Loops: Turn-based combat systems are built upon the accumulation of gameplay loops, ranging from individual turns to entire battles and leveling up. Just like in a board game or a TCG, each turn should feel impactful.
     

  4. Dynamism and Build-Up: Dynamism in turn-based combat is achieved through growth and build-up between turns, providing players with multi-turn goals. This adds complexity and prevents combat from dragging on.
     

  5. Resource Management: A key aspect of turn-based combat is managing resources such as time (turns), life, mana, and action points. This management creates strategic depth and is essential for an engaging experience. Questions like how characters gain and spend resources, and whether they can gain or lose more, are crucial to consider.
     

  6. Encounter Design: As designers, we shouldn't try to control player behavior, but we do want to control the encounter to nudge players into new territory and force adaptation. The game’s meta should evolve over time, ensuring encounters remain engaging and challenging.
     

  7. Emotions: A range of emotions—both positive and negative—should be evoked, as this is essential for creating a lasting impact and preventing combat from becoming monotonous. This shouldn't apply to every encounter, but rather in medium- to large-scale loops (similar to roguelikes), aiming to make the experience addictive!
     

  8. Disrupt Enemy Turn: Encounters should feature powerful enemy attacks that players can disrupt with specific actions, fostering short-term adaptation and strategic changes. This is a must-have for an in-depth system.
     

  9. Reward System: Players should be consistently rewarded, with smaller rewards leading to larger ones, such as leveling up. Choices should feel impactful without overwhelming players with too many options. While this seems obvious, in the final article, I want to create a typology of rewards and explore the cost and benefits of each, as well as the trade-offs involved.
     

  10. Conditions on Spells: Spells should feature conditions to make them more strategic and interesting. While entry-level spells may not have conditions, these should be introduced quickly to add depth to the gameplay. Extra effects can be obtainable directly from the spell itself or through the systems surrounding combat.
     

Side Note: As a designer, I’m not a fan of meta-centric design and prefer to let players experiment with builds. This allows the creation of powerful metas but not across the entire game or as a reward.

--------------------------------------------------------------------------------------------------------

General Principle On Programming

The architecture of the project follows these principles:

  1. Observer Pattern using Scriptable Objects: As discussed in the Unite 2017 talk (mentioned in Cookie Points), this pattern helps manage communication between systems without direct coupling.

  2. Script Composition: Complex, multipurpose scripts are split into smaller, more manageable ones, each with a specific function.

  3. Game Object Independence: Following Ryan’s approach, game objects are designed to be independent. Once spawned, they know what to do. Their "manager" only serves to spawn and despawn them if they don’t handle that themselves.

  4. The Above Patterns: While I’m not sure if they have a specific name, these patterns help structure and organize the game, particularly when all the principles mentioned above are applied.

--------------------------------------------------------------------------------------------------------

In Combat

For most of the technical aspects, I aimed to reverse-engineer the RPG Maker engine in Unity, adapting its tools to fit my design. My goal was to create a highly modular system with extensive customization options.

We’ll explore three tools I developed: one for gameplay, another for dungeon layout, and a third for control and structure. These tools were essential in organizing and structuring the game, especially when following the principles outlined above.

spell01.png

This section contains only scripts that trigger events in other scripts or those that hold data.

The general settings are particularly intriguing because the formula lies at the core of this Scriptable Object. I use a system similar to RPG Maker, where designers input strings into the formula, and the game then translates them using values from the caster's and target's database.

The process unfolds as follows:

  1. Parse the formula.

  2. Convert strings into values by searching for them in the actor's data.

  3. Compute priority.

  4. If all priorities are resolved, proceed with the calculation.

  5. Provide the result.

The addition of conditions is a welcome enhancement to the design. It involves a class added to an ability that alters its formula or applies status effects to the caster or target, among other functions.

spell02.png

The "Enum," "Base Attack," and "Invocation" represent fundamental data of the skill, which are independent of actor data. These include characteristics such as attack type, flat damage bonus, base accuracy, base critical multiplier, and other essential attributes.

Status effects are conditions applied to either the target or caster, enriching the depth of strategy within the game.  More details bellow.

The battlefield is divided into tiles, with each spell possessing a distinct range and area of effect based on this system.

spell03_statusEffect.png

The Effect Library assists me in creating specific, hardcoded behaviors within my modular scripts. While all high-level scripts remain modular, they have the capability to link to deeper, hardcoded behaviors when necessary.

The traits takes a stats from enum (atk, def etc...) and change it in % or flat number. 
They are kept in list by the actor, they can stack and update.
It helps to create buff/debuff effect to atk or status without creating specific debuff asset.

The Status State is represented by an enum that indicates when to update the status (e.g., turn begin, receiving damage, etc.). Additionally, there are a few specific behaviors to choose from in response to these status updates.

In level design

In the game, progression occurs through dungeons that are generated within a node map, similar to the structure found in "Slay the Spire."

LD.png

We calculate the desired number of nodes, the number of paths, and the levels within the dungeon generation process.

The nodes come in various types to choose from, each offering different features. Additionally, they exhibit variations in distance and position within the dungeon layout.

LD2.png

Below, we select the asset to populate a given node type. Currently, this selection is random, but it should be updated to use weights for more controlled asset distribution.

--------------------------------------------------------------------------------------------------------

It's clear that my game development process focuses on building a robust set of tools to help create and manage various game elements. While demonstrating how to create characters or the core of the turn-based system may not be necessary due to their straightforward nature, these elements are essential to the overall architecture of the game.
 

By developing tools to build the game, I’m following a methodical and systematic approach to game development. This helps streamline the process and ensures consistency and scalability in my design.

bottom of page