1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

62 lines
595 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Bulbasaur",
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
1,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic"
},
],
retreat: 1
}
export default card