mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
44
data/Pokémon TCG Pocket/Space-Time Smackdown/136.ts
Normal file
44
data/Pokémon TCG Pocket/Space-Time Smackdown/136.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
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<br />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
|
Reference in New Issue
Block a user