mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
48 lines
655 B
TypeScript
48 lines
655 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
dexId: [751],
|
|
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 |