Rebuild Princess Lima maps around the new visual atlas
All checks were successful
Build Org Website / build (push) Successful in 38s

This commit is contained in:
gitea-actions
2026-07-30 12:48:17 +01:00
parent a0c78929b3
commit 15b626ee0d
21 changed files with 305 additions and 194 deletions

View File

@@ -11,7 +11,13 @@
const STORAGE_KEY = "zxh_princess_lima_rpg_v1";
const APPEARANCES = Object.freeze(["azure", "ember", "pine"]);
const FACES = Object.freeze(["north", "south", "east", "west"]);
const START = Object.freeze({ region: "village", spawn: "start", x: 160, y: 570, facing: "east" });
const START = Object.freeze({
region: "village",
spawn: "start",
x: Data.MAPS.village.spawns.start.x,
y: Data.MAPS.village.spawns.start.y,
facing: "north"
});
function validName(value) {
const name = String(value || "").trim().replace(/\s+/g, " ");