1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

71 lines
1.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Neo Revelation'
const card: Card = {
name: {
en: "Ho-oh",
fr: "Ho-oh",
de: "Ho-oh"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
250,
],
hp: 90,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Rainbow Burn",
fr: "Brûlure arcenciel",
de: "Rainbow Burn"
},
effect: {
en: "This attack does 30 damage plus 10 more for each type of Basic Energy card if any, attached to Ho-oh",
fr: "Cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires par type de carte Énergie de base attachée à Ho-oh, le cas échéant.",
de: "This attack does 30 damage plus 10 more damage for each type of Basic Energy card, if any, attached to Ho-oh."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "D'après la légende, son corps luirait de sept couleurs. Un arc-en-ciel apparaît toujours dans son sillage."
}
}
export default card