mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@ -4,24 +4,29 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rapidash",
|
||||
fr: "Galopa"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
78,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ponyta",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -31,11 +36,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Stomp",
|
||||
fr: "Écrasement"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage; if tails, this attack does 20 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts plus 10 dégâts supplémentaires ; si c'est pile, cette attaque inflige 20 dégâts."
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -46,14 +53,17 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Agility",
|
||||
fr: "Hâte"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Rapidash.",
|
||||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, prévenez tous les effets d'attaques, y compris les dégâts, infligés à Galopa."
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -61,10 +71,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Doté d'un esprit de compétition, il poursuit toute créature rapide pour faire la course."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user