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: "ex11-9", localId: 9, // Card informations name: { en: "Latios δ", }, hp: 80, type: [ Type.LIGHTNING, Type.METAL, ], dexId: 381, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/9/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/9/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ryo Ueda", abilities: [{ id: 830, type: AbilityType.POKEBODY, name: { en: "Delta Aura", }, text: { en: "If you have Latias or Latias ex in play, the attack cost of Latios's Psychic Force is now Lightning Metal Colorless.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragon Claw", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.METAL, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Psychic Force", }, text: { en: "If your opponent has no Stage 2 Evolved Pokémon in play, this attack does nothing.", }, damage: 80 }], weaknesses: [{ type: Type.COLORLESS, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" },{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card