1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Genetic Apex/001.ts
2025-02-19 21:52:42 +01:00

41 lines
590 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Bulbasaur"
},
illustrator: "Narumi Sato",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Vine Whip"
},
damage: "40"
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 1,
rarity: "One Diamond",
description: {
en: "There is a plant seed on its back right from the day this Pokémon is born. The seed slowly grows larger.",
}
}
export default card