1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Genesis'
const card: Card = {
name: {
en: "Bayleef",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
153,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Chikorita",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Sweet Scent",
},
effect: {
en: "Flip a coin. If heads and if any of your Pokémon have any damage counters on them, then remove 2 damage counters from 1 of them (or 1 if it only has 1). If tails and if any of your opponent's Pokémon have any damage counters on them, choose 1 of them and remove 2 damage counters from it (or 1 if it only has 1).",
},
},
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Double Razor Leaf",
},
effect: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card