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: "sm11-245", localId: 245, // Card informations name: { en: "Mega Sableye & Tyranitar-GX", }, hp: 280, type: [ Type.DARKNESS, ], dexId: 248, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/245/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/245/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], attacks: [{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Greedy Crush", }, text: { en: "If your opponent's Pokémon-GX or Pokémon-EX is Knocked Out by damage from this attack, take 1 more Prize card.", }, damage: 210 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Gigafall GX", }, text: { en: "If this Pokémon has at least 5 extra Energy attached to it (in addition to this attack's cost), discard the top 15 cards of your opponent's deck. (You can't use more than 1 GX attack in a game.)", }, damage: 250 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card