Deck planning

Uma Musume Deck Builder

Build support decks and understand limit-break rules, compatibility scoring, templates, skill-hint hand-offs, and saved state.

Updated September 1, 20264 min read

The Deck Builder (/deck) is an interactive workspace for one character and up to six support cards. It explains a deck the player has chosen through combined effects, skill hints, compatibility scoring, and scenario templates.

Data sources

DatasetUsed for
public/assets/support_hints.jsonSupport identity, rarity, type, effects, unique effects, hints, and images.
public/assets/uma_data.jsonCharacter identity, stat bonuses, and aptitudes in the Deck Builder.
public/assets/skills_all.jsonLazy-loaded skill conditions used to categorize hints and score style or distance affinity.

The builder follows the site's Global/JP data preference. The preference changes displayed names; deck records continue to use stable IDs or slugs.

Limit breaks and effect values

Each card stores an 11-value effect progression for levels 1, 5, 10, and every five levels through 50. A displayed limit-break stop maps to a different level for each rarity:

StopSSRSRR
LB0302520
LB1353025
LB2403530
LB3454035
MLB504540

A support's unique effects count only when the selected stop reaches the unique effect's unlock level. The mapping and summary logic live in public/js/deck.js.

Building and inspecting a deck

The character picker can filter by distance, surface, and strategy aptitude. The support picker can filter by support type and rarity, search by name, and sort by an effect. Clicking a filled support slot opens its effect panel; the level slider there is for inspecting progression, while the LB buttons on the deck slot define the value used by the deck summary.

The combined summary includes:

  • the selected character's stat bonuses;
  • combined support effects at the selected limit breaks;
  • unique and shared skill hints, grouped by activation category;
  • support-type coverage and the sources of shared hints;
  • the effective shared hint level and its capped discount.

Shared hint levels are added across their source cards, capped at level 5. The displayed discount is 10% per effective level, capped at 40%.

Compatibility score

The builder's grade is a heuristic for Grand Live / Grand Concert, Team Stadium Class 6. It is not a universal deck-strength score. Four equally sized components contribute up to 25 points each:

ComponentWhat it rewards
Type balanceGrand Live type distributions, including the scenario-defining Light Hello friend card.
Effect stackingTraining Effectiveness, Race Bonus, Fan Bonus, and breadth of initial-stat effects.
Hint synergyA large hint pool and hints shared by multiple supports.
Character fitSupport types matching the character's bonuses and strongest distance.

The raw total is capped according to the average limit-break stop of the selected cards. The interpolated caps run from 55 at LB0 to 100 at MLB. Grades are then assigned from F through S.

Because the assumptions are scenario-specific and dated, update the comments, templates, document, and UI copy together when replacing the underlying statistics.

Templates and hand-offs

Meta Templates replace the current six supports with a recorded Grand Live template at MLB. Template usage percentages and card lists are defined directly in public/js/deck.js.

The builder connects to the rest of the suite in two ways:

  • Copy Share Link encodes the character, supports, and non-MLB limit breaks in the /deck query string.
  • Open in Skill Optimizer combines support hints, caps their effective levels, adds character aptitudes, and opens /optimizer with an encoded build in the URL fragment.

The active deck and named saved decks remain separate. Editing the active deck does not rewrite a named snapshot until the user saves another copy.

Persistence

KeyContents
umatools-deckCurrent character, supports, and limit breaks.
umatools-saved-decksNamed deck snapshots.

Both values are browser-local. See Local Data and Share Links for lifecycle and URL details.

Source files

FileResponsibility
public/deck.htmlDeck Builder markup and dialogs.
public/js/deck.jsBuilder state, scoring, templates, summaries, sharing, and hand-offs.
public/css/air.cssShared and deck-specific presentation.