mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Irida",
|
|
fr: "Nacchara",
|
|
es: "Nákara",
|
|
it: "Perula",
|
|
de: "Perla",
|
|
'pt-br': "Irida",
|
|
ko: "주혜"
|
|
},
|
|
|
|
illustrator: "Atsushi Furusawa",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Heal 40 damage from each of your Pokémon that has any {W} Energy attached.",
|
|
fr: "Soignez 40 dégâts de chacun de vos Pokémon auquel de l'Énergie {W} est attachée.",
|
|
es: "Cura 40 puntos de daño a cada uno de tus Pokémon que tenga alguna Energía {W} unida a él.",
|
|
it: "Cura ciascuno dei tuoi Pokémon che abbia delle Energie {W} assegnate da 40 danni.",
|
|
de: "Heile 40 Schadenspunkte bei jedem deiner Pokémon, an das mindestens 1 {W}-Energie angelegt ist.",
|
|
'pt-br': "Cure 40 pontos de dano de cada um dos seus Pokémon que tiver alguma Energia {W} ligada.",
|
|
ko: "{W}에너지가 붙어 있는 자신의 포켓몬 전원의 HP를 40회복."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card
|