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: "ex7-68", localId: 68, // Card informations name: { en: "Marill", }, hp: 50, type: [ Type.WATER, ], dexId: 183, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/68/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/68/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Minor Errand-Running", }, text: { en: "Search your deck for up to 2 basic Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card