1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
1.2 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 '../Rising Rivals'
const card: Card = {
name: {
en: "Rapidash 4",
fr: "Galopa Niv. 53",
de: "Gallopa 4"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
78,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
name: {
en: "Pickup Power",
fr: "Pouvoir ramassage",
de: "Energie aufsammeln"
},
effect: {
en: "Flip 3 coins. For each heads, search your discard pile for a basic Energy card, show it to your opponent, and put it into your hand.",
fr: "Lancez 3 pièces. Pour chaque face, choisissez dans votre pile de défausse une carte Énergie de base, montrez-la à votre adversaire et placez-la dans votre main.",
de: "Wirf 3 Münzen. Durchsuche pro \"Kopf\" deinen Ablagestapel nach 1 Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf die Hand."
},
},
{
cost: [
"Fire",
],
name: {
en: "Fire Mane",
fr: "Crinière de feu",
de: "Flammenmähne"
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card