1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

77 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Tangrowth",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
465,
],
types: [
"Grass",
],
evolveFrom: {
en: "Tangela",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leaf Guard",
},
effect: {
en: "During your opponent's next turn, any damage done to Tangrowth by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 30,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Swallow Up",
},
effect: {
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Tangrowth. If the Defending Pokémon has fewer remaining HP than Tangrowth's, this attack does 120 damage instead.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "+30"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 3,
}
export default card