Overview
Utopia Fleet Builder contains a comprehensive database of Star Trek Attack Wing ship cards. Each ship card represents a starship with unique stats, abilities, and upgrade slots.Ship Data Structure
Ship cards are stored as JavaScript objects with the following properties:Always
"ship" for ship cardsUnique identifier for the ship (e.g.,
"S415", "S414")Game system identifier (1 = Attack Wing, 2 = other variants)
Array of set codes where this ship appears (e.g.,
["75016"])Ship name (e.g.,
"U.S.S. Atlas", "Enterprise NX-01")Ship class designation (e.g.,
"Sovereign Class", "Galaxy Class")URL to ship card image
Combat Statistics
Primary weapon attack value (typically 1-6)
Defense/evasion value (typically 1-3)
Hull strength/damage capacity (typically 2-7)
Shield protection value (typically 0-5)
Squadron point cost to field this ship
Abilities and Actions
Available action types:
"evade"- Defensive maneuver"target-lock"- Acquire weapon lock"scan"- Sensor scan"battlestations"- Combat readiness"cloak"- Cloaking device"sensor-echo"- Repositioning while cloaked
Available upgrade slots:
"tech"- Technology upgrades"weapon"- Weapon systems"crew"- Crew members- Multiple slots of same type allowed
Ship ability text with HTML formatting and game icons
Special Properties
Whether this is a unique named ship (only one per fleet)
Alliance faction designation
Faction affiliations:
"federation"- United Federation of Planets"klingon"- Klingon Empire"romulan"- Romulan Star Empire"dominion"- Dominion"borg"- Borg Collective"independent"- Independent ships
Whether this is a squadron/fighter unit
Special interception rules (ship and fleet level)
Real Examples
Federation Capital Ship
Early Starfleet Ship
Independent Faction Ship
Ship Classes
Common ship classes in the database:Federation Classes
- Sovereign Class
- Galaxy Class
- Constitution Class (Refit)
- Federation NX Class
- Intrepid Class
- Miranda Class
Other Factions
- D’deridex Class (Romulan)
- Valdore Class (Romulan)
- Vor’cha Class (Klingon)
- Jem’Hadar Battle Cruiser (Dominion)
- Hirogen Warship (Independent)
Using Ship Data
Filtering by Faction
Finding High-Cost Ships
Grouping by Class
Game Mechanics
Ship Costs
Ship costs range from 7 SP (small scouts) to 34 SP (massive warships like the Scimitar).Unique Ships
Unique ships (unique: true) represent named vessels and can only be fielded once per fleet. Generic ships (unique: false) can be fielded multiple times.
Upgrade Slots
Ships have varying numbers of upgrade slots:- Tech: Advanced systems and technology
- Weapon: Torpedoes, phasers, and other weapons
- Crew: Officers and specialists
Some ships have multiple slots of the same type (e.g.,
["weapon", "weapon"] for two weapon slots).