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-117", localId: 117, // Card informations name: { en: "Zubat", }, hp: 40, type: [ Type.GRASS, ], dexId: 41, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/117/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/117/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 55, name: "Hisao Nakamura" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Sound Waves", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, },{ cost: [ Type.GRASS ], name: { en: "Flitter", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. Don't apply Weakness and Resistance. (Any other effects that would happen after applying Weakness and Resistance still happen.)", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card