1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

51 lines
798 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Zeraora",
fr: "Zeraora",
es: "Zeraora",
it: "Zeraora",
pt: "Zeraora",
de: "Zeraora"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
stage: "Basic",
retreat: 1,
regulationMark: "E",
illustrator: "Teeziro",
description: {
en: "It approaches its enemies at the speed of lightning, then tears them limb from limb with its sharp claws."
},
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
en: "Wild Charge"
},
damage: 70,
effect: {
en: "This Pokémon also does 20 damage to itself."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card