1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

40 lines
581 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Makuhita"
},
illustrator: "Mina Nakai",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
en: "It grows stronger by enduring harsh training. It is a gutsy Pokémon that can withstand any attack."
},
stage: "Basic",
attacks: [{
name: {
en: "Slap Push"
},
damage: 20,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 2
}
export default card