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: "ecard3-111", localId: 111, // Card informations name: { en: "Venomoth", }, hp: 70, type: [ Type.GRASS, ], dexId: 49, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/111/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/111/high.png", }, }, evolveFrom: { en: "Venonat", }, tags: [ Tag.STAGE1, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Healing Dust", }, text: { en: "Flip 2 coins. For each heads, remove 1 damage counter from each of your Pokémon. If a Pokémon has fewer damage counters than the number of heads, remove all of them.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Miracle Powder", }, text: { en: "Flip a coin. If heads, choose a Special Condition (Asleep, Burned, Confused, Paralyzed, or Poisoned). The Defending Pokémon is now affected by that Special Condition.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card