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

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,75 @@
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