1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 18:59:53 +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
947 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Sun & Moon'
const card: Card = {
name: {
en: "Big Malasada",
fr: "Malasada Maxi",
es: "Malasada Maxi",
it: "Malasada maxi",
pt: "Sonho Recheado Grande",
de: "Maxi-Malasada"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 20 dégâts et retirez un État Spécial de votre Pokémon Actif.",
en: "Heal 20 damage and remove a Special Condition from your Active Pokémon.",
es: "Cura 20 puntos de daño y elimina 1 Condición Especial de tu Pokémon Activo.",
it: "Cura il tuo Pokémon attivo da 20 danni e rimuovi una condizione speciale che lo influenza.",
pt: "Cure 20 pontos de dano e remova 1 Condição Especial do seu Pokémon Ativo.",
de: "Heile 20 Schadenspunkte und entferne 1 Speziellen Zustand von deinem Aktiven Pokémon."
},
trainerType: "Item",
}
export default card