1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00

69 lines
796 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Goldeen",
fr: "Poissirène",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
118,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Horn Attack",
fr: "Koud'korne",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
},
effect: {
en: "Goldeen does 10 damage to itself.",
fr: "Poissirène s'inflige 10 dégâts.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
retreat: 1,
}
export default card