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

76 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Tangrowth",
fr: "Bouldeneu",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
465,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Tangela",
fr: "Saquedeneu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Hefty Whip",
fr: "Fouet Robuste",
},
effect: {
en: "If this Pokémon was healed during this turn, this attack does 130 more damage.",
fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 130 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Whip Smash",
fr: "Frappe Fouet",
},
damage: 110,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card