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: "ex4-76", localId: 76, // Card informations name: { en: "Team Aqua Belt", }, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/76/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/76/high.png", }, }, evolveFrom: {}, tags: [ Tag.TOOL, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card