1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 03:19:55 +00:00

43 lines
602 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Journey Together"
const card: Card = {
set: Set,
name: {
en: "Minccino",
fr: "Chinchidou",
es: "Minccino",
de: "Picochilla",
it: "Minccino",
pt: "Minccino",
'es-mx': "Minccino"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Slap",
fr: "Gifle",
es: "Bofetón",
de: "Hieb",
it: "Sberla",
pt: "Tapa",
'es-mx': "Bofetón"
},
damage: 20
}],
retreat: 1,
regulationMark: "H"
}
export default card