mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18: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: "Raticate",
|
||||
fr: "Rattatac",
|
||||
},
|
||||
|
||||
illustrator: "Sachiko Adachi",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
20,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rattata",
|
||||
fr: "Rattata",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -38,7 +42,7 @@ const card: Card = {
|
||||
en: "Does 10 damage times the number of damage counters on the Defending Pokémon.",
|
||||
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur le Pokémon Défenseur.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -57,6 +61,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -64,10 +69,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 0,
|
||||
|
||||
description: {
|
||||
en: "Its whiskers help it to maintain balance. Its fangs never stop growing, so it gnaws to pare them down."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user