All posts
Published January 30, 2026intips

Tower Defense Game Prompt

2 min read

https://combos.fun/play?release_id=44

Tower defense game interface with sci-fi theme and isometric view
Tower defense gameplay showing enemy waves and defense towers
Tower defense game HUD and tower selection interface

1. Usage scenarios

When you wish to generate a:

  • A tower defense game with clear rules and full functionality
  • emphasizes gameplay structure rather than narrative expression
  • Projects that require a relatively complete system (enemies, waves, economy, UI)

This case is very suitable as a starting point. Its advantage lies in the fact that the system boundaries are clear, and Boo is not prone to overindulging in free play.

2. Key points of success

  • The gameplay objective is locked in advance: ​ The description clearly states "protect the core base", "enemies attack in waves", and "conditions for failure and victory", so Boo does not need to infer the game objective on its own.
  • The spatial structure is well-defined: ​ The central base, fixed entrances, and fixed tower positions, these elements simultaneously constrain the scene and logic, reducing the randomness in layout and behavior.
  • The system is closed-loop: ​ Enemy → Drop coins → Build towers / Upgrade → Defend against the next wave

The entire economy and process form a self-consistent cycle, making it easier for Boo to fill in details rather than reconstruct rules.

3. Core stable structure

When reusing this case, the following structure is recommended to be retained as much as possible:

  • 45° top-down isometric view + 3D scene
  • The spatial relationship of "central core + enemy entrance + tower position"
  • Wave-based process (Countdown → Battle → Settlement → Next Wave)
  • Gold coins serve as the sole core resource
  • Defense towers are categorized, with price and performance forming a gradient

These elements together form the framework ofthe ​tower defense​​​ gameplay​. Once disassembled, the generated results are likely to deviate into action or placement gameplay.

4. Replaceable and extensible directions

Without damaging the structure, the following content can be safely replaced:

  • Worldview themes (Space Station → Cyber City / Alien Colony, etc.)
  • Defense tower manifestation (energy projectile → laser / arc / missile)
  • Enemy Visual Style and Animation Performance
  • Number of batches and rhythm speed

These replacements have a greater impact onstyle and intensity of experiencethan on the gameplay itself.

5. Common issues and fixes

  1. After the tower is built, the difference in appearance is not obvious ​​, indicating that the "built state" and "selected state" of the tower are not clearly distinguished. It can be clearly pointed out that the appearance after construction needs to be strongly bound to the tower type, rather than reusing the placeholder model.
  2. The combat performance is flat, lacking a sense of impact ​This is usually due to insufficient description of the attack performance. It can be emphasized that hit flashes, energy feedback, and hit special effects need to clearly appear, not just numerical changes.
  3. The process now requires manual triggering by the player ​Re-emphasize "automatically enter the next wave" to avoid Boo's default join button or confirmation step.

9. Example prompt

*.Plain
Develop a sci-fi tower defense game. The game employs 3D environments rendered in a 45-degree isometric top-down perspective. The overall visual aesthetic features a dark-toned futuristic tech atmosphere, blending neon energy effects with metallic textures. The style is cohesive and leans toward hardcore tech realism rather than cartoonishness.
Setting:
The game is set within a space station.
At its center lies the core base requiring protection.
Four fixed defense tower construction sites surround the core base.
Enemies enter the map through designated entrances and advance along paths toward the core base.
The player's objective is to protect the core base from destruction during enemy wave assaults.
Players can:
- Construct defense towers at fixed sites
- Upgrade towers using gold coins
Defense towers come in three distinct types, each matching the base's thematic style while differing in gold cost, attack range, and other attributes. Higher-cost towers offer greater range and faster attack frequency.
Primary attack method: Energy projectile assault.
Attack animations must prominently feature: Sci-fi beam effects, hit flashes, energy feedback, and impact visuals.
Enemy Design:
Enemies emerge in waves from fixed entry points, comprising three types: Basic, Tank, and Swift. All enemy appearances and animations must adhere to sci-fi stylistic standards.
Gameflow Logic:
The game features five enemy waves (Wave 1–5).
Upon game start:
- Automatically enters a 3-second preparation countdown.
- Wave 1 automatically begins after the countdown ends.
After clearing an entire wave:
The system automatically enters a 3-second countdown for the next wave.
No manual player input required.
Coin System:
The game features a complete coin economy system.
Players earn coins by defeating enemies.
Coins are used for: Building defense towers, upgrading defense towers.
UI Style:
The overall UI adopts a sci-fi HUD style, utilizing semi-transparent panels, illuminated borders, and digital fonts. Layout is clear with distinct information hierarchy.
Must include the following interfaces and components: Game title screen (aligned with game style), combat HUD, tower construction selection popup (tower type, construction cost, function description, clear warning when gold is insufficient), victory/defeat summary screen.
The overall experience is a light strategy tower defense game—easy to pick up but offering strategic depth.

Related