1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

54 lines
758 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
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"
}
export default card