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: "hgssp-HGSS08", localId: "HGSS08", // Card informations name: { en: "Meganium", }, hp: 150, type: [ Type.GRASS, ], dexId: 154, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS08/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS08/high.png", }, }, evolveFrom: { en: "Bayleef", }, tags: [ Tag.STAGE2, ], illustrator: { id: 63, name: "Noriko Hotta" }, abilities: [{ id: 1073, type: AbilityType.POKEPOWER, name: { en: "Leaf Trans", }, text: { en: "As often as you like during your turn (before your attack), you may move a Grass Energy card attached to 1 of your Pokémon to another of your Pokémon. This power can't be used if Meganium is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Solarbeam", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HGSS Black Star Promos", code: "hgssp" } } export default card