1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

73 lines
958 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Bayleef",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
153,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Chikorita",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Evolution Impulse",
},
effect: {
en: "Search your deck for an Evolution card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leaf Boomerang",
},
effect: {
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card