mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Shining Revelry"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Red",
|
|
fr: "Red",
|
|
es: "Rojo",
|
|
it: "Rosso",
|
|
de: "Rot",
|
|
'pt-br': "Red",
|
|
ko: "레드"
|
|
},
|
|
|
|
illustrator: "Teeziro",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex.",
|
|
fr: "Pendant ce tour, les attaques de vos Pokémon infligent + 20 dégâts au Pokémon-{ex} Actif de votre adversaire.",
|
|
es: "Durante este turno, los ataques de tus Pokémon hacen +20 puntos de daño al Pokémon {ex} Activo de tu rival.",
|
|
it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono +20 danni al Pokémon-{ex} attivo del tuo avversario.",
|
|
de: "Während dieses Zuges fügen die Attacken deiner Pokémon dem Aktiven Pokémon-{ex} deines Gegners + 20 Schadenspunkte zu.",
|
|
'pt-br': "Durante este turno, os ataques usados pelos seus Pokémon causam +20 pontos de dano ao Pokémon {ex} Ativo do seu oponente.",
|
|
ko: "이 차례에 자신의 포켓몬이 사용하는 기술이 상대 배틀필드의 「포켓몬 {ex}」에게 주는 데미지를 +20한다."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card |