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: "swsh1-144", localId: 144, // Card informations name: { en: "Noctowl", fr: "Noarfang", }, hp: 110, type: [ Type.COLORLESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/144/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/144/low.png", } }, evolveFrom: { en: "Hoothoot", fr: "Hoothoot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 25, name: "kawayoo" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Wing Attack", fr: "Cru-Ailes", }, damage: 40 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Carry Off", fr: "Enlèvement", }, text: { en: "Choose 1 of your opponent's Benched Pokémon. They shuffle that Pokémon and all attached cards into their deck. Then, shuffle this Pokémon and all attached cards into your deck.", fr: "Choisissez l’un des Pokémon de Banc de votre adversaire. Il mélange avec son deck ce Pokémon-là et toutes les cartes attachées. Ensuite, mélangez dans votre deck ce Pokémon et toutes les cartes attachées.", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card