1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

66 lines
895 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Southern Islands'
const card: Card = {
name: {
en: "Ivysaur",
},
illustrator: "Keiko Fukuyama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
2,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Bulbasaur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Strange Scent",
},
effect: {
en: "Each player flips a coin. Each player who gets heads chooses a total of 3 damage counters from among his or her Pokémon and removes them. (If the player's Pokémon have fewer total damage counters than that, he or she removes all of them.)",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Razor Leaf",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card