Overview
Thegames.json file contains the core data for all game countdowns. It stores information about version releases, patch notes, visual themes, and timing for each supported game.
File Location
Schema
The root object contains a singlegames array with game objects.
Root Object
Array of game objects containing version countdown data
Game Object
Each game object in thegames array has the following structure:
Complete Example
Usage in Components
The game data is imported and used throughout the application:In GameCard Component
Version Number Format
Version numbers follow amajor.minor format:
- Major version: Significant game updates
- Minor version: Regular patch cycles (0-8)
3.8 → 4.0).
See the avanzarVersion() utility in src/utils/change-version.ts for version increment logic.