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: "xy10-123", localId: 123, // Card informations name: { en: "Altaria-EX", fr: "Altaria-EX", }, hp: 170, type: [ Type.COLORLESS, ], dexId: 334, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/123/low", fr: "https://assets.tcgdex.net/fr/xy/xy10/123/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/123/high", fr: "https://assets.tcgdex.net/fr/xy/xy10/123/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Powerful Gain", fr: "Gain Puissant", }, text: { en: "If this Pokémon was healed during this turn, this attack does 60 more damage and heal 30 damage from this Pokémon.", fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 60 dégâts supplémentaires et vous soignez 30 dégâts à ce Pokémon.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Shining Wind", fr: "Vent Étincelant", }, text: { en: "During your opponent's next turn, this Pokémon has no Weakness.", fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.", }, damage: 80 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card