mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
757 B
TypeScript
48 lines
757 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
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: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "Miki Tanaka",
|
|
|
|
description: {
|
|
en: "Dewpider normally lives underwater. When it comes onto land in search of food, it takes water with it in the form of a bubble on its head."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Grass"],
|
|
|
|
name: {
|
|
en: "Bug Bite"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |