1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
692 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Looker",
fr: "Beladonis",
es: "Handsome",
it: "Bellocchio",
pt: "Looker",
de: "LeBelle"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez 3 cartes du dessous de votre deck.",
en: "Draw 3 cards from the bottom of your deck.",
es: "Roba 3 cartas de la parte inferior de tu baraja.",
it: "Pesca tre carte in fondo al tuo mazzo.",
pt: "Compre as 3 últimas cartas do seu baralho.",
de: "Ziehe 3 Karten von unten aus deinem Deck."
},
trainerType: "Supporter",
}
export default card