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: "ex5-100", localId: 100, // Card informations name: { en: "Vileplume ex", }, hp: 140, type: [ Type.GRASS, ], dexId: 45, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/100/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/100/high.png", }, }, evolveFrom: { en: "Gloom", }, tags: [ Tag.EX, ], illustrator: { id: 1, name: "Ryo Ueda" }, abilities: [{ id: 1036, type: AbilityType.POKEBODY, name: { en: "Block Dust", }, text: { en: "As long as Vileplume ex is your Active Pokémon, your opponent can't play any Trainer cards (except for Supporter cards) from his or her hand.", } }], attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Special Formula", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep and Poisoned. If tails, the Defending Pokémon is now Confused.", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card