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: "pl2-43", localId: 43, // Card informations name: { en: "Infernape 4", fr: "Simiabraz Niv. 55", }, hp: 90, type: [ Type.FIRE, ], dexId: 392, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl2/43/low", fr: "https://assets.tcgdex.net/fr/pl/pl2/43/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl2/43/high", fr: "https://assets.tcgdex.net/fr/pl/pl2/43/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Split Bomb", fr: "Bombe fendante", }, text: { en: "Choose 2 of your opponent's Pokémon. This attack does 20 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 2 des Pokémon de votre adversaire. Cette attaque leur inflige 20 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).", }, },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "High Jump Kick", fr: "Pied voltige", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Rising Rivals", code: "pl2" } } export default card