mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09: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:
@ -6,24 +6,28 @@ const card: Card = {
|
||||
en: "Ursaring",
|
||||
fr: "Ursaring",
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
217,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Teddiursa",
|
||||
fr: "Teddiursa",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -50,12 +54,13 @@ const card: Card = {
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 50 damage plus 30 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
|
||||
fr: "Lancez une pièce. Si c’est face, cette attaque inflige 50 dégâts plus 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -65,8 +70,16 @@ const card: Card = {
|
||||
|
||||
retreat: 3,
|
||||
|
||||
description: {
|
||||
en: "With its ability to distinguish any aroma, it unfailing finds all food buried deep underground."
|
||||
},
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user