Skip to content

Commit

Permalink
Xilonen materials
Browse files Browse the repository at this point in the history
  • Loading branch information
chadluo committed Oct 11, 2024
1 parent 596a873 commit 66a1297
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/models/characters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1209,6 +1209,14 @@ export const characters: Record<CharacterId, Character> = {
type: "character",
rarity: 5,
name: { en: "Xilonen", "zh-CN": "希诺宁" },
materials: [
"Gold-Inscribed Secret Source Core",
"Prithiva Topaz",
"Mirror of Mushin",
"Kindling",
"Sentry’s Wooden Whistle",
"Brilliant Chrysanthemum",
],
},
Xingqiu: {
id: "Xingqiu",
Expand Down
10 changes: 10 additions & 0 deletions src/models/enemies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,16 @@ export const bosses: Boss[] = [
name: { en: "Kongamato", "zh-CN": "康加玛托" },
materials: ["Overripe Flamegranate", "Nagadus Emerald"],
},
{
id: "Secret Source Automaton: Configuration Device",
region: "Natlan",
type: "boss",
name: {
en: "Secret Source Automaton: Configuration Device",
"zh-CN": "秘源机兵・构型械",
},
materials: ["Gold-Inscribed Secret Source Core", "Vajrada Amethyst"],
},
//
// Newline - normal boss
//
Expand Down
17 changes: 15 additions & 2 deletions src/models/materials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export type CharacterAscension =
| "Cloudseam Scale"
| "Fragment of a Golden Melody"
| "Mark of the Binding Blessing"
| "Overripe Flamegranate";
| "Overripe Flamegranate"
| "Gold-Inscribed Secret Source Core";

export type TalentBook =
| "Freedom"
Expand Down Expand Up @@ -201,7 +202,8 @@ export type LocalSpeciality =
| "Trishiraite"
| "Quenepa Berry"
| "Sprayfeather Gill"
| "Saurian Claw Succulent";
| "Saurian Claw Succulent"
| "Brilliant Chrysanthemum";

export type WeaponAscension =
| "Mask of the Wicked Lieutenant"
Expand Down Expand Up @@ -730,6 +732,10 @@ const localSpecialities: readonly Material[] = [
id: "Saurian Claw Succulent",
name: { en: "Saurian Claw Succulent", "zh-CN": "肉龙掌" },
},
{
id: "Brilliant Chrysanthemum",
name: { en: "Brilliant Chrysanthemum", "zh-CN": "灼灼彩菊" },
},
//
// Newline - local specialities
//
Expand Down Expand Up @@ -917,6 +923,13 @@ const characterAscensions: readonly Material[] = [
id: "Overripe Flamegranate",
name: { en: "Overripe Flamegranate", "zh-CN": "过熟的火榴果" },
},
{
id: "Gold-Inscribed Secret Source Core",
name: {
en: "Gold-Inscribed Secret Source Core",
"zh-CN": "秘刻金纹的源核",
},
},
//
// Newline - character ascension
//
Expand Down

0 comments on commit 66a1297

Please sign in to comment.