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-85", localId: 85, // Card informations name: { en: "Zweilous", fr: "Diamat", }, hp: 90, type: [ Type.DRAGON, ], dexId: 634, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy11/85/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy11/85/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy11/85/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy11/85/high.png", }, }, evolveFrom: { en: "Deino", fr: "Solochi", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Double Hit", fr: "Coup Double", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.DARKNESS, Type.COLORLESS ], name: { en: "Power Breath", fr: "Souffle Puissant", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Steam Siege", code: "xy11" } } export default card