import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Indeedee", }, illustrator: "Mizue", rarity: "Uncommon", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Replenish Time", }, effect: { en: "Heal 30 damage from each of your Pokémon.", }, }, { cost: [ "Psychic", "Colorless", ], name: { en: "Psybeam", }, effect: { en: "Your opponent’s Active Pokémon is now Confused.", }, damage: 30, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, } export default card