mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
59 lines
804 B
TypeScript
59 lines
804 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
dexId: [619],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mienfoo",
|
|
fr: "Kungfouine",
|
|
es: "Mienfoo",
|
|
it: "Mienfoo",
|
|
pt: "Mienfoo",
|
|
de: "Lin-Fu"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Low Kick",
|
|
fr: "Balayage",
|
|
es: "Patada Baja",
|
|
it: "Colpo Basso",
|
|
pt: "Rasteira",
|
|
de: "Fußkick"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Beatdown",
|
|
fr: "Dérouillée",
|
|
es: "Derrumbar",
|
|
it: "Batosta",
|
|
pt: "Abater",
|
|
de: "Niederprügler"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |