Added status to Volcano marker legend.

This commit is contained in:
Peter 2022-09-20 16:23:46 -04:00
parent 931c5d3af8
commit a4d7ea257b

View file

@ -165,7 +165,8 @@ window.Markers = (function () {
const proper = Names.getCulture(cells.culture[cell]); const proper = Names.getCulture(cells.culture[cell]);
const name = P(0.3) ? "Mount " + proper : Math.random() > 0.3 ? proper + " Volcano" : proper; const name = P(0.3) ? "Mount " + proper : Math.random() > 0.3 ? proper + " Volcano" : proper;
notes.push({id, name, legend: `Active volcano. Height: ${getFriendlyHeight(cells.p[cell])}`}); const status = P(0.6) ? "Dormant" : Math.random() > 0.6 ? "Active" : "Erupting";
notes.push({id, name, legend: `${status} volcano. Height: ${getFriendlyHeight(cells.p[cell])}`});
} }
function listHotSprings({cells}) { function listHotSprings({cells}) {