Skip to content

Commit

Permalink
Conan conqueror ships maps and black border #183
Browse files Browse the repository at this point in the history
  • Loading branch information
rafdulaf committed Jan 22, 2024
1 parent bd871b0 commit 6736b9f
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion Batman/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<script>
Application = "Batman";
Languages = ["fr", "en"];
const required = {"it": 13, "en": 22, "fr": 25};
const required = {"it": 13, "fr": 25, "en": 22};

var oldExtensionValue = JSON.parse(localStorage.getItem("Batman_Extensions"));
if (oldExtensionValue)
Expand Down
64 changes: 32 additions & 32 deletions Conan/data/maps.json

Large diffs are not rendered by default.

Binary file modified Conan/data/maps/data/Galley/board.webp
Binary file not shown.
Binary file modified Conan/data/maps/data/Galley/thumb.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion Conan/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<script>
Application = "Conan";
Languages = ["fr", "en", "it"];
const required = {"it": 43, "en": 43, "fr": 43};
const required = {"it": 43, "fr": 43, "en": 43};

// Old data conversion
["Extensions", "Language", "StudioTiles", "StudioHeroSheets", "StudioSpellCards", "StudioEquipmentCards", "Audience"].forEach(function(id) {
Expand Down
4 changes: 2 additions & 2 deletions tools/maps/maps.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<title>Map creation tool</title>

<link href="maps.css" rel="stylesheet" type="text/css"/>
<script src="../../engine/vendors/js/jquery-3.1.1.js"></script>
<script src="../../engine/vendors/js/jquery.ba-throttle-debounce.js"></script>
<script src="../../Conan/engine/vendors/js/jquery-3.1.1.js"></script>
<script src="../../Conan/engine/vendors/js/jquery.ba-throttle-debounce.js"></script>
<script src="maps.js"></script>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions tools/maps/maps.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function _doImport(text)
{
var card = json.list[i];

cards += "\n" + (i+1) + ") " + (card.description.title.en || card.description.title.fr || card.description.title.it || card.id)
cards += "\n" + (i+1) + ") " + (card.id)
}
for (var i =0; i < json.parts.length; i++)
{
Expand All @@ -58,7 +58,7 @@ function _doImport(text)

var card = json.parts[i];

cards += "\n" + (i+1+json.list.length) + ") " + (card.description.title.en || card.description.title.fr || card.description.title.it || card.id)
cards += "\n" + (i+1+json.list.length) + ") " + (card.id)
}

var number = prompt("Choisissez la carte à importer" + cards)
Expand Down

0 comments on commit 6736b9f

Please sign in to comment.