1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +00:00

34 lines
1.3 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 "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Blue",
fr: "Blue",
es: "Azul",
it: "Blu",
de: "Blau",
'pt-br': "Blue",
ko: "그린"
},
illustrator: "Ryuta Fuse",
category: "Trainer",
effect: {
en: "During your opponent's next turn, all of your Pokémon take 10 damage from attacks from your opponent's Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, tous vos Pokémon subissent 10 dégâts provenant des attaques des Pokémon de votre adversaire.",
es: "Durante el próximo turno de tu rival, los ataques de los Pokémon de tu rival hacen -10 puntos de daño a todos tus Pokémon.",
it: "Durante il prossimo turno del tuo avversario, tutti i tuoi Pokémon subiscono -10 danni dagli attacchi dei Pokémon avversari.",
de: "Während des nächsten Zuges deines Gegners werden allen deinen Pokémon durch Attacken von Pokémon deines Gegners 10 Schadenspunkte zugefügt.",
'pt-br': "Durante o próximo turno do seu oponente, todos os seus Pokémon receberão 10 pontos de dano de ataques dos Pokémon do seu oponente.",
ko: "상대의 다음 차례에 자신의 포켓몬 전원이 상대의 포켓몬으로부터 받는 기술의 데미지를 -10한다."
},
trainerType: "Supporter",
rarity: "Two Star"
}
export default card