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: "ex10-103", localId: 103, // Card informations name: { en: "Feraligatr ex", }, hp: 150, type: [ Type.WATER, ], dexId: 160, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/103/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/103/high", }, }, evolveFrom: { en: "Croconaw", }, tags: [ Tag.EX, ], illustrator: "Hikaru Koike", abilities: [{ id: 1124, type: AbilityType.POKEBODY, name: { en: "Overpowering Fang", }, text: { en: "As long as Feraligatr ex is your Active Pokémon, each player's Pokémon (excluding Pokémon-ex) can't use any Poké-Powers or Poké-Bodies.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Tsunami", }, text: { en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sore Spot", }, text: { en: "Does 70 damage plus 10 more damage for each damage counter on the Defending Pokémon.", }, damage: 70 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card