mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
31 lines
920 B
TypeScript
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 |