mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-31 11:49:54 +00:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "X Speed",
|
|
fr: "Vitesse +",
|
|
es: "Velocidad X",
|
|
it: "Velocità X",
|
|
de: "X-Initiative",
|
|
'pt-br': "Velocidade X",
|
|
ko: "스피드업"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "None",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, the Retreat Cost of your Active Pokémon is 1 less.",
|
|
fr: "Pendant ce tour, le Coût de Retraite de votre Pokémon Actif est diminué d'une Énergie.",
|
|
es: "Durante este turno, el Coste de Retirada de tu Pokémon Activo es de 1 menos.",
|
|
it: "Durante questo turno, il costo di ritirata del tuo Pokémon attivo è ridotto di 1.",
|
|
de: "Während dieses Zuges verringern sich die Rückzugskosten deines Aktiven Pokémon um 1.",
|
|
'pt-br': "Durante este turno, o custo de Recuo do seu Pokémon Ativo é 1 a menos.",
|
|
ko: "이 차례에 자신의 배틀 포켓몬의 후퇴에 필요한 에너지를 1개 적게 만든다."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
boosters: []
|
|
}
|
|
|
|
export default card
|