mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 22:09:18 +00:00
77 lines
1.0 KiB
TypeScript
77 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Diamond & Pearl'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Goldeen",
|
|
fr: "Poissirène",
|
|
de: "Goldini"
|
|
},
|
|
|
|
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",
|
|
de: "Hornattacke"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Water",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Take Down",
|
|
fr: "Bélier",
|
|
de: "Bodycheck"
|
|
},
|
|
effect: {
|
|
en: "Goldeen does 10 damage to itself.",
|
|
fr: "Poissirène s'inflige 10 dégâts.",
|
|
de: "Goldini fügt sich selbst 10 Schadenspunkte zu."
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Il nage élégamment en agitant sa nageoire caudale comme si c'était une robe. Il a l'allure d'une reine."
|
|
}
|
|
}
|
|
|
|
export default card
|