1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/009.ts

44 lines
615 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Bayleef"
},
illustrator: "Mizue",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Grass"],
evolveFrom: {
en: "Chikorita"
},
description: {
en: "A spicy aroma emanates from around its neck.\nThe aroma acts as a stimulant to restore health."
},
stage: "Stage1",
attacks: [{
name: {
en: "Vine Whip"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 2
}
export default card