import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw7-66", localId: 66, // Card informations name: { en: "Toxicroak", fr: "Coatox", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 454, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/66/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/66/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/66/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/66/high", }, }, evolveFrom: { en: "Croagunk", fr: "Cradopaud", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Revenge", fr: "Vendetta", }, text: { en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 70 more damage.", fr: "Si l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 70 dégâts supplémentaires.", }, damage: 20 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Jab", fr: "Direct Toxik", }, text: { en: "The Defending Pokémon is now Poisoned.", fr: "Le Pokémon Défenseur est maintenant Empoisonné.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card