mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 10:17:50 +00:00
56 lines
780 B
TypeScript
56 lines
780 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldean Fates"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pawmi",
|
|
fr: "Pohm",
|
|
es: "Pawmi",
|
|
it: "Pawmi",
|
|
de: "Pamo"
|
|
},
|
|
|
|
rarity: "Illustration rare",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Light Punch",
|
|
fr: "Poing Léger",
|
|
es: "Puño Ligero",
|
|
it: "Pugnetto",
|
|
de: "Leichter Hieb"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Zap Kick",
|
|
fr: "Coup de Pied Ravageur",
|
|
es: "Electropatada",
|
|
it: "Dinamocalcio",
|
|
de: "Stromtritt"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card |