1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/065.ts
2025-02-19 21:52:42 +01:00

45 lines
613 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Dewgong"
},
illustrator: "Kanako Eo",
category: "Pokemon",
hp: 120,
types: ["Water"],
stage: "Stage1",
evolveFrom: {
en: "Seel"
},
attacks: [{
cost: ["Water", "Water", "Water"],
name: {
en: "Surf"
},
damage: "90"
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3,
rarity: "Two Diamond",
description: {
en: "It sunbathes on the beach after meals. The rise in its body temperature helps its digestion.",
}
}
export default card