mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
33 lines
762 B
TypeScript
33 lines
762 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Darkness Ablaze'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Yell Horn",
|
|
fr: "Clairon de la Team Yell",
|
|
es: "Trompeta Yell",
|
|
it: "Trombetta Yell",
|
|
pt: "Corneta da Equipe Yell",
|
|
de: "Yell-Tröte"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
en: "Both Active Pokémon are now Confused.",
|
|
fr: "Les deux Pokémon Actifs sont maintenant Confus.",
|
|
es: "Ambos Pokémon Activos pasan a estar Confundidos.",
|
|
it: "Entrambi i Pokémon attivi vengono confusi.",
|
|
pt: "Ambos os Pokémon Ativos agora estão Confusos.",
|
|
de: "Beide Aktiven Pokémon sind jetzt verwirrt."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "D"
|
|
}
|
|
|
|
export default card
|