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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/9/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 1, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card