Outpost
Appearance
<select id="outpostSelect" style="width:100%; padding:8px;">
<option value="">Select Outpost</option> <option value="meyers">Meyer's Market</option>
</select>
<script> document.getElementById("outpostSelect").addEventListener("change", function() {
const info = document.getElementById("outpostInfo");
if (this.value === "meyers") {
info.innerHTML = `
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:
`;
} else {
info.innerHTML = "";
}
}); </script>