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: "neo1-46", localId: 46, // Card informations name: { en: "Quilava", }, hp: 60, type: [ Type.FIRE, ], dexId: 156, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/46/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/46/high.png", }, }, evolveFrom: { en: "Cyndaquil", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Ember", }, text: { en: "Discard 1 Energy card attached to Quilava in order to use this attack.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE ], name: { en: "Fire Wind", }, text: { en: "If your opponent has any Benched Pokémon, choose 1 of them. Flip 2 coins. For each heads, this attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance.)", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card