1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

67 lines
1.5 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Tangela",
fr: "Saquedeneu",
es: "Tangela",
it: "Tangela",
pt: "Tangela",
de: "Tangela"
},
illustrator: "otumami",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
114,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Toxic",
fr: "Toxik",
es: "Tóxico",
it: "Tossina",
pt: "Tóxico",
de: "Toxin"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned. Put 2 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 2 marqueurs de dégâts au lieu dun sur ce Pokémon-là entre chaque tour.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Pon 2 contadores de daño en vez de 1 en ese Pokémon entre turnos.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Tra un turno e laltro, metti due segnalini danno invece di uno su quel Pokémon.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Coloque 2 contadores de dano ao invés de 1 naquele Pokémon entre as vezes de jogar.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Lege zwischen den Zügen 2 Schadensmarken anstelle von 1 Schadensmarke auf jenes Pokémon."
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card