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

76 lines
1.2 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Tangrowth",
fr: "Bouldeneu",
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
465,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Tangela",
fr: "Saquedeneu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Bind Down",
fr: "Astreinte",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Chlorowhip",
fr: "Chlorofouet",
},
effect: {
en: "If this Pokémon has at least 2 Grass Energy attached to it, heal 60 damage from this Pokémon.",
fr: "Si au moins 2 Énergies Grass sont attachées à ce Pokémon, soignez-lui 60 dégâts.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card