1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-14 21:59:51 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/041.ts

44 lines
637 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Mienshao"
},
illustrator: "Shibuzoh.",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
evolveFrom: {
en: "Mienfoo"
},
description: {
en: "When Mienshao comes across a truly challenging\nopponent, it will lighten itself by biting off the\nfur on its arms."
},
stage: "Stage1",
attacks: [{
name: {
en: "Low Kick"
},
damage: 70,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 1
}
export default card