1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 19:19:18 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/065.ts

32 lines
399 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",
attacks: [{
cost: ["Water", "Water", "Water"],
name: {
en: "Surf"
},
damage: "90"
}],
retreat: 3,
rarity: "Two Diamond"
}
export default card