mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
93 lines
2.6 KiB
TypeScript
93 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [78],
|
||
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: "Shiny 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 can't 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 opponent's 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",
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "Brave and prideful, this Pokémon dashes airily through the forest, its steps aided by the psychic power stored in the fur on its fetlocks."
|
||
}
|
||
}
|
||
|
||
export default card
|