1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 05:09:53 +00:00

48 lines
743 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Tangrowth"
},
illustrator: "kodama",
rarity: "Two Diamond",
category: "Pokemon",
hp: 130,
types: ["Grass"],
evolveFrom: {
en: "Tangela"
},
description: {
en: "Tangrowth has two arms that it can extend as it<br />pleases. Recent research has shown that these<br />arms are, in fact, bundles of vines."
},
stage: "Stage1",
attacks: [{
name: {
en: "Mega Drain"
},
damage: 90,
cost: ["Grass", "Grass", "Grass", "Colorless"],
effect: {
en: "Heal 30 damage from this Pokémon."
}
}],
weaknesses: [{
type: "Fire",
value: "+20"
}],
retreat: 3
}
export default card