1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

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