1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 04:59:55 +00:00

41 lines
573 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
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"
}
export default card