This commit is contained in:
cay 2026-04-09 14:01:20 +01:00
parent f5f2315fe8
commit e1e275f1f7
2 changed files with 85 additions and 7 deletions

View File

@ -1,7 +1,7 @@
import { loadArena } from "./buildings/arena.js";
import { loadCharacterHouse } from "./buildings/character-house.js";
import { loadBlackmarket } from "./buildings/blackmarket.js";
import { loadMine } from "./buildings/mine.js";
import { loadArena } from "./buildings/arena.js?v=2";
import { loadCharacterHouse } from "./buildings/character-house.js?v=2";
import { loadBlackmarket } from "./buildings/blackmarket.js?v=2";
import { loadMine } from "./buildings/mine.js?v=2";
const popup = document.getElementById("building-popup");
const title = document.getElementById("popup-title");
const tooltip = document.getElementById("map-tooltip");

View File

@ -8,6 +8,84 @@
href="/images/favicon/dok_favicon_32px.ico"
type="image/x-icon"
/>
<style>
@font-face {
font-family: "Cinzel Decorative";
src:
url("/fonts/CinzelDecorative-Regular.woff2") format("woff2"),
url("/fonts/CinzelDecorative-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Cinzel Decorative";
src:
url("/fonts/CinzelDecorative-Bold.woff2") format("woff2"),
url("/fonts/CinzelDecorative-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Cinzel Decorative";
src:
url("/fonts/CinzelDecorative-Black.woff2") format("woff2"),
url("/fonts/CinzelDecorative-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-ExtraBold.ttf") format("truetype");
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: "Cinzel";
src: url("/fonts/Cinzel-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: "Tangerine";
src:
url("/fonts/Tangerine-Regular.woff2") format("woff2"),
url("/fonts/Tangerine-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Tangerine";
src:
url("/fonts/Tangerine-Bold.woff2") format("woff2"),
url("/fonts/Tangerine-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
</style>
<link rel="stylesheet" href="/css/launcher.css" />
<link rel="stylesheet" href="/css/global.css" />
<link rel="stylesheet" href="/css/building.css" />
@ -920,10 +998,10 @@
window.playerName = "<%= character.name %>";
</script>
<script src="/js/chat.js"></script>
<script type="module" src="/js/map-ui.js"></script>
<script type="module" src="/js/quickmenu.js"></script>
<script type="module" src="/js/map-ui.js?v=2"></script>
<script type="module" src="/js/quickmenu.js?v=2"></script>
<script type="module">
import { loadHud } from "/js/hud.js";
import { loadHud } from "/js/hud.js?v=2";
loadHud();
</script>