mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-16 21:49:53 +00:00
33 lines
475 B
TypeScript
33 lines
475 B
TypeScript
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
|