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: "ex13-34", localId: 34, // Card informations name: { en: "Zangoose", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 335, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/34/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/34/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Scratch", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Cutter", }, text: { en: "Flip 3 coins. If 1 of them is heads, this attack does 10 damage plus 10 more damage. If 2 of them are heads, this attack does 10 damage plus 20 more damage. If all of them are heads, this attack does 10 damage plus 40 more damage.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card