1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 18:59:53 +00:00

76 lines
1.1 KiB
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 '../Promo'
const card: Card = {
name: {
en: "Zekrom-EX",
fr: "Zekrom ex",
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
644,
],
hp: 180,
types: [
"Lightning",
],
suffix: "EX",
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Glinting Claw",
fr: "Griffe Scintillante",
},
effect: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 50,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Strong Volt",
fr: "Décharge Foudroyante",
},
effect: {
en: "Discard 2 Energy attached to this Pokémon.",
fr: "Défaussez 2 Énergies attachées à ce Pokémon.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 3,
}
export default card