Token Match Game System with Dynamic Randomness
Find Innovative SolutionsGenerate Solutions
Solution Overview
Problem
Casual match-3 games lack sufficient randomness and luck, relying more on strategy and long-term planning, which may not appeal to all players.
Innovation Solution
A token match game system that introduces additional randomness by allowing players to replace tokens from a second array into a first array, creating regions of adjacent identical tokens for scoring, with the option to draw new tokens when no plays are possible, and incorporating wild tokens and special features.
Engineering Contradictions & Design Principles
Engineering Contradiction Analysis
1Adaptability or versatility
If match-3 games rely more on strategy and long-term planning, then gameplay depth and player skill engagement are improved, but randomness and luck elements deteriorate, making the game less appealing to players who prefer chance-based gameplay
Solution Approach 1:
The game dynamically adjusts between strategy and randomness by introducing a second array that is refilled randomly when no moves are available. This creates a dynamic gameplay experience where players alternate between strategic planning phases and luck-based token generation phases, resolving the contradiction between gameplay depth and randomness
Solution Approach 2:
The game implements periodic random events through the second array mechanism. When players exhaust their moves in the first array, the system periodically introduces new randomness by refilling the second array with randomly generated tokens, ensuring both strategic depth and luck elements are maintained throughout gameplay
2Ease of operation
If match-3 games introduce additional randomness through a second array and token drawing mechanism, then player engagement and entertainment value are improved, but game complexity and rule structure deteriorate
Solution Approach 1:
The game is segmented into two distinct arrays with different functions: the first array for strategic token matching and the second array for random token generation. This segmentation allows the game to incorporate complexity through multiple structures while maintaining ease of operation by clearly defining the purpose and rules for each array separately
3Productivity
If players are allowed to draw new hands of tokens when no plays are possible, then gameplay continuity and player satisfaction are improved, but the deterministic nature of match-3 games deteriorates
Solution Approach 1:
The game prepares for future randomness by maintaining a second array as a preliminary reservoir of tokens. When the first array is exhausted, players can draw from this pre-prepared second array, ensuring gameplay continuity without requiring immediate external random generation, thus balancing determinism and randomness
Data Source
AI summary
An m×l array of randomly selected tokens may be provided as a playing field, and a second n×l array of randomly selected tokens may be provided as a hand. The player may select a cell within the m×l array to replace the token in said cell with a token in a corresponding cell of the n×l array. If the replacement results in a region of adjacent identical tokens in the m×l array, the tokens may be removed and the player's score incremented. If no plays are possible from the player's hand, the player may draw a new hand of randomly selected tokens to replace the tokens and/or blank spaces in the n×l array. Play continues until the player has exhausted a predetermined number of opportunities to draw a new hand.


