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: "swsh1-124", localId: 124, // Card informations name: { en: "Toxicroak", fr: "Coatox", }, hp: 110, type: [ Type.DARKNESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/124/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/124/low.png", } }, evolveFrom: { en: "Croagunk", fr: "Cradopaud", }, tags: [ Tag.STAGE1, ], illustrator: { id: 46, name: "Ryuta Fuse" }, abilities: [{ id: -1, type: AbilityType.TALENT, name: { en: "More Poison", fr: "Poison Sans Fin", }, text: { en: "Put 2 more damage counters on your opponent’s Poisoned Pokémon during Pokémon Checkup.", fr: "Pendant le Contrôle Pokémon, placez 2 marqueurs de dégâts supplémentaires sur les Pokémon Empoisonnés de votre adversaire.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Claws", fr: "Griffes Empoisonnées", }, text: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Poisoned.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card