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: "pop9-8", localId: 8, // Card informations name: { en: "Gabite", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 444, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop9/8/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop9/8/high.png", }, }, evolveFrom: { en: "Gible", }, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Burrow", }, text: { en: "Flip a coin. If heads, prevent all damage done to Gabite by attacks during your opponent's next turn.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Distorted Wave", }, text: { en: "Before doing damage, remove 2 damage counters from the Defending Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "POP Series 9", code: "pop9" } } export default card