1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +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
951 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.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Lost Blender",
fr: "Mixeur Perdu",
es: "Batidora Perdida",
it: "Mixer Perduto",
pt: "Liquidificador Perdido",
de: "Nirgendwo-Mixer"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Placez 2 cartes de votre main dans la Zone Perdue. Dans ce cas, piochez une carte.",
en: "Put 2 cards from your hand in the Lost Zone. If you do, draw a card.",
es: "Pon 2 cartas de tu mano en la Zona Perdida. Si lo haces, roba 1 carta.",
it: "Prendi due delle carte che hai in mano e mettile nellarea perduta. Se lo fai, pesca una carta.",
pt: "Coloque 2 cartas da sua mão na Zona Perdida. Se fizer isto, compre 1 carta.",
de: "Lege 2 Karten aus deiner Hand ins Nirgendwo. Wenn du das machst, ziehe 1 Karte."
},
trainerType: "Item",
}
export default card