1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

81 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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 '../Base Set'
const card: Card = {
name: {
en: "Tangela",
fr: "Saquedeneu",
de: "Tangela"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
114,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Bind",
fr: "Étreinte",
de: "Klammergriff"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
de: "Wirf eine Münze. Bei 'Kopf' ist das verteidigende Pokémon gelähmt."
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Grass",
],
name: {
en: "Poisonpowder",
fr: "Poudre Toxik",
de: "Giftpuder"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
de: "das verteidigende Pokémon ist vergiftet."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
description: {
fr: "Son corps est recouvert de lianes similaires à des algues. Elles bougent quand il marche."
}
}
export default card