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: "ex11-10", localId: 10, // Card informations name: { en: "Marowak δ", }, hp: 80, type: [ Type.FIGHTING, Type.METAL, ], dexId: 105, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/10/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/10/high.png", }, }, evolveFrom: { en: "Cubone", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, attacks: [{ cost: [ Type.FIGHTING, Type.METAL ], name: { en: "Energy Bone", }, text: { en: "Choose a number of your opponent's Pokémon up to the amount of Energy attached to Marowak. This attack does 20 damage to each of them.", }, },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Metal Crusher", }, text: { en: "If the Defending Pokémon is Metal Pokémon, this attack's base damage is 90.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card