1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

79 lines
1021 B
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 '../Call of Legends'
const card: Card = {
name: {
en: "Ho-Oh",
fr: "Ho-Oh",
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
250,
],
hp: 100,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Combustion",
fr: "Fournaise",
},
damage: 50,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Scorching Wing",
fr: "Aile brûlante",
},
effect: {
en: "Flip a coin. If tails, discard all Fire Energy attached to Ho-Oh.",
fr: "Lancez une pièce. Si cest pile, défaussez toutes les Énergies Fire attachées à Ho-Oh.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card