Complete rename of the card progression system from "Evolution" to "Refractor" across all code, routes, models, services, seeds, and tests. - Route prefix: /api/v2/evolution → /api/v2/refractor - Model classes: EvolutionTrack → RefractorTrack, etc. - 12 files renamed, 8 files content-edited - New migration to rename DB tables - 117 tests pass, no logic changes Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
574 B
JSON
30 lines
574 B
JSON
[
|
|
{
|
|
"name": "Batter Track",
|
|
"card_type": "batter",
|
|
"formula": "pa + tb * 2",
|
|
"t1_threshold": 37,
|
|
"t2_threshold": 149,
|
|
"t3_threshold": 448,
|
|
"t4_threshold": 896
|
|
},
|
|
{
|
|
"name": "Starting Pitcher Track",
|
|
"card_type": "sp",
|
|
"formula": "ip + k",
|
|
"t1_threshold": 10,
|
|
"t2_threshold": 40,
|
|
"t3_threshold": 120,
|
|
"t4_threshold": 240
|
|
},
|
|
{
|
|
"name": "Relief Pitcher Track",
|
|
"card_type": "rp",
|
|
"formula": "ip + k",
|
|
"t1_threshold": 3,
|
|
"t2_threshold": 12,
|
|
"t3_threshold": 35,
|
|
"t4_threshold": 70
|
|
}
|
|
]
|