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: "pop6-7", localId: 7, // Card informations name: { en: "Gible", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 443, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop6/7/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop6/7/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Surprise Attack", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "POP Series 6", code: "pop6" } } export default card