import { Card } from '../../../interfaces' import Set from '../BREAKpoint' const card: Card = { name: { en: "Petilil", fr: "Chlorobule", }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 548, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Aromatherapy", fr: "Aromathérapie", }, effect: { en: "Heal 10 damage from each of your Pokémon.", fr: "Soignez 10 dégâts à chacun de vos Pokémon.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card