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-71", localId: 71, // Card informations name: { en: "Pikachu", }, hp: 60, type: [ Type.LIGHTNING, ], dexId: 25, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/71/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/71/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 24, name: "sui" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Pika Ball", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mega Shot", }, text: { en: "Discard all Lightning Energy attached to Pikachu and then choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }], 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