1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

75 lines
797 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Ivysaur",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
2,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Bulbasaur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Poison Seed",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic"
},
],
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card