1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 16:31:58 +00:00

feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)

This commit is contained in:
yugi-classic
2025-05-02 00:43:52 +02:00
committed by GitHub
parent aa07e67c80
commit b26236e78c
25 changed files with 990 additions and 37 deletions

View File

@@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../DP trainer Kit (Manaphy)'
const card: Card = {
dexId: [118],
set: Set,
name: {
en: "Goldeen"
},
illustrator: "Atsuko Nishida",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 60,
types: [
"Water",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Horn Attack"
},
damage: 10
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Take Down"
},
effect: {
en: "Goldeen does 10 damage to itself."
},
damage: 30
}
],
weaknesses: [
{
type: "Lightning",
value: "10+"
}
],
description: {
en: "It swims elegantly by flittering its tail fin as if it were a dress. It has the look of a queen."
},
retreat: 1
}
export default card