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

76 lines
1.1 KiB
TypeScript
Raw Blame History

import { Card } from '../../../interfaces'
import Set from '../Next Destinies'
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: "Fighting",
value: "<22><>2"
},
],
retreat: 3,
}
export default card