import { Card } from '../../../interfaces' import Set from '../Sword & Shield' const card: Card = { name: { en: "Sitrus Berry", fr: "Baie Sitrus", }, illustrator: "Yoshinobu Saito", rarity: "Uncommon", category: "Trainer", set: Set, effect: { en: "At the end of each turn, if the Pokémon this card is attached to has 3 or more damage counters on it, heal 30 damage from it and discard this card.", }, trainerType: "Tool", } export default card