1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

71 lines
846 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Gym Challenge'
const card: Card = {
name: {
en: "Misty's Dewgong",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
87,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Seel",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Ice Throw",
},
effect: {
en: "If the Defending Pokémon is , this attack's base damage is doubled.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
},
effect: {
en: "Misty's Dewgong does 20 damage to itself.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card