1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

91 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Rapidash",
fr: "Galopa",
de: "Gallopa"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
78,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Ponyta",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Fiery Aura",
fr: "Aura flamboyante",
de: "Fiery Aura"
},
effect: {
en: "As long as Rapidash is your Active Pokémon, put 4 damage counters instead of 2 on Burned Pokémon between turns.",
fr: "Tant que Galopa est votre Pokémon Actif, placez 4 marqueurs de dégât au lieu de 2 sur les Pokémon Brûlés entre deux tours.",
de: "As long as Rapidash is your Active Pokémon, put 4 damage counters instead of 2 damage counters on Burned Pokémon between turns."
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Searing Flame",
fr: "Flammes calcinantes",
de: "Searing Flame"
},
effect: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
de: "The Defending Pokémon is now Burned."
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Rear Kick",
fr: "Ruade",
de: "Rear Kick"
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card