1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Files
cards-database/data/Call of Legends/Call of Legends/34.ts
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

86 lines
1.7 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 '../Call of Legends'
const card: Card = {
name: {
en: "Tangrowth",
fr: "Bouldeneu",
de: "Tangoloss"
},
illustrator: "Hideaki Hakozaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
465,
],
hp: 110,
types: [
"Grass",
],
evolveFrom: {
en: "Tangela",
fr: "Saquedeneu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Grind",
fr: "Écrase",
de: "Zermahlen"
},
effect: {
en: "Does 20 damage times the amount of Energy attached to Tangrowth.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées à Bouldeneu.",
de: "Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl der an Tangoloss angelegten Energien zu."
},
damage: "20x",
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Plow Over",
fr: "Labour",
de: "Umpflügen"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, put 1 Energy card attached to the Defending Pokémon in the Lost Zone.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur est maintenant Paralysé. Si cest pile, placez 1 carte Énergie attachée au Pokémon Défenseur dans la Zone Perdue.",
de: "Wirf eine Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt. Bei \"Zahl\" lege 1 an das Verteidigende Pokémon angelegte Energiekarte ins Nirgendwo."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 4,
}
export default card