Skip to content

Commit

Permalink
5.3 character weapon placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
chadluo committed Dec 24, 2024
1 parent 4b5cdfa commit f2ac3b9
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 15 deletions.
51 changes: 36 additions & 15 deletions src/models/characters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export type CharacterId =
| "Chevreuse"
| "Chiori"
| "Chongyun"
| "Citlali"
| "Clorinde"
| "Collei"
| "Cyno"
Expand Down Expand Up @@ -68,10 +69,12 @@ export type CharacterId =
| "Klee"
| "Kujou Sara"
| "Kuki Shinobu"
| "Lan Yan"
| "Layla"
| "Lisa"
| "Lynette"
| "Lyney"
| "Mavuika"
| "Mika"
| "Mona"
| "Mualani"
Expand All @@ -80,8 +83,8 @@ export type CharacterId =
| "Neuvillette"
| "Nilou"
| "Ningguang"
| "Ororon"
| "Noelle"
| "Ororon"
| "Qiqi"
| "Raiden Shogun"
| "Razor"
Expand Down Expand Up @@ -338,6 +341,12 @@ export const characters: Record<CharacterId, Character> = {
"Cor Lapis",
],
},
Citlali: {
id: "Citlali",
type: "character",
rarity: 5,
name: { en: "Citlali", "zh-CN": "茜特菈莉" },
},
Clorinde: {
id: "Clorinde",
type: "character",
Expand Down Expand Up @@ -758,6 +767,12 @@ export const characters: Record<CharacterId, Character> = {
"Naku Weed",
],
},
"Lan Yan": {
id: "Lan Yan",
type: "character",
rarity: 4,
name: { en: "Lan Yan", "zh-CN": "蓝砚" },
},
Layla: {
id: "Layla",
type: "character",
Expand Down Expand Up @@ -814,6 +829,12 @@ export const characters: Record<CharacterId, Character> = {
"Rainbow Rose",
],
},
Mavuika: {
id: "Mavuika",
type: "character",
rarity: 5,
name: { en: "Mavuika", "zh-CN": "玛薇卡" },
},
Mika: {
id: "Mika",
type: "character",
Expand Down Expand Up @@ -926,20 +947,6 @@ export const characters: Record<CharacterId, Character> = {
"Glaze Lily",
],
},
Ororon: {
id: "Ororon",
type: "character",
rarity: 4,
name: { en: "Ororon", "zh-CN": "欧洛伦" },
materials: [
"Mark of the Binding Blessing",
"Vajrada Amethyst",
"Lightless Silk String",
"Kindling",
"Juvenile Fang",
"Glowing Hornshroom",
],
},
Noelle: {
id: "Noelle",
type: "character",
Expand All @@ -954,6 +961,20 @@ export const characters: Record<CharacterId, Character> = {
"Valberry",
],
},
Ororon: {
id: "Ororon",
type: "character",
rarity: 4,
name: { en: "Ororon", "zh-CN": "欧洛伦" },
materials: [
"Mark of the Binding Blessing",
"Vajrada Amethyst",
"Lightless Silk String",
"Kindling",
"Juvenile Fang",
"Glowing Hornshroom",
],
},
Qiqi: {
id: "Qiqi",
type: "character",
Expand Down
12 changes: 12 additions & 0 deletions src/models/enemies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,12 @@ export const bosses: Boss[] = [
name: { en: "Tenebrous Papilla", "zh-CN": "深邃摹结株" },
materials: ["Ensnaring Gaze", "Agnidus Agate", "Vajrada Amethyst"],
},
{
id: "Wayward Hermetic Spiritspeaker",
region: "Natlan",
type: "boss",
name: { en: "Wayward Hermetic Spiritspeaker", "zh-CN": "灵觉隐修的迷者" },
},
//
// Newline - normal boss
//
Expand Down Expand Up @@ -586,6 +592,12 @@ export const bosses: Boss[] = [
"zh-CN": "两界之火的遗烬 / 「仆人」",
},
},
{
id: "Lord of Eroded Primal Fire",
region: "Natlan",
type: "weekly_boss",
name: { en: "Lord of Eroded Primal Fire", "zh-CN": "蚀灭的源焰之主" },
},
//
// Newline - weekly boss
//
Expand Down
16 changes: 16 additions & 0 deletions src/models/weapons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export type WeaponId =
| "Cashflow Supervision"
| "Crane’s Echoing Call"
| "Surf’s Up"
| "Starcaller’s Watch"
//
// NewId - catalyst 5
//
Expand All @@ -56,6 +57,7 @@ export type WeaponId =
| "Beacon of the Reed Sea"
| "Verdict"
| "Fang of the Mountain King"
| "A Thousand Blazing Suns"
//
// NewId - claymore 5
//
Expand Down Expand Up @@ -497,6 +499,13 @@ export const weapons: Record<WeaponId, Weapon> = {
"Juvenile Fang",
],
},
"Starcaller’s Watch": {
id: "Starcaller’s Watch",
type: "weapon",
rarity: 5,
category: "Catalyst",
name: { en: "Starcaller’s Watch", "zh-CN": "祭星者之望" },
},
//
// Newline - catalyst 5
//
Expand Down Expand Up @@ -584,6 +593,13 @@ export const weapons: Record<WeaponId, Weapon> = {
"Sentry’s Wooden Whistle",
],
},
"A Thousand Blazing Suns": {
id: "A Thousand Blazing Suns",
type: "weapon",
rarity: 5,
category: "Claymore",
name: { en: "A Thousand Blazing Suns", "zh-CN": "焚曜千阳" },
},
//
// Newline - claymore 5
//
Expand Down
11 changes: 11 additions & 0 deletions src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@ const versions: { version: string; start: number; items: string[] }[] = [
"Calamity of Eshu",
],
},
{
version: "5.3",
start: new Date("2025-01-01").getTime(),
items: [
"Mavuika",
"Citlali",
"Lan Yan",
"Starcaller’s Watch",
"A Thousand Blazing Suns",
],
},
];

export function findRecents() {
Expand Down

0 comments on commit f2ac3b9

Please sign in to comment.