1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39:18 +00:00

Fix HeartGold SoulSilver datas (#73)

* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-09-29 23:43:33 +02:00
committed by GitHub
parent f8508fcd08
commit dc4d1bd6cb
414 changed files with 6893 additions and 2404 deletions

View File

@ -6,22 +6,27 @@ const card: Card = {
en: "Golduck",
fr: "Akwakwak",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
55,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Psyduck",
fr: "Psykokwak",
},
stage: "Stage1",
abilities: [
@ -37,6 +42,7 @@ const card: Card = {
},
},
],
attacks: [
{
cost: [
@ -51,10 +57,11 @@ const card: Card = {
en: "Does 30 damage plus 10 more damage for each Water Energy attached to all of your Pokémon.",
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque carte Énergie Water attachée à tous vos Pokémon.",
},
damage: 30,
damage: "30+",
},
],
weaknesses: [
{
type: "Lightning",
@ -64,8 +71,16 @@ const card: Card = {
retreat: 1,
description: {
en: "When it swims at full speed using its long, webbed limbs, its forehead somehow begins to glow."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card