1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

31 lines
1.0 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 '../XY trainer Kit (Latias)'
const card: Card = {
set: Set,
name: {
en: "Acro Bike",
fr: "Vélo Cross",
es: "Bici Acrobática",
it: "Bici da cross",
pt: "Bicicleta Acro",
de: "Kunstrad"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Look at the top 2 cards of your deck and put 1 of them into your hand. Discard the other card.",
fr: "Regardez les 2 cartes du dessus de votre deck et ajoutez lune dentre elles à votre main. Défaussez lautre carte.",
es: "Mira las 2 primeras cartas de tu baraja y pon 1 de ellas en tu mano. Descarta la otra carta.",
it: "Guarda le prime due carte del tuo mazzo e aggiungi una di esse alle carte che hai in mano. Scarta laltra carta.",
pt: "Olhe os 2 cards de cima do seu baralho e coloque 1 deles de volta na sua mão. Descarte o outro card.",
de: "Schau dir die 2 obersten Karten deines Decks an und nimm 1 auf deine Hand. Lege die andere Karte auf deinen Ablagestapel."
},
trainerType: "Item"
}
export default card