1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

31 lines
920 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../SM trainer Kit (Lycanroc)'
const card: Card = {
set: Set,
name: {
en: "Big Malasada",
fr: "Malasada Maxi",
es: "Malasada Maxi",
it: "Malasada maxi",
pt: "Sonho Recheado Grande",
de: "Maxi-Malasada"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Heal 20 damage and remove a Special Condition from your Active Pokémon.",
fr: "Soignez 20 dégâts et retirez un État Spécial de votre Pokémon Actif.",
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