mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
675 B
TypeScript
48 lines
675 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [412],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Burmy",
|
|
fr: "Cheniti",
|
|
es: "Burmy",
|
|
it: "Burmy",
|
|
pt: "Burmy",
|
|
de: "Burmy"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Hang Down",
|
|
fr: "Suspension",
|
|
es: "Prender",
|
|
it: "Tirar Giù",
|
|
pt: "Dependurar",
|
|
de: "Herunterhängen"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |