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: "ex8-77", localId: 77, // Card informations name: { en: "Staryu", }, hp: 50, type: [ Type.WATER, ], dexId: 120, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/77/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/77/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Rapid Spin", }, text: { en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any. You switch Staryu with 1 of your Benched Pokémon, if any.", }, damage: 10 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card