mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
45 lines
640 B
TypeScript
45 lines
640 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bramblin",
|
|
fr: "Virovent",
|
|
es: "Bramblin",
|
|
it: "Bramblin",
|
|
pt: "Bramblin",
|
|
de: "Weherba"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Spike Sting",
|
|
fr: "Pic Piquant",
|
|
es: "Picotazo Púas",
|
|
it: "Aculeopuntura",
|
|
pt: "Ferroada de Espinhos",
|
|
de: "Stachelstich"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |