mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
57 lines
803 B
TypeScript
57 lines
803 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Drakloak",
|
|
fr: "Dispareptil",
|
|
es: "Drakloak",
|
|
it: "Drakloak",
|
|
pt: "Drakloak",
|
|
de: "Phandra"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Psychic"],
|
|
|
|
evolveFrom: {
|
|
en: "Dreepy",
|
|
fr: "Fantyrm",
|
|
es: "Dreepy",
|
|
it: "Dreepy",
|
|
pt: "Dreepy",
|
|
de: "Grolldra"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
en: "Spooky Shot",
|
|
fr: "Tir Effrayant",
|
|
es: "Disparo Embrujado",
|
|
it: "Colpomistero",
|
|
pt: "Tiro Assustador",
|
|
de: "Spukschuss"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |