Rename strenghts to features

This commit is contained in:
Sakura Knoll
2022-01-01 21:18:25 +09:00 Unverified
parent d7d94f2ba2
commit bd4e426a96
84 changed files with 96 additions and 107 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ export interface BattlesuitData {
name: string
type: string
valkyrie: string
strengths: string[]
features: string[]
leader: BattlesuitSkillGroup
special: BattlesuitSkillGroup
evasion: BattlesuitSkillGroup
@@ -24,7 +24,7 @@ export interface BattlesuitData {
sp?: BattlesuitSkillGroup
}
export const battlesuitStrengths = [
export const battlesuitFeatures = [
{ icon: 'feature-icons/physical', value: 'physical', label: 'Physical' },
{ icon: 'feature-icons/fire-dmg', value: 'fire-dmg', label: 'Fire DMG' },
{ icon: 'feature-icons/ice-dmg', value: 'ice-dmg', label: 'Ice DMG' },
+1 -1
View File
@@ -9,7 +9,7 @@ export interface ElfData {
id: string
name: string
baseRank: number
strengths: string[]
features: string[]
skillRows: [ElfSkill[], ElfSkill[], ElfSkill[], ElfSkill[]]
version: string
}