mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 06:19:54 +00:00
57 lines
887 B
TypeScript
57 lines
887 B
TypeScript
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,
|
|
|
|
abilities: [{
|
|
type: "Ability",
|
|
|
|
name: {
|
|
en: "Counterattack"
|
|
},
|
|
|
|
effect: {
|
|
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon."
|
|
}
|
|
}],
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Electric Punch"
|
|
},
|
|
|
|
damage: 70,
|
|
cost: ["Lightning", "Lightning"]
|
|
}]
|
|
}
|
|
|
|
export default card
|