1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

75 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Ho-Oh",
fr: "Ho-Oh",
es: "Ho-Oh",
it: "Ho-Oh",
pt: "Ho-Oh",
de: "Ho-Oh"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
250,
],
hp: 130,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Rainbow Burn",
fr: "Brûlure Arc-en-Ciel",
es: "Ardor Arcoíris",
it: "Fiammabaleno",
pt: "Queimadura Arco-íris",
de: "Regenbogenfeuer"
},
effect: {
en: "This attack does 30 more damage for each type of basic Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque type dÉnergie de base attaché à ce Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada tipo de Energía Básica diferente unida a este Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni tipo di Energia base assegnata a questo Pokémon.",
pt: "Este ataque causa 30 pontos de dano a mais para cada tipo de Energia básica ligada a este Pokémon.",
de: "Diese Attacke fügt 30 Schadenspunkte mehr mal der Anzahl der an dieses Pokémon angelegten verschiedenen Basis-Energietypen zu."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card