1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00

36 lines
460 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Tangela"
},
illustrator: "Midori Harada",
category: "Pokemon",
hp: 80,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass", "Colorless"],
name: {
en: "Absorb"
},
effect: {
en: "Heal 10 damage from this Pokémon."
},
damage: "40"
}],
retreat: 2,
rarity: "One Diamond"
}
export default card