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-44", localId: 44, // Card informations name: { en: "Vanillish", fr: "Sorboul", }, hp: 70, type: [ Type.WATER, ], dexId: 583, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/44/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/44/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/44/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/44/high.png", }, }, evolveFrom: { en: "Vanillite", fr: "Sorbébé", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Ice Edge", fr: "Lame de Givre", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 10 },{ cost: [ Type.WATER, Type.WATER ], name: { en: "Icy Wind", fr: "Vent Glace", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card