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: "xy8-120", localId: 120, // Card informations name: { en: "Noctowl", fr: "Noarfang", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 164, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/120/low", fr: "https://assets.tcgdex.net/fr/xy/xy8/120/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/120/high", fr: "https://assets.tcgdex.net/fr/xy/xy8/120/high", }, }, evolveFrom: { en: "Hoothoot", fr: "Hoothoot", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "High Flight", fr: "Haute Voltige", }, text: { en: "Each player reveals his or her hand. This attack does 20 damage times the number of Item cards revealed.", fr: "Chaque joueur montre sa main. Cette attaque inflige 20 dégâts multipliés par le nombre de cartes Objet montrées.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Speed Dive", fr: "Plongée Rapide", }, damage: 70 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card