mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add data TCGP Promo-A 042-059 (March 2025) (#680)
* Add new PTCGP Promo-A cards for March 2025 (42 through 49) * Add additional cards Promos-A 050 - 059 --------- Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
This commit is contained in:
35
data/Pokémon TCG Pocket/Promos-A/054.ts
Normal file
35
data/Pokémon TCG Pocket/Promos-A/054.ts
Normal file
@ -0,0 +1,35 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pawmot"
|
||||
},
|
||||
|
||||
illustrator: "REND",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawmo"
|
||||
},
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user