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: "ex4-23", localId: 23, // Card informations name: { en: "Team Magma's Zangoose", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 335, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex4/23/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex4/23/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 156, name: "Zu-Ka" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for a Colorless Basic Pokémon or Basic Pokémon with Team Magma in its name and put it onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Team Play", }, text: { en: "Does 10 damage times the number of Pokémon in play with Team Magma in its name.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Team Magma vs Team Aqua", code: "ex4" } } export default card