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: "sm12-65", localId: 65, // Card informations name: { en: "Araquanid", fr: "Tarenbulle", }, hp: 100, type: [ Type.WATER, ], dexId: 752, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/65/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/65/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/65/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/65/high.png", }, }, evolveFrom: { en: "Dewpider", fr: "Araqua", }, tags: [ Tag.STAGE1, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Headstrike", fr: "Coup de Tête", }, damage: 40 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Liquidation", fr: "Aqua-Brèche", }, text: { en: "During your next turn, the Defending Pokémon takes 60 more damage from attacks (after applying Weakness and Resistance).", fr: "Pendant votre prochain tour, le Pokémon Défenseur subit 60 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card