Skip to content

Commit

Permalink
4.5 placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
chadluo committed Mar 6, 2024
1 parent 20394a9 commit fad5e94
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/models/characters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,12 @@ export const characters: Character[] = [
"Lumidouce Bell",
],
},
{
id: "Chiori",
type: "character",
rarity: 5,
name: { en: "Chiori", "zh-CN": "千织" },
},
{
id: "Chongyun",
type: "character",
Expand Down
14 changes: 14 additions & 0 deletions src/models/weapons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,13 @@ export const weapons: Weapon[] = [
"Transoceanic Pearl",
],
},
{
id: "Uraku Mitsugiri",
type: "weapon",
rarity: 5,
category: "Sword",
name: { en: "Uraku Mitsugiri", "zh-CN": "有乐御簾切" },
},
//
// Newline - sword 5
//
Expand Down Expand Up @@ -1519,6 +1526,13 @@ export const weapons: Weapon[] = [
"Meshing Gear",
],
},
{
id: "Dialogues of the Desert Sages",
type: "weapon",
rarity: 4,
category: "Polearm",
name: { en: "Dialogues of the Desert Sages", "zh-CN": "沙中伟贤的对答" },
},
//
// Newline - polearm 4
//
Expand Down
5 changes: 5 additions & 0 deletions src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ const versions: { version: string; start: number; items: string[] }[] = [
start: new Date(2024, 1 - 1, 31).getTime(),
items: ["Gaming", "Xianyun", "Crane’s Echoing Call"],
},
{
version: "4.5",
start: new Date(2024, 3 - 1, 12).getTime(),
items: ["Chiori", "Uraku Mitsugiri", "Dialogues of the Desert Sages"],
},
];

export function findRecents() {
Expand Down

0 comments on commit fad5e94

Please sign in to comment.