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: "ex16-25", localId: 25, // Card informations name: { en: "Zangoose", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 335, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/25/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/25/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 133, type: AbilityType.POKEBODY, name: { en: "Thick Skin", }, text: { en: "Zangoose can't be affected by any Special Conditions.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Sharp Claws", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card