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: "np-25", localId: 25, // Card informations name: { en: "Flygon", }, hp: 120, type: [ Type.COLORLESS, ], dexId: 330, image: { low: { en: "https://assets.tcgdex.net/en/pop/np/25/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/np/25/high.png", }, }, evolveFrom: { en: "Vibrava", }, tags: [ Tag.STAGE2, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Sand Pit", }, text: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 20 },{ cost: [ Type.GRASS, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragonbreath", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, this attack does nothing.", }, damage: 80 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Nintendo Black Star Promos", code: "np" } } export default card