Outpost
Appearance
Outposts
<script> document.addEventListener("DOMContentLoaded", function () {
const data = {
"meyers_market": {
label: "Meyer's Market",
content: `
Location: 5766, -6575
Recommended Level: 1
Survivors in the Broken Delta region stumbled upon this haven in the heart of the river, a sanctuary from the Starfall's ravaging contamination. Here, they've erected shelters, cultivated crops on the rich riverbank soil for self-sufficiency, and ventured into nearby factory zones to gather materials for crafting Equip, fortifying their Stronghold against invasions from the surrounding Deviants.
What's For Sale:
`
},
"tall_grass_inn": {
label: "Tall Grass Inn",
content: `
Location: 3051, -4853
Recommended Level: 35
Tall Grass, once a cozy camper's retreat nestled in a forest complete with an inn and diner, has transformed after the Starfall into a sanctuary for survivors. The cave's interior has been redesigned into distinct zones for living, functionality, and storage, expanding into a fully-functional settlement.
What's For Sale:
Fast-Acting Durable Healing Treatment: 33EL
Masala: 50EL
Roasted Vegetables: 150EL
Fruit Tea: 300EL
Onion Seeds: 1000EL
Artisan's Touch: 8000EL
Formula American Floor Lamp: 9000EL
Formula Carpet 1: 6000EL
Formula Vintage Patterned Fabric: 6000EL
Formula Geometric Ceiling: 6000EL ` } };
// Build dropdown using your existing system format
const container = document.getElementById("manibus-dropdown");
const wrapper = document.createElement("div");
wrapper.className = "mw-dropdown-ui";
wrapper.setAttribute("data-label", "Select Outpost");
wrapper.setAttribute("data-options", JSON.stringify(data));
container.appendChild(wrapper);
}); </script>