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: "pl4-74", localId: 74, // Card informations name: { en: "Shinx", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 403, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/74/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/74/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 24, name: "sui" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Gnaw", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Swagger", }, text: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card