//L11: questL11Worship
// hidden temple unlocked?
// identified spheres, found altars
if (get_property("questL11Worship")!="unstarted" && get_property("questL11Worship")!="finished" && my_level()>=11) {
result.append("<tr><td>");
result.append('Unlock and search <a target="mainpane" href="woods.php">Hidden City</a>');
result.append("<br>Spheres: ");
buffer spheres;
for s from 2174 to 2177 {
if(length(spheres) > 0) spheres.append(", ");
spheres.append(replace_string(item_report(to_item(s)), " stone sphere", ""));
}
result.append(spheres);
result.append("<br>Altars found: ");
if (get_property("lastHiddenCityAscension") == my_ascensions()) {
int altars = 0;
foreach cc in $strings[N, W, L, F] {
if(get_property("hiddenCityLayout").contains_text(cc)) { altars += 1; }
}
result.append(to_string(altars));
} else {
result.append("0");
}
result.append("/4");
result.append("</td></tr>");
}