1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

36 lines
492 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Venusaur"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 160,
types: ["Grass"],
stage: "Stage2",
attacks: [{
cost: ["Grass", "Grass", "Colorless", "Colorless"],
name: {
en: "Mega Drain"
},
effect: {
en: "Heal 30 damage from this Pokémon."
},
damage: "80"
}],
retreat: 3,
rarity: "Three Diamond"
}
export default card