mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 07:12:08 +00:00
57 lines
651 B
TypeScript
57 lines
651 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 1'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pupitar",
|
|
},
|
|
|
|
illustrator: "Hisao Nakamura",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
247,
|
|
],
|
|
|
|
hp: 70,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Larvitar",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Rock Smash",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
|
|
},
|
|
damage: "20+",
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Water"
|
|
},
|
|
],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|