mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
45 lines
636 B
TypeScript
45 lines
636 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bibarel"
|
|
},
|
|
|
|
illustrator: "kirisAki",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Bidoof"
|
|
},
|
|
|
|
description: {
|
|
en: "It busily makes its nest with stacks of branches and roots it has cut up with its sharp incisors."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Rolling Tackle"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card
|