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: "base5-47", localId: 47, // Card informations name: { en: "Magikarp", }, hp: 30, type: [ Type.WATER, ], dexId: 129, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/47/low", }, high: { en: "https://assets.tcgdex.net/en/base/base5/47/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Flop", }, damage: 10 },{ cost: [ Type.WATER, Type.WATER, Type.WATER ], name: { en: "Rapid Evolution", }, text: { en: "Search your deck for an Evolution card named Gyarados or Dark Gyarados and put it on Magikarp. (This counts as evolving Magikarp.) Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card