1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

71 lines
911 B
TypeScript
Raw 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 '../Roaring Skies'
const card: Card = {
name: {
en: "Zekrom",
fr: "Zekrom",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
644,
],
hp: 130,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Energy Stream",
fr: "Courant d'Énergie",
},
effect: {
en: "Attach a basic Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie de base de votre pile de défausse à ce Pokémon.",
},
damage: 30,
},
{
cost: [
"Fire",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Electric Ball",
fr: "Boule de Foudre",
},
damage: 100,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card