1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 20:09:55 +00:00

35 lines
1.4 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 "../Triumphant Light"
const card: Card = {
set: Set,
name: {
en: "Adaman",
fr: "Adamantin",
es: "Adamas",
it: "Damon",
de: "Diam",
'pt-br': "Ádamo",
ko: "찬석"
},
illustrator: "akagi",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "During your opponent's next turn, all of your {M} Pokémon take 20 damage from attacks from your opponent's Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, tous vos Pokémon {M} subissent 20 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 -20 puntos de daño a todos tus Pokémon {M}.",
it: "Durante il prossimo turno del tuo avversario, tutti i tuoi Pokémon {M} subiscono -20 danni dagli attacchi dei Pokémon avversari.",
de: "Während des nächsten Zuges deines Gegners werden allen deinen {M}-Pokémon durch Attacken von Pokémon deines Gegners 20 Schadenspunkte zugefügt.",
'pt-br': "Durante o próximo turno do seu oponente, todos os seus Pokémon {M} receberão 20 pontos de dano de ataques dos Pokémon do seu oponente.",
ko: "상대의 다음 차례에 자신의 {M}포켓몬 전원이 상대의 포켓몬으로부터 받는 기술의 데미지를 -20한다."
},
trainerType: "Supporter"
}
export default card