Implement pitcher archetype ratings in interactive creator #11
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: cal/paper-dynasty-card-creation#11
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
custom_cards/interactive_creator.py:498-500—starter_rating,relief_rating,closer_ratingare hardcoded stubs with TODO comments. Custom pitcher cards always get identical role ratings regardless of archetype.Priority: medium | Labels: todo, enhancement
PR #46 opened: #46
Fix approach: The
PitcherArchetypedataclass already definesstarter_rating,relief_rating, andcloser_ratingfor each archetype (e.g. Ace: 9/3/None, Closer: 2/9/9). The fix propagates these values throughcard_datawhen the pitcher workflow initialises its dict, then reads them increate_pitching_cardinstead of the hardcoded stubs.