8000 Fixed trinket chart by Voulk · Pull Request #1394 · Voulk/QuestionablyEpic · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fixed trinket chart #1394

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 50 additions & 43 deletions src/Databases/ItemDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -123654,9 +123654,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -134930,9 +134930,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -134966,9 +134966,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -202153,9 +202153,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675
]
},
Expand Down Expand Up @@ -230003,9 +230003,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -230237,9 +230237,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -230273,9 +230273,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -230309,9 +230309,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -230346,9 +230346,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -245805,7 +245805,14 @@ export const itemDB =
"type": "trinket",
"name": "Shining Arathor Insignia"
},
"levelRange": []
"levelRange": [
626,
632,
639,
645,
652,
658
]
},
{
"id": 225648,
Expand Down Expand Up @@ -245850,7 +245857,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -245936,7 +245943,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -245983,7 +245990,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -264633,7 +264640,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -264961,9 +264968,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -266013,9 +266020,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -266050,9 +266057,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -266158,9 +266165,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -266220,9 +266227,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -266282,9 +266289,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -269103,9 +269110,9 @@ export const itemDB =
639,
645,
652,
659,
658,
665,
672,
671,
675,
678
]
Expand Down Expand Up @@ -270542,7 +270549,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -271711,7 +271718,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -271745,7 +271752,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -272338,7 +272345,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -272940,7 +272947,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down Expand Up @@ -272974,7 +272981,7 @@ export const itemDB =
639,
645,
652,
659,
658,
665
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/General/Modules/TrinketAnalysis/TrinketAnalysis.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ export default function TrinketAnalysis(props) {
};
const contentType = useSelector((state) => state.contentType);
const playerSettings = useSelector((state) => state.playerSettings);
const allItemLevels = [626, 632, 639, 645, 652, 659, 665, 671, 675, 678];
const allItemLevels = [626, 632, 639, 645, 652, 658, 665, 671, 675, 678];

const itemLevels = allItemLevels.filter(level => level <= levelCap);

Expand Down
0