Summary
A design pattern in which players must plan, manage, and control resource flows to reach game goals. All games where resources have a direct impact on goal achievement — not merely bookkeeping — require Resource Management (Björk & Holopainen 2004, see source-patterns-in-game-design).
Distinct from the systems-level treatment of economy in internal-economy (Adams/Sellers): Resource Management describes the player behaviour pattern of decision-making under resource constraints; Internal Economy describes the systemic structure of sources, drains, and converters.
Implementation
Minimum requirement: Limited Resources with direct impact on goal achievement. Without scarcity, there is no management — only bookkeeping.
Core building block: Producer-Consumer chains. Resources move from generators (producers) through possible converters to final outputs. Complexity scales with chain length:
- Simple: collected → spent (gold in early RPGs)
- Medium: gathered → stored → converted (wood → buildings → units in RTS)
- Complex: multiple input types → refined intermediates → multiple final outputs (Civilization’s production web)
Resource types:
- Renewable — regenerate over time; create ongoing management decisions
- Non-renewable — finite supply; create depletion pressure and long-term planning
- Shared — multiple players draw from the same pool; creates competition without direct conflict
Sources of interesting decisions:
- Trade-offs between resource uses (spend now vs. invest for later returns)
- risk-reward structure around resource deployment
- Uncertainty about future resource availability or opponent resource levels
Failure modes:
- No trade-offs → dominant strategy → management becomes execution, not decision-making
- Resource glut → scarcity disappears → management disappears
- Over-complexity → analysis-paralysis
Trade-offs
| Approach | Benefit | Risk |
|---|---|---|
| Renewable resources | Sustained engagement; ongoing decisions | Can become routine if rate is predictable |
| Non-renewable resources | Creates urgency and depletion pressure | Can produce runaway leader problem |
| Multiple resource types | Rich decision space | Cognitive load; dominant-strategy risk |
| Transparent resource state | Informed decisions | May reveal dominant strategy |
Examples
- StarCraft — minerals and vespene gas as dual-resource system; non-renewable per base; drives expansion pressure
- Magic: The Gathering — three layers simultaneously: in-game mana management, deck construction, collection management
- Stardew Valley — energy as a renewable daily resource driving farm management decisions
- Pandemic (board game) — shared action points and city cards; cooperative Resource Management
Related
internal-economy | risk-reward | game-balance | game-loops | meaningful-decisions | balancing-effects | source-patterns-in-game-design