mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
48
data/Scarlet & Violet/Paldean Fates/226.ts
Normal file
48
data/Scarlet & Violet/Paldean Fates/226.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pawmi",
|
||||
fr: "Pohm",
|
||||
es: "Pawmi",
|
||||
it: "Pawmi"
|
||||
},
|
||||
|
||||
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"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Zap Kick",
|
||||
fr: "Coup de Pied Ravageur",
|
||||
es: "Electropatada",
|
||||
it: "Dinamocalcio"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user