import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex8-105", localId: 105, // Card informations name: { en: "Latias Star", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 380, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/105/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/105/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Miraculous Light", }, text: { en: "Remove 1 damage counter from each of your Pokémon (including Latias Star).", }, damage: 10 },{ cost: [ Type.WATER, Type.PSYCHIC, Type.FIRE ], name: { en: "Shooting Star", }, text: { en: "If the Defending Pokémon is Pokémon-ex, discard all Energy cards attached to Latias Star and this attack does 50 damage plus 100 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card