mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
59 lines
804 B
TypeScript
59 lines
804 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldea Evolved"
|
|
|
|
const card: Card = {
|
|
dexId: [56],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Férosinge",
|
|
en: "Mankey",
|
|
es: "Mankey",
|
|
it: "Mankey",
|
|
pt: "Mankey",
|
|
de: "Menki"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
fr: "Balayage",
|
|
en: "Low Kick",
|
|
es: "Patada Baja",
|
|
it: "Colpo Basso",
|
|
pt: "Rasteira",
|
|
de: "Fußkick"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Suspension",
|
|
en: "Hang Down",
|
|
es: "Prender",
|
|
it: "Tirar Giù",
|
|
pt: "Dependurar",
|
|
de: "Herunterhängen"
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |