Skip to content

Commit e87e6d7

Browse files
committed
Add Enkanomiya specter route (by Yukie)
1 parent 9e901a2 commit e87e6d7

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

src/commands/misc/guide.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ Note: this command supports fuzzy search.`,
4949
async runInteraction(source: CommandInteraction): Promise<SendMessage | undefined> {
5050
const { options } = source
5151
const query = options.getString("guide") ?? ""
52+
5253
if (query == "")
5354
return this.runList(source)
55+
5456
return this.runSearch(source, query)
5557
}
5658

src/data/guides.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,17 @@
131131
"credits": "Soul"
132132
},
133133
{
134-
"name": "Specter (Spectral Husk, Heart and Nucleus)",
135-
"desc": "**Specters ${Hydro Specter}${Anemo Specter}${Geo Specter}** are Common Enemies found in Inazuma. They are Elemental Lifeforms and drop **Spectral Husk ${Spectral Husk}**, **Spectral Heart ${Spectral Heart}** and **Spectral Nucleus ${Spectral Nucleus}**.",
134+
"name": "Specter (Spectral Husk, Heart and Nucleus): Inazuma",
135+
"desc": "**Specters ${Hydro Specter}${Anemo Specter}${Geo Specter}${Electro Specter}${Cryo Specter}** are Common Enemies found in Inazuma. They are Elemental Lifeforms and drop **Spectral Husk ${Spectral Husk}**, **Spectral Heart ${Spectral Heart}** and **Spectral Nucleus ${Spectral Nucleus}**.",
136136
"img": "https://cdn.discordapp.com/attachments/922995664957350030/922997225880166440/Specters_Route_Inazuma.png",
137137
"url": "https://youtu.be/5Kb79QIzwn0",
138138
"credits": "Yukie"
139+
},
140+
{
141+
"name": "Specter (Spectral Husk, Heart and Nucleus): Enkanomiya",
142+
"desc": "**Specters ${Hydro Specter}${Anemo Specter}${Geo Specter}${Electro Specter}${Cryo Specter}** are Common Enemies found in Inazuma. They are Elemental Lifeforms and drop **Spectral Husk ${Spectral Husk}**, **Spectral Heart ${Spectral Heart}** and **Spectral Nucleus ${Spectral Nucleus}**.",
143+
"img": "https://cdn.discordapp.com/attachments/928691743719837706/928691820395900998/Enka_Specters.png",
144+
"credits": "Yukie"
139145
}
140146
]
141147
},

src/utils/Types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export enum StatsName {
350350
BaseATK = "Base ATK",
351351
BaseDEF = "Base DEF",
352352
BaseHP = "Base HP",
353-
CRITRate = "CRIT Rate",
353+
CritRate = "CRIT Rate",
354354
CritDmg = "CRIT DMG",
355355
CryoDMGBonus = "Cryo DMG Bonus",
356356
Def = "DEF%",
@@ -537,7 +537,7 @@ export interface AbyssSchedule {
537537
export interface Event {
538538
name: string
539539
type: EventType
540-
prediction?: boolean
540+
prediction?: boolean
541541
link?: string
542542
img?: string
543543
start?: string

0 commit comments

Comments
 (0)