1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

86 lines
2.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Galopa de Galar",
en: "Galarian Rapidash",
es: "Rapidash de Galar",
it: "Rapidash di Galar",
pt: "Rapidash de Galar",
de: "Galar-Gallopa"
},
illustrator: "Kagemaru Himeno",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 100,
types: ["Psychic"],
evolveFrom: {
fr: "Ponyta de Galar",
en: "Galarian Ponyta"
},
abilities: [{
type: "Ability",
name: {
fr: "Voile Pastel",
en: "Pastel Veil",
es: "Velo Pastel",
it: "Pastelvelo",
pt: "Véu de Tons Pastéis",
de: "Pastellhülle"
},
effect: {
fr: "Vos Pokémon guérissent de tous les États Spéciaux et ne peuvent être affectés par aucun État Spécial.",
en: "Your Pokémon recover from all Special Conditions and cant be affected by any Special Conditions.",
es: "Tu Pokémon se recupera de todas las Condiciones Especiales y no puede verse afectado por ninguna Condición Especial.",
it: "I tuoi Pokémon guariscono da tutte le condizioni speciali e non possono esserne influenzati.",
pt: "Seus Pokémon se recuperam de todas as Condições Especiais e não podem ser afetados por quaisquer Condições Especiais.",
de: "Deine Pokémon erholen sich von allen Speziellen Zuständen und können von keinen Speziellen Zuständen betroffen werden."
}
}],
attacks: [{
name: {
fr: "Psyko",
en: "Psychic",
es: "Psíquico",
it: "Psichico",
pt: "Psíquico",
de: "Psychokinese"
},
effect: {
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire.",
en: "This attack does 30 more damage for each Energy attached to your opponents Active Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía unida al Pokémon Activo de tu rival.",
it: "Questo attacco infligge 30 danni in più per ogni Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Diese Attacke fügt für jede an das Aktive Pokémon deines Gegners angelegte Energie 30 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card