import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex9-22", localId: 22, // Card informations name: { en: "Breloom", }, hp: 80, type: [ Type.GRASS, ], dexId: 286, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/22/high.png", }, }, evolveFrom: { en: "Shroomish", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Power Blow", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage for each Energy attached to Breloom.", }, damage: 10 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Body Slam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card