- ${other.hasEmbargoAgainst(myPlayer)
- ? translateText("player_panel.yes")
- : translateText("player_panel.no")}
+
+
+
+ ${translateText("player_panel.embargo")}
+
+
+ ${other.hasEmbargoAgainst(myPlayer)
+ ? translateText("player_panel.yes")
+ : translateText("player_panel.no")}
+
-
-
- ${translateText("player_panel.nuke")}
-
-
- ${this.getTotalNukesSent(other.id())}
+
+
+
+ ${translateText("player_panel.nuke")}
+
+
+ ${this.getTotalNukesSent(other.id())}
+
-
-
-
-
- ${canEmbargo && other !== myPlayer
- ? html`
this.handleEmbargoClick(e, myPlayer, other)}
- class="w-100 h-10 flex items-center justify-center
- bg-opacity-50 bg-gray-700 hover:bg-opacity-70
- text-white rounded-lg transition-colors"
- >
- ${translateText("player_panel.stop_trade")}
- `
- : ""}
- ${!canEmbargo && other !== myPlayer
- ? html`
- this.handleStopEmbargoClick(e, myPlayer, other)}
- class="w-100 h-10 flex items-center justify-center
- bg-opacity-50 bg-gray-700 hover:bg-opacity-70
- text-white rounded-lg transition-colors"
- >
- ${translateText("player_panel.start_trade")}
- `
- : ""}