Translate elf pages

This commit is contained in:
Sakura Knoll
2022-01-08 21:53:10 +09:00 Unverified
parent 88f91c1a27
commit dfee374df9
7 changed files with 105 additions and 20 deletions
+3
View File
@@ -1,13 +1,16 @@
export interface ElfSkill {
type: 'passive' | 'basic' | 'ultimate' | 'team'
name: string
krName?: string
requiredRank: number
description: string
krDescription?: string
}
export interface ElfData {
id: string
name: string
krName?: string
baseRank: number
features: string[]
skillRows: [ElfSkill[], ElfSkill[], ElfSkill[], ElfSkill[]]