mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
70 lines
747 B
TypeScript
70 lines
747 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Base Set 2'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Ivysaur",
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
2,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
evolveFrom: {
|
||
en: "Barboach",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Vine Whip",
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Poisonpowder",
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Poisoned.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|