1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 17:37:39 +00:00

crystal:: added a conduct for doing Camelot without compasses

This commit is contained in:
Zeno Rogue
2018-12-25 23:54:34 +01:00
parent 8e4e627a37
commit 444bb762d7
4 changed files with 19 additions and 1 deletions

View File

@@ -710,6 +710,18 @@ string generateHelpForLand(eLand l) {
);
}
if(l == laCamelot && geometry == gCrystal) {
if(!crystal::used_compass_inside) s += XLAT("\nSpecial conduct (still valid)\n");
else s += XLAT("\nSpecial conduct failed:\n");
s += XLAT(
"Do not use compases.\n\n");
s += XLAT("Crystal Camelot is an octahedron in 'pure' 3D crystal geometry (and a similar polytope in other pure crystals), "
"and an Euclidean ball in bitruncated/Goldberg crystals.");
}
auto lv = land_validity(specialland);
if(lv.flags & lv::display_in_help)
s += "\n\n" + XLAT(lv.msg);