mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
61 lines
856 B
TypeScript
61 lines
856 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
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: "Chop",
|
|
fr: "Coup Tranchant",
|
|
es: "Cortar",
|
|
it: "Ceffone",
|
|
pt: "Trincar",
|
|
de: "Hacker"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Spiral Kick",
|
|
fr: "Coup'd Pied en Spirale",
|
|
es: "Patada Espiral",
|
|
it: "Spiralcalcio",
|
|
pt: "Chute Espiral",
|
|
de: "Drehtritt"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |