import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Roselia", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 315, ], hp: 60, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Reactive Aroma", }, effect: { en: "As long as Roselia has any React Energy cards attached to it, remove 1 damage counter from each of your Pokémon (excluding Pokémon-ex) that has any React Energy cards attached to it between turns. You can't use more than 1 Reactive Aroma Poké-Body each turn.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Flick Poison", }, effect: { en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. The new Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card