import { Card } from '../../../interfaces' import Set from '../XY Black Star Promos' const card: Card = { name: { en: "Trevenant", }, illustrator: "Midori Harada", rarity: "None", category: "Pokemon", set: Set, dexId: [ 709, ], hp: 110, types: [ "Psychic", ], evolveFrom: { en: "Phantump", }, stage: "Stage1", abilities: [ { type: "Ability", name: { en: "Nervous Seed", }, effect: { en: "As long as this Pokémon is your Active Pokémon, your opponent’s Basic Pokémon’s attacks cost Colorless more.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 3 } export default card