mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
65
data/Sword & Shield/Fusion Strike/17.ts
Normal file
65
data/Sword & Shield/Fusion Strike/17.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user