1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +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: "Vileplume",
fr: "Rafflesia",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
45,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Gloom",
fr: "Ortide",
},
stage: "Stage2",
abilities: [
@ -32,11 +37,12 @@ const card: Card = {
fr: "Fleur allergène",
},
effect: {
en: "Each player can't play any Trainer cards from his or her hand.",
en: "Each player cant play any Trainer cards from his or her hand.",
fr: "Aucun joueur ne peut jouer de carte Dresseur de sa main.",
},
},
],
attacks: [
{
cost: [
@ -50,12 +56,13 @@ const card: Card = {
},
effect: {
en: "Flip a coin. If heads, this attack does 50 damage plus 20 more damage. If tails, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires. Si c'est pile, le Pokémon Défenseur est maintenant Confus.",
fr: "Lancez une pièce. Si cest face, cette attaque inflige 50 dégâts plus 20 dégâts supplémentaires. Si cest pile, le Pokémon Défenseur est maintenant Confus.",
},
damage: 50,
damage: "50+",
},
],
weaknesses: [
{
type: "Psychic",
@ -65,8 +72,16 @@ const card: Card = {
retreat: 2,
description: {
en: "It has the worlds largest petals. With every step, the petals shake out heavy clouds of toxic pollen."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card