mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
46 lines
634 B
TypeScript
46 lines
634 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [506],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Ponchiot",
|
|
en: "Lillipup",
|
|
es: "Lillipup",
|
|
it: "Lillipup",
|
|
pt: "Lillipup",
|
|
de: "Yorkleff"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
fr: "Ruade",
|
|
en: "Rear Kick",
|
|
es: "Patada Trasera",
|
|
it: "Retrocalcio",
|
|
pt: "Chute Traseiro",
|
|
de: "Rückwärtskick"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |