mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-16 06:39:50 +00:00
feat: add Eevee Grove (#782)
This commit is contained in:
44
data/Pokémon TCG Pocket/Eevee Grove/040.ts
Normal file
44
data/Pokémon TCG Pocket/Eevee Grove/040.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Eevee Grove"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mienfoo"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "In one minute, a well-trained Mienfoo can chop\nwith its arms more than 100 times."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Kick Shot"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user