1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00

22 lines
456 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Lum Berry"
},
illustrator: "Yoshinobu Saito",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "At the end of each turn, if the Pokémon this card is attached to is affected by any Special Conditions, it recovers from all of them, and discard this card."
},
trainerType: "Tool"
}
export default card