mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
52 lines
813 B
TypeScript
52 lines
813 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [807],
|
|
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 |