1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00

47 lines
640 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Silver Tempest"
const card: Card = {
set: Set,
name: {
en: "Dewpider",
fr: "Araqua",
es: "Dewpider",
it: "Dewpider",
pt: "Dewpider",
de: "Araqua"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "Hook",
fr: "Crochet",
es: "Garfio",
it: "Uncino",
pt: "Gancho",
de: "Haken"
},
damage: 30
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card