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: "dp3-115", localId: 115, // Card informations name: { en: "Trapinch", fr: "Kraknoix", }, hp: 50, type: [ Type.FIGHTING, ], dexId: 328, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp3/115/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/115/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp3/115/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp3/115/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Inviting Trap", fr: "Piège tentant", }, text: { en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.", fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.", }, },{ cost: [ Type.FIGHTING ], name: { en: "Sand Tomb", fr: "Tombe de sable", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.", }, damage: 10 }], weaknesses: [{ type: Type.WATER, value: "+10" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Secret Wonders", code: "dp3" } } export default card