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: "pl3-117", localId: 117, // Card informations name: { en: "Nincada", fr: "Ningale", }, hp: 40, type: [ Type.GRASS, ], dexId: 290, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/117/low", fr: "https://assets.tcgdex.net/fr/pl/pl3/117/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/117/high", fr: "https://assets.tcgdex.net/fr/pl/pl3/117/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Tomokazu Komiya", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", fr: "Appel à la famille", }, text: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", fr: "Choisissez dans votre deck un Pokémon de base et placez-le sur votre Banc. Ensuite, mélangez votre deck.", }, },{ cost: [ Type.COLORLESS ], name: { en: "Dash Attack", fr: "Attaque brusque", }, text: { en: "Choose 1 of your opponent's Benched Pokémon. This attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 1 des Pokémon de Banc de votre adversaire. Cette attaque lui inflige 10 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.FIRE, value: "+10" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card