mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
40 lines
595 B
TypeScript
40 lines
595 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bulbasaur"
|
|
},
|
|
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Three Diamond",
|
|
category: "Pokemon",
|
|
types: ["Grass"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Vine Whip"
|
|
},
|
|
|
|
cost: ["Grass", "Colorless"],
|
|
damage: 40
|
|
}],
|
|
|
|
hp: 70,
|
|
|
|
description: {
|
|
en: "There is a plant seed on its back right from the<br />day this Pokémon is born. The seed slowly<br />grows larger."
|
|
},
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card |