mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
41 lines
918 B
TypeScript
41 lines
918 B
TypeScript
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: "Uncommon",
|
|
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 opponent's 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",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card
|