rswtjh
This commit is contained in:
parent
4806fe8e33
commit
809560a054
@ -121,6 +121,24 @@
|
|||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Eisen – Bild aus der Datenbank */
|
||||||
|
.mine-resource-icon-iron {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mine-resource-icon-iron img {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
object-fit: contain;
|
||||||
|
filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.mine-resource-label {
|
.mine-resource-label {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
|||||||
BIN
public/images/items/eisen.png
Normal file
BIN
public/images/items/eisen.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 428 KiB |
@ -126,8 +126,6 @@ document.addEventListener("click", async (e) => {
|
|||||||
const lines = data.collected
|
const lines = data.collected
|
||||||
.map(
|
.map(
|
||||||
(c) =>
|
(c) =>
|
||||||
resourceIcon(c.resource) +
|
|
||||||
" " +
|
|
||||||
resourceLabel(c.resource) +
|
resourceLabel(c.resource) +
|
||||||
": +" +
|
": +" +
|
||||||
c.amount,
|
c.amount,
|
||||||
@ -173,11 +171,17 @@ function startCountdown(buildingId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function resourceIcon(resource) {
|
function resourceIcon(resource) {
|
||||||
|
if (resource === "iron") {
|
||||||
|
return (
|
||||||
|
"<span class='mine-resource-icon-iron'>" +
|
||||||
|
"<img src='/images/items/eisen.png' alt='Eisen'>" +
|
||||||
|
"</span>"
|
||||||
|
);
|
||||||
|
}
|
||||||
const map = {
|
const map = {
|
||||||
gold: "🪙",
|
gold: "🪙",
|
||||||
copper: "🟤",
|
copper: "🟤",
|
||||||
silver: "⚪",
|
silver: "⚪",
|
||||||
iron: "⚙️",
|
|
||||||
stone: "🪨",
|
stone: "🪨",
|
||||||
wood: "🪵",
|
wood: "🪵",
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user