1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
833 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: {
fr: "Apia",
en: "Honey",
es: "Tania",
it: "Tania",
pt: "Mel",
de: "Enia"
},
illustrator: "Ryuta Fuse",
rarity: "Ultra Rare",
category: "Trainer",
effect: {
fr: "Piochez une carte pour chacun des Pokémon-V de Banc de votre adversaire.",
en: "Draw a card for each of your opponents Benched Pokémon V.",
es: "Roba 1 carta por cada uno de los Pokémon V en Banca de tu rival.",
it: "Pesca una carta per ciascuno dei Pokémon-V nella panchina del tuo avversario.",
pt: "Compre 1 carta para cada Pokémon V no Banco do seu oponente.",
de: "Ziehe 1 Karte für jedes Pokémon-V auf der Bank deines Gegners."
},
trainerType: "Supporter",
regulationMark: "E"
}
export default card