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: "ex12-83", localId: 83, // Card informations name: { en: "Arcanine ex", }, hp: 120, type: [ Type.FIRE, ], dexId: 59, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex12/83/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex12/83/high", }, }, evolveFrom: { en: "Growlithe", }, tags: [ Tag.EX, ], illustrator: "Hikaru Koike", abilities: [{ id: 258, type: AbilityType.POKEBODY, name: { en: "Fire Remedy", }, text: { en: "Whenever you attach a Fire Energy from your hand to Arcanine ex, remove 1 damage counter and all Special Conditions from Arcanine ex.", } }], attacks: [{ name: { en: "[Pokémon-ex rule]", }, text: { en: "When Pokémon-ex has been Knocked Out, your opponent takes 2 Prize cards.", }, },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Overrun", }, text: { en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Legend Maker", code: "ex12" } } export default card