1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00

feat: Add Stellar Crown (#533)

This commit is contained in:
2024-10-09 23:30:26 +02:00
committed by GitHub
parent bbd5d28dc6
commit 4f2c27937a
176 changed files with 9614 additions and 0 deletions

View File

@ -0,0 +1,41 @@
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"
}
export default card