mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 13:09:53 +00:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cyrus",
|
|
fr: "Hélio",
|
|
es: "Helio",
|
|
it: "Cyrus",
|
|
de: "Zyrus",
|
|
'pt-br': "Cyrus",
|
|
ko: "태홍"
|
|
},
|
|
|
|
illustrator: "akagi",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Switch in 1 of your opponent's Benched Pokémon that has damage on it to the Active Spot.",
|
|
fr: "Envoyez l'un des Pokémon de Banc de votre adversaire ayant subi des dégâts sur le Poste Actif.",
|
|
es: "Cambia 1 de los Pokémon en Banca de tu rival que ya tenga daño por el Pokémon que esté en el Puesto Activo.",
|
|
it: "Sostituisci uno dei Pokémon danneggiati nella panchina del tuo avversario con il suo Pokémon in posizione attiva.",
|
|
de: "Wechsle 1 Pokémon von der Bank deines Gegners, dem bereits Schaden zugefügt wurde, in die Aktive Position ein.",
|
|
'pt-br': "Mande 1 dos Pokémon no Banco do seu oponente que tiver algum dano nele para o Campo Ativo.",
|
|
ko: "상대 벤치의 데미지를 받고 있는 포켓몬을 1마리 선택해서 배틀 포켓몬과 교체한다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
boosters: ["palkia"]
|
|
}
|
|
|
|
export default card |