1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

49 lines
681 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Venusaur"
},
illustrator: "Kuroimori",
rarity: "None",
category: "Pokemon",
types: ["Grass"],
stage: "Stage2",
attacks: [{
name: {
en: "Mega Drain"
},
cost: ["Grass", "Grass", "Colorless", "Colorless"],
damage: 80,
effect: {
en: "Heal 30 damage from this Pokémon."
}
}],
hp: 160,
evolveFrom: {
en: "Ivysaur"
},
description: {
en: "Its plant blooms when it is absorbing solar energy. It stays on the move to seek sunlight."
},
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 3
}
export default card