mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)
Co-authored-by: Avior <github@avior.me>
This commit is contained in:
49
data/Trainer kits/BW trainer Kit (Excadrill)/11.ts
Normal file
49
data/Trainer kits/BW trainer Kit (Excadrill)/11.ts
Normal file
@ -0,0 +1,49 @@
|
||||
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
|
Reference in New Issue
Block a user