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,22 +6,27 @@ const card: Card = {
|
||||
en: "Yanmega",
|
||||
fr: "Yanmega",
|
||||
},
|
||||
illustrator: "Noriko Hotta",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
illustrator: "Noriko Hotta",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
469,
|
||||
],
|
||||
|
||||
hp: 110,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Yanma",
|
||||
fr: "Yanma",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
@ -32,11 +37,12 @@ const card: Card = {
|
||||
fr: "Point de vue",
|
||||
},
|
||||
effect: {
|
||||
en: "If you have the same number of cards in your hand as your opponent the attack cost of each of Yanmega's attacks is 0.",
|
||||
en: "If you have the same number of cards in your hand as your opponent the attack cost of each of Yanmega’s attacks is 0.",
|
||||
fr: "Si vous avez le même nombre de cartes dans votre main que votre adversaire, le coût de chaque attaque de Yanmega est de 0.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -48,8 +54,8 @@ const card: Card = {
|
||||
fr: "Attaque linéaire",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Choisissez l'un des Pokémon de votre adversaire. Cette attaque inflige 40 dégâts à ce Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
en: "Choose 1 of your opponent’s Pokémon. This attack does 40 damage to that Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
fr: "Choisissez l’un des Pokémon de votre adversaire. Cette attaque inflige 40 dégâts à ce Pokémon. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||||
},
|
||||
|
||||
},
|
||||
@ -64,19 +70,21 @@ const card: Card = {
|
||||
fr: "Sonicboom",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by Weakness or Resistance.",
|
||||
en: "This attack’s damage isn’t affected by Weakness or Resistance.",
|
||||
fr: "Les dégâts infligés par cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||||
},
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -84,9 +92,15 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 0,
|
||||
suffix: "Prime",
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user