-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4c6b3e
commit 77936ad
Showing
10 changed files
with
135 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import type { Weapon } from '../../types/weapon/weapon'; | ||
|
||
export const merylIronheart = { | ||
id: 'Meryl Ironheart', | ||
displayName: 'Meryl Ironheart', | ||
elementalIcon: 'Volt-Frost', | ||
resonanceElements: ['Volt', 'Frost'], | ||
calculationElements: ['Volt', 'Frost'], | ||
damageElement: 'Volt', | ||
type: 'Defense', | ||
attackPercentBuffs: [ | ||
{ | ||
id: 'Volt Resonance', | ||
displayName: 'Volt Resonance', | ||
description: '+15% volt ATK when equipping 2 or more volt weapons', | ||
value: 0.15, | ||
elementalTypes: ['Volt'], | ||
canStack: false, | ||
isActivePassively: true, | ||
minStarRequirement: 0, | ||
maxStarRequirement: 6, | ||
elementalResonanceRequirements: ['Volt'], | ||
}, | ||
{ | ||
id: 'Frost Resonance', | ||
displayName: 'Frost Resonance', | ||
description: '+15% frost ATK when equipping 2 or more frost weapons', | ||
value: 0.15, | ||
elementalTypes: ['Frost'], | ||
canStack: false, | ||
isActivePassively: true, | ||
minStarRequirement: 0, | ||
maxStarRequirement: 6, | ||
elementalResonanceRequirements: ['Frost'], | ||
}, | ||
{ | ||
id: 'Meryl Ironheart Discharge ATK Buff', | ||
displayName: 'Meryl Ironheart discharge', | ||
description: '+10% volt ATK for 20s on Meryl Ironheart discharge', | ||
value: 0.1, | ||
elementalTypes: ['Volt'], | ||
canStack: false, | ||
isActivePassively: false, | ||
minStarRequirement: 0, | ||
maxStarRequirement: 6, | ||
} | ||
], | ||
critRateBuffs: [], | ||
critDamageBuffs: [], | ||
normalAttacks: [], | ||
dodgeAttacks: [], | ||
skills: [], | ||
discharges: [], | ||
buffs: [], | ||
resources: [], | ||
} as const satisfies Weapon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters