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

75 lines
1.1 KiB
TypeScript
Raw 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 '../Evolutions'
const card: Card = {
name: {
en: "Dewgong",
fr: "Lamantine",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
87,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Seel",
fr: "Otaria",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Super Deep Dive",
fr: "Super Gros Plongeon",
},
effect: {
en: "Heal 40 damage from this Pokémon. Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Soignez 40 dégâts à ce Pokémon. Échangez ce Pokémon avec lun de vos Pokémon de Banc.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
},
effect: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon sinflige 20 dégâts.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card