1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

35 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Mallow",
fr: "Barbara",
es: "Lulú",
it: "Ibis",
de: "Maho",
'pt-br': "Lulú",
ko: "마오"
},
illustrator: "En Morikura",
rarity: "Two Star",
category: "Trainer",
effect: {
en: "Heal all damage from 1 of your Shiinotic or Tsareena. If you do, discard all Energy from that Pokémon.",
fr: "Soignez tous les dégâts d'un de vos Lampignon ou Sucreine. Dans ce cas, défaussez toute l'Énergie de ce Pokémon.",
es: "Cura todos los puntos de daño a 1 de tus Shiinotic o tus Tsareena. Si lo haces, descarta todas las Energías de ese Pokémon.",
it: "Cura uno dei tuoi Shiinotic o Tsareena da tutti i danni. Se lo fai, scarta tutte le Energie assegnate a quel Pokémon.",
de: "Heile allen Schaden bei 1 deiner Lamellux oder Fruyal. Wenn du das machst, lege alle Energien von jenem Pokémon auf deinen Ablagestapel.",
'pt-br': "Cure todo o dano de 1 dos seus Shiinotic ou Tsareena. Se fizer isto, descarte todas as Energias daquele Pokémon.",
ko: "자신의 「마셰이드」 또는 「달코퀸」 1마리의 HP를 모두 회복. 그 뒤, 그 포켓몬에서 에너지를 모두 트래쉬한다."
},
trainerType: "Supporter",
boosters: ["solgaleo"]
}
export default card