1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

104 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 '../Team Up'
const card: Card = {
name: {
en: "Pangoro",
fr: "Pandarbare",
es: "Pangoro",
it: "Pangoro",
pt: "Pangoro",
de: "Pandagro"
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
675,
],
hp: 140,
types: [
"Darkness",
],
evolveFrom: {
en: "Pancham",
fr: "Pandespiègle",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Tighten Up",
fr: "Resserrage",
es: "Apretar",
it: "Torchio",
pt: "Espremer",
de: "Zudrücken"
},
effect: {
en: "Your opponent discards 2 cards from their hand.",
fr: "Votre adversaire défausse 2 cartes de sa main.",
es: "Tu rival descarta 2 cartas de su mano.",
it: "Il tuo avversario scarta due carte che ha in mano.",
pt: "Seu oponente descarta 2 cartas da própria mão.",
de: "Dein Gegner legt 2 Karten aus seiner Hand auf seinen Ablagestapel."
},
damage: 60,
},
{
cost: [
"Darkness",
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Tantrum",
fr: "Mauvaise Humeur",
es: "Rabieta",
it: "Collera",
pt: "Petulância",
de: "Rappel"
},
effect: {
en: "This Pokémon is now Confused.",
fr: "Ce Pokémon est maintenant Confus.",
es: "Este Pokémon pasa a estar Confundido.",
it: "Questo Pokémon viene confuso.",
pt: "Este Pokémon agora está Confuso.",
de: "Dieses Pokémon ist jetzt verwirrt."
},
damage: 170,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card