1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
931 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 '../Fates Collide'
const card: Card = {
name: {
en: "Lasss Special",
fr: "Spécialité de Fillette",
es: "Especialidad de la Chica",
it: "Omaggio della Pupa",
pt: "Especialidade da Garota",
de: "Görentalent"
},
illustrator: "Yusuke Ohmura",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez une carte pour chaque Pokémon de base du Banc de votre adversaire.",
en: "Draw a card for each of your opponents Benched Basic Pokémon.",
es: "Roba 1 carta por cada uno de los Pokémon Básicos en Banca de tu rival.",
it: "Pesca una carta per ogni Pokémon Base nella panchina del tuo avversario.",
pt: "Compre um card para cada Pokémon Básico no Banco do seu oponente.",
de: "Ziehe 1 Karte für jedes Basis-Pokémon auf der Bank deines Gegners."
},
trainerType: "Supporter",
}
export default card