1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 13:09:54 +00:00

41 lines
572 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Shroomish",
fr: "Balignon",
es: "Shroomish",
it: "Shroomish",
pt: "Shroomish",
de: "Knilz"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
en: "Headbutt",
fr: "Coup d'Boule",
es: "Golpe Cabeza",
it: "Bottintesta",
pt: "Cabeçada",
de: "Kopfnuss"
},
damage: 20
}],
retreat: 1,
regulationMark: "F"
}
export default card