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: "bw6-95", localId: 95, // Card informations name: { en: "Zweilous", fr: "Diamat", }, hp: 80, type: [ Type.DRAGON, ], dexId: 634, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/95/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/95/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/95/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/95/high.png", }, }, evolveFrom: { en: "Deino", fr: "Solochi", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Crunch", fr: "Mâchouille", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.DARKNESS, Type.DARKNESS ], name: { en: "Dragon Claw", fr: "Dracogriffe", }, damage: 80 }], weaknesses: [{ type: Type.DRAGON, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card