1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
1008 B
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 '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Echoing Horn",
fr: "Corne Résonnante",
es: "Cuerno Resonante",
it: "Corno Echeggiante",
pt: "Berrante Retumbante",
de: "Echohorn"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Put a Basic Pokémon from your opponents discard pile onto their Bench.",
fr: "Placez un Pokémon de base de la pile de défausse de votre adversaire sur son Banc.",
es: "Pon 1 Pokémon Básico de la pila de descartes de tu rival en su Banca.",
it: "Prendi un Pokémon Base dalla pila degli scarti del tuo avversario e mettilo nella sua panchina.",
pt: "Coloque 1 Pokémon Básico da pilha de descarte do seu oponente no Banco dele(a).",
de: "Lege 1 Basis-Pokémon aus dem Ablagestapel deines Gegners auf seine Bank."
},
trainerType: "Item",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card