1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

46 lines
614 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Lechonk",
fr: "Gourmelet",
es: "Lechonk",
it: "Lechonk",
pt: "Lechonk",
de: "Ferkuli"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Rear Kick",
fr: "Ruade",
es: "Patada Trasera",
it: "Retrocalcio",
pt: "Chute Traseiro",
de: "Rückwärtskick"
},
damage: 30
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card