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: "ex7-104", localId: 104, // Card informations name: { en: "Rocket's Snorlax ex", }, hp: 100, type: [ Type.DARKNESS, ], dexId: 143, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/104/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/104/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, abilities: [{ id: 316, type: AbilityType.POKEBODY, name: { en: "Dark Healer", }, text: { en: "As long as Rocket's Snorlax ex has any Darkness Energy attached to it, remove 1 damage counter from Rocket's Snorlax ex between turns.\"", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Claws", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Collapse", }, text: { en: "Rocket's Snorlax ex is now Asleep.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card