1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +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
863 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 '../Unified Minds'
const card: Card = {
name: {
en: "Bug Catcher",
fr: "Scout",
es: "Cazabichos",
it: "Pigliamosche",
pt: "Caça-inseto",
de: "Käfersammler"
},
illustrator: "kirisAki",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez 2 cartes. Lancez une pièce. Si cest face, piochez 2 cartes supplémentaires.",
en: "Draw 2 cards. Flip a coin. If heads, draw 2 more cards.",
es: "Roba 2 cartas. Lanza 1 moneda. Si sale cara, roba 2 cartas más.",
it: "Pesca due carte. Lancia una moneta. Se esce testa, pesca altre due carte.",
pt: "Compre 2 cartas. Jogue 1 moeda. Se sair cara, compre 2 cartas a mais.",
de: "Ziehe 2 Karten. Wirf 1 Münze. Ziehe bei Kopf 2 Karten mehr."
},
trainerType: "Supporter",
}
export default card