Skip to content

Commit

Permalink
[Issue-203] [Mythical] Add "Mythical" type for Rarity on Filter screen
Browse files Browse the repository at this point in the history
  • Loading branch information
dungnguyen-art committed Nov 27, 2024
1 parent 53a2a58 commit 2c1ebbf
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ export const PositionOptions = [
{ id: 'OL', label: 'Offensive Linemen (OL)' },
{ id: 'RB', label: 'Running BAck (RB)' },
{ id: 'FS', label: 'Free Safety (FS)' },
{ id: 'K', label: 'Kicker (K)' }
{ id: 'K', label: 'Kicker (K)' },
{ id: 'DE', label: 'Defensive End (DE)' },
{ id: 'DT', label: 'Defensive Tackle (DT)' },
{ id: 'LB', label: 'Linebacker (LB)' }
];

export const TeamOptions = [
Expand Down Expand Up @@ -90,7 +93,8 @@ export const RarityOptions = [
{ id: 'rare', label: 'Rare' },
{ id: 'epic', label: 'Epic' },
{ id: 'legendary', label: 'Legendary' },
{ id: 'common', label: 'Common' }
{ id: 'common', label: 'Common' },
{ id: 'mythical', label: 'Mythical' }
];

export const PowerOptions = [
Expand Down

0 comments on commit 2c1ebbf

Please sign in to comment.