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: "ex16-40", localId: 40, // Card informations name: { en: "Vibrava", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 329, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/40/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/40/high.png", }, }, evolveFrom: { en: "Trapinch", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Ram", }, damage: 20 },{ cost: [ Type.GRASS, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Dragonbreath", }, text: { en: "Flip a coin. If tails, this attack does nothing. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 60 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card