mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
44 lines
687 B
TypeScript
44 lines
687 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Trevenant"
|
|
},
|
|
|
|
illustrator: "Shin Nagasawa",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Grass"],
|
|
|
|
evolveFrom: {
|
|
en: "Phantump"
|
|
},
|
|
|
|
description: {
|
|
en: "People fear it due to a belief that it devours any who try to cut down trees in its forest, but to the Pokémon it shares its woods with, it's kind."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Claw Slash"
|
|
},
|
|
|
|
damage: 80,
|
|
cost: ["Grass", "Grass", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |