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: "ex6-67", localId: 67, // Card informations name: { en: "Magikarp", }, hp: 30, type: [ Type.WATER, ], dexId: 129, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/67/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Surprise Attack", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 10 },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Ascension", }, text: { en: "Search your deck for a card that evolves from Magikarp and put it on Magikarp. (This counts as evolving Magikarp.) Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card