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: "base3-45", localId: 45, // Card informations name: { en: "Weezing", }, hp: 60, type: [ Type.GRASS, ], dexId: 110, image: { low: { en: "https://assets.tcgdex.net/en/base/base3/45/low.png", }, high: { en: "https://assets.tcgdex.net/en/base/base3/45/high.png", }, }, evolveFrom: { en: "Koffing", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.GRASS, Type.GRASS ], name: { en: "Smog", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Selfdestruct", }, text: { en: "Does 10 damage to each Pokémon on each player's Bench. (Don't apply Weakness and Resistance for Benched Pokémon.) Weezing does 60 damage to itself.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Fossil", code: "base3" } } export default card