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: "xy11-61", localId: 61, // Card informations name: { en: "Weavile", fr: "Dimoret", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 461, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy11/61/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy11/61/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy11/61/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy11/61/high.png", }, }, evolveFrom: { en: "Sneasel", fr: "Farfuret", }, tags: [ Tag.STAGE1, ], illustrator: { id: 27, name: "kawayoo" }, abilities: [{ id: 1354, type: AbilityType.TALENT, name: { en: "Tear Away", fr: "Arrachement", }, text: { en: "As often as you like during your turn (before your attack), you may put a Pokémon Tool card attached to 1 of your Pokémon into your hand.", fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez placer une carte Outil Pokémon attachée à l’un de vos Pokémon dans votre main.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Steam Siege", code: "xy11" } } export default card