1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 12:19:53 +00:00

40 lines
631 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Timburr"
},
illustrator: "Mizue",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
en: "It loves helping out with construction projects. It loves it so much that if rain causes work to halt, it swings its log around and throws a tantrum."
},
stage: "Basic",
attacks: [{
name: {
en: "Corkscrew Punch"
},
damage: 20,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1
}
export default card