Character Specialization System
Base
Shadow Tactics: Blades of the Shogun
- Status
- Released
- Year
- 2016
- Genre
- Indie, Strategy
- Platforms
- Windows, macOS, Linux
1. Summary
Each playable character occupies a distinct tactical niche defined by their ability loadout, mobility archetype, and core stats. The system divides characters into complementary roles—infiltration, lure/trap, crowd control, social infiltration, and long-range elimination—so that no single character masters all tactical domains. Mission-specific squad composition and cross-character coordination via Shadow Mode are required to overcome varied enemy types and environmental challenges.
3. Design Intent / Job Story
When I encounter a heavily guarded compound with mixed enemy types, I want to select the character whose specialization matches the tactical challenge, so that I can overcome obstacles that other characters cannot handle alone.
4. Role in Gameplay Loop
- Defines the tactical identity of each playable character within the squad
- Creates puzzle-like scenarios where the available roster determines viable approaches
- Drives cross-character coordination by making individual characters incapable of solving all encounter types alone
- Progressively introduces new specializations through the campaign, expanding the player's tactical toolbox
- Establishes a rock-paper-scissors dynamic against enemy type hierarchy (normal guards, straw-hat guards, samurai)
5. Preconditions
- Mission has loaded with a defined playable character roster
- At least one playable character is alive and not incapacitated
- Relevant tutorial scrolls have introduced the specialization's abilities (for first-time encounters)
- For firearm-dependent specialists, the campaign progression flag for firearm unlock is active
- For the social-infiltration disguise, appropriate clothing has been acquired from the environment
6. Parameters
| Parameter | Value | Type | Notes |
|---|---|---|---|
| Health (standard) | 4 | int | Base health for most specializations |
| Health (crowd-control) | 6 | int | Extra health for the crowd-control specialization |
| Ability slots | 4 | int | Active abilities per specialization, mapped to A/S/D/F |
| Mobility archetypes | Agile, Heavy | enum | Determines available traversal options |
| Takedown speed | Fast, Standard, Slow | enum | Varies by specialization; affects detection risk |
| Body carry capacity | 1–2 | int | Number of bodies a character can transport at once |
| Scoped rifle ammo | 6–7 | int | Limited shots for the long-range specialization's rifle |
| Grenade charges | 2 | int | Explosive charges for the long-range specialization |
| Firearm ammo (standard) | 3 | int | Matchlock pistol shots for applicable specializations |
| Firearm ammo (heavy) | 2 | int | Hand cannon shots for the crowd-control specialization |
7. Core Rules
- Each playable character belongs to exactly one tactical specialization that defines their ability categories, mobility archetype, and core stats.
- No single specialization covers all tactical domains; each has explicit strengths and weaknesses.
- Specializations are divided into two mobility archetypes: Agile (vine climbing, swimming, jumping, grappling hooks, narrow walkway balancing) and Heavy (ladder climbing only, no swimming/jumping/vines).
- Each specialization has a unique melee takedown profile: speed, noise level, and whether it can kill samurai in direct combat.
- Body transport methods vary by specialization: carrying (moderate slowdown, audible), dragging (severe slowdown, can pass through outer vision cone undetected), or throwing (instant launch, stuns on impact).
- The crowd-control specialization can carry two bodies simultaneously and heavy environmental objects (stones, barrels) at a severe speed penalty.
- The long-range elimination specialization cannot perform melee takedowns, cannot carry bodies, and cannot move while using their scoped rifle.
- The social-infiltration specialization can acquire disguises from the environment to walk freely among normal guards, but loses disguise upon climbing, entering water, or being spotted killing.
- Samurai enemies see through the social-infiltration disguise and attack on sight.
- The lure/trap specialization can place pressure-triggered traps and use sound-based luring; traps in bushes automatically hide the victim's body.
- The infiltration specialization runs silently and can use a grappling hook at environmental hook-rings.
- Firearms (matchlock pistols or hand cannon) are campaign-gated and unlock partway through the story for applicable specializations.
- Mission-specific squad composition varies by level, forcing the player to adapt their approach to the available specializations.
8. BDD Scenarios
Scenario: Infiltration specialist bypasses guards using silent movement
- Given
- a patrol of normal guards is blocking the path
- When
- the player throws a noise distraction and runs silently past the guards while they are turned
- Then
- the infiltration specialist reaches the destination without detection
- And
- the infiltration specialist is selected
Scenario: Lure specialist isolates a guard with sound
- Given
- a guard is standing in a fixed position out of melee reach
- When
- the player uses the sound lure ability
- Then
- the guard leaves their post and walks toward the lure origin
- And
- the lure specialist is hidden in a bush
- And
- the guard investigates for a few seconds before returning
Scenario: Crowd-control specialist eliminates a patrol
- Given
- two or more normal guards are walking in a patrol formation
- When
- the player activates the area attack ability
- Then
- all non-samurai guards in the area of effect are killed
- And
- the crowd-control specialist is within melee range of the patrol
- And
- the ability enters a long cooldown
Scenario: Social-infiltration specialist uses disguise to bypass guards
- Given
- the social-infiltration specialist has acquired a disguise from the environment
- When
- the player activates the disguise
- Then
- the specialist can walk through the guard-filled area without detection But if a samurai is present, they see through the disguise and attack
- And
- there are normal guards blocking a corridor
Scenario: Long-range specialist eliminates a distant target
- Given
- an enemy is visible at long range with clear line of sight
- When
- the player activates the scoped rifle and fires
- Then
- the target is killed silently
- And
- the long-range specialist is in a safe position
- And
- the specialist remains stationary during aiming and firing
Scenario: Cross-specialization coordination via Shadow Mode
- Given
- a guard is watching another guard
- When
- the player queues melee takedowns for both specialists in Shadow Mode
- Then
- both guards are eliminated before either can raise an alarm
- And
- the infiltration specialist is behind one guard
- And
- the lure specialist is behind the other guard
- And
- executes the queued actions simultaneously
9. Edge Cases
- The only available specialist for a required task is dead or incapacitated, making the encounter impossible without reloading
- A disguised specialist loses disguise by accidentally climbing a vine or entering water while enemies are watching
- A trap placed by the lure specialist is spotted by an enemy in their vision cone before anyone steps on it
- The reusable ranged weapon of the infiltration specialist lands in an unreachable location (e.g., on a rooftop)
- The crowd-control specialist's area attack is interrupted by an enemy attack, leaving the specialist vulnerable
- A samurai sees through the social-infiltration disguise before the player realizes a samurai is nearby
- The long-range specialist runs out of scoped rifle ammunition with no alternative way to eliminate a distant target
- Shadow Mode queues conflicting actions on the same target from two different specialists
- A sound lure attracts more enemies than intended, overwhelming the player or blocking escape routes
- The heavy object thrown by the crowd-control specialist misses and lands in an enemy's vision cone
- A player attempts to use a firearm before the campaign unlock flag is active
- A patrol containing a straw-hat guard and normal guards is lured; the straw-hat is not distracted but follows the normal guards anyway
10. QA Notes
- Verify each of the five specializations has exactly four active abilities mapped to A/S/D/F
- Verify mobility archetype correctly gates all traversal types (vines, water, jumps, grappling hooks, narrow walkways, ladders)
- Verify silent running produces zero footstep noise radius for the infiltration specialization
- Verify takedown speed and noise levels differ correctly across specializations
- Verify the crowd-control specialization has 6 health points while all others have 4
- Verify the crowd-control specialization can carry two bodies simultaneously and heavy objects
- Verify the long-range specialization cannot perform melee takedowns or carry bodies
- Verify disguise acquisition requires environmental interaction (stealing clothes or looting designated civilians)
- Verify disguise breaks under all documented conditions: attacking, climbing vines, entering water, being spotted killing
- Verify samurai correctly ignore disguises and attack on sight
- Verify traps in bushes automatically hide victim bodies; traps in open ground leave bodies visible
- Verify firearms only become available after the designated campaign mission trigger
- Verify mission-specific squad composition restricts available specializations per level
- Verify body dragging allows undetected movement through the outer region of enemy vision cones
- Verify the lure/trap specialization's sound lure can be used multiple times but triggers investigation behavior that may chain-react
- Verify straw-hat guards correctly ignore most distractions but still follow lured patrol companions
11. Mechanic Dependencies
- Character Ability System (Character specializations are expressed through unique ability loadouts mapped to the A/S/D/F bar; each specialization defines which ability categories the character possesses)
- Stealth Elimination Mechanics (Stealth elimination mechanics vary by specialization—takedown speed, noise level, and body transport method differ across characters)
- Environmental Interaction System (Environmental interaction capabilities (heavy object carrying, grappling hooks, hook-rings) are gated by specialization)
- Character Movement System (Mobility archetype (agile vs heavy) is a core pillar of specialization, gating traversal options like vine climbing, swimming, and grappling hooks)
- Enemy Type Hierarchy (Enemy type hierarchy (normal guards, straw-hat guards, samurai) determines which specialists can safely engage which enemies)
- Shadow Mode Coordination System (Cross-character coordination in Shadow Mode is the primary way players leverage complementary specializations to solve encounters)
12. UI Links
- Character Portrait And Selection Panel - Each character slot represents a different specialization, and the panel lets the player quickly access each unique role.
- Subtitles/Dialog Text - Character Specialization System — the subtitle panel displays character portraits with unique colored borders that identify which of the five specialists is speaking.
References
- 1.
Steam Community :: Guide :: Shadow Tactics: Full Character Guides and Tricks (L1-45 of 116)
- 2.
Steam Community :: Guide :: Shadow Tactics: Full Character Guides and Tricks (L46-72 of 116)
- 3.
Steam Community :: Guide :: Shadow Tactics: Full Character Guides and Tricks (L73-99 of 116)
- 4.
Steam Community :: Guide :: Shadow Tactics: Full Character Guides and Tricks (L100-126 of 116)
- 5.
Steam Community :: Guide :: Shadow Tactics: Full Character Guides and Tricks (L127-148 of 116)
- 6.
Steam Community :: Guide :: Shadow Tactics: Blades of the Shogun 101 (L33-75 of 101)
- 7.
Steam Community :: Guide :: Shadow Tactics: Blades of the Shogun 101 (L76-95 of 101)
- 8.
Shadow Tactics: Blades of the Shogun (L35-55 of 52)
- 9.
Shadow Tactics: Blades of the Shogun Review - IGN (L1-30 of 28)
- 10.
Shadow Tactics: Blades of the Shogun Review – Is This the Best Version Yet? (1:21-1:46)
- 11.
The Art of Shadow Tactics Blades of the Shogun and STRATEGY GUIDE (L6-23 of 4930)
