mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
50 lines
731 B
TypeScript
50 lines
731 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../BW trainer Kit (Excadrill).ts'
|
|
|
|
const card: Card = {
|
|
dexId: [532],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Timburr",
|
|
fr: "Charpenti",
|
|
es: "Timburr",
|
|
it: "Timburr",
|
|
pt: "Timburr",
|
|
de: "Praktibalk"
|
|
},
|
|
|
|
illustrator: "match",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: [
|
|
"Fighting",
|
|
"Fighting"
|
|
],
|
|
name: {
|
|
en: "Pound"
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "2x"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
en: "It fights by swinging a piece of lumber around. It is close to evolving when it can handle the lumber without difficulty."
|
|
},
|
|
|
|
retreat: 1,
|
|
}
|
|
|
|
export default card
|