1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
TCGdex [Bot] 5b32edb5bf
editor: fix Paldean Fates variants (#514)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:49 +02:00

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