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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/120/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/120/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/120/high.png", }, }, evolveFrom: { en: "Hoothoot", fr: "Hoothoot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "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