1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

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