1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

66 lines
1020 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [709],
set: Set,
name: {
en: "Trevenant",
fr: "Desséliande",
es: "Trevenant",
it: "Trevenant",
pt: "Trevenant",
de: "Trombork"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Grass"],
evolveFrom: {
en: "Phantump",
fr: "Brocélôme",
es: "Phantump",
it: "Phantump",
pt: "Phantump",
de: "Paragoni"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Narumi Sato",
description: {
en: "Small roots that extend from the tips of this Pokémon's feet can tie into the trees of the forest and give Trevenant control over them."
},
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Gentle Slap"
},
damage: 40
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
en: "Wood Hammer"
},
damage: 90
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card