1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 07:09:54 +00:00

44 lines
704 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Trevenant"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
evolveFrom: {
en: "Phantump"
},
description: {
en: "People fear it due to a belief that it devours any\nwho try to cut down trees in its forest, but to the\nPokémon it shares its woods with, it's kind."
},
stage: "Stage1",
attacks: [{
name: {
en: "Wrack Down"
},
damage: 70,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2
}
export default card