mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Pangoro",
|
|
fr: "Pandarbare",
|
|
es: "Pangoro",
|
|
de: "Pandagro",
|
|
it: "Pangoro",
|
|
pt: "Pangoro",
|
|
'es-mx': "Pangoro"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Darkness"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Darkness"],
|
|
|
|
name: {
|
|
en: "Torment",
|
|
fr: "Tourmente",
|
|
es: "Tormento",
|
|
de: "Folterknecht",
|
|
it: "Attaccalite",
|
|
pt: "Atormentar",
|
|
'es-mx': "Tormento"
|
|
},
|
|
|
|
effect: {
|
|
en: "Choose 1 of your opponent's Active Pokémon's attacks. During your opponent's next turn, that Pokémon can't use that attack.",
|
|
fr: "Choisissez l'une des attaques du Pokémon Actif de votre adversaire. Pendant le prochain tour de votre adversaire, ce Pokémon-là ne peut pas utiliser cette attaque.",
|
|
es: "Elige uno de los ataques del Pokémon Activo de tu rival. Durante el próximo turno de tu rival, dicho Pokémon no puede usar ese ataque.",
|
|
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners. Während des nächsten Zuges deines Gegners kann jenes Pokémon jene Attacke nicht einsetzen.",
|
|
it: "Scegli un attacco del Pokémon attivo del tuo avversario. Durante il prossimo turno del tuo avversario, quel Pokémon non potrà utilizzarlo.",
|
|
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente. Durante o próximo turno do seu oponente, aquele Pokémon não poderá usar aquele ataque.",
|
|
'es-mx': "Elige 1 de los ataques del Pokémon Activo de tu rival. Durante el próximo turno de tu rival, dicho Pokémon no puede usar ese ataque."
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Darkness", "Darkness", "Colorless"],
|
|
|
|
name: {
|
|
en: "Power Tackle",
|
|
fr: "Tacle Puissant",
|
|
es: "Placaje Poderoso",
|
|
de: "Kraft-Tackle",
|
|
it: "Forzazione",
|
|
pt: "Investida Poderosa",
|
|
'es-mx': "Tacleada Poderosa"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
'es-mx': "Durante tu próximo turno, este Pokémon no puede atacar."
|
|
},
|
|
|
|
damage: 160
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
"firstEdition": false,
|
|
"holo": false,
|
|
"normal": true
|
|
"reverse": true,
|
|
"wPromo": false,
|
|
}
|
|
}
|
|
|
|
export default card
|