mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 21:09:54 +00:00
36 lines
1.4 KiB
TypeScript
36 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cynthia",
|
|
fr: "Cynthia",
|
|
es: "Cintia",
|
|
it: "Camilla",
|
|
de: "Cynthia",
|
|
'pt-br': "Cíntia",
|
|
ko: "난천"
|
|
},
|
|
|
|
illustrator: "Ryuta Fuse",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, attacks used by your Garchomp or Togekiss do +50 damage to your opponent's Active Pokémon.",
|
|
fr: "Pendant ce tour, les attaques utilisées par votre Carchacrok ou votre Togekiss infligent + 50 dégâts au Pokémon Actif de votre adversaire.",
|
|
es: "Durante este turno, los ataques de tu Garchomp o tu Togekiss hacen Garchomp+50 puntos[/Ctrl:NoBreak] de daño al Pokémon Activo de tu rival.",
|
|
it: "Durante questo turno, gli attacchi usati dal tuo Garchomp o Togekiss infliggono +50 danni al Pokémon attivo del tuo avversario.",
|
|
de: "Während dieses Zuges fügen die Attacken deines Knakrack oder Togekiss dem Aktiven Pokémon deines Gegners + 50 Schadenspunkte zu.",
|
|
'pt-br': "Durante este turno, os ataques usados pelo seu Garchomp ou Togekiss causarão +50 pontos de dano ao Pokémon Ativo do seu oponente.",
|
|
ko: "이 차례에 자신의 「한카리아스」「토게키스」 사용하는 기술이 상대의 배틀 포켓몬에게 주는 데미지를 +50한다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
boosters: ["palkia"]
|
|
}
|
|
|
|
export default card
|