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: "pop7-16", localId: 16, // Card informations name: { en: "Sentret", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 161, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop7/16/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop7/16/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Grope", }, text: { en: "Look at the top 2 cards of your deck, choose 1 of them, and put it into your hand. Put the other card on the bottom of your deck.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Scratch", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "POP Series 7", code: "pop7" } } export default card