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: "ex15-69", localId: 69, // Card informations name: { en: "Trapinch δ", }, hp: 40, type: [ Type.PSYCHIC, ], dexId: 328, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/69/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/69/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Quick Bind", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card