mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
40 lines
632 B
TypeScript
40 lines
632 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Dewpider"
|
|
},
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "It forms a water bubble at the rear of its body and then covers its head with it. Meeting another Dewpider means comparing water-bubble sizes."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Hook"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Water", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |