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

77 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Tangrowth",
fr: "Bouldeneu",
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
465,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Tangela",
fr: "Saquedeneu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Giga Drain",
fr: "Giga-Sangsue",
},
effect: {
en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.",
fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Crosswise Whip",
fr: "Fouets Croisés",
},
effect: {
en: "Flip 4 coins. This attack does 50 damage for each heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 4,
}
export default card