1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 09:50:34 +00:00

new lands in the lists and in YC

This commit is contained in:
Zeno Rogue 2020-02-29 00:16:35 +01:00
parent cca9dacf13
commit 9a2f8e1529
2 changed files with 4 additions and 2 deletions

View File

@ -475,7 +475,7 @@ EX eLand getNewLand(eLand old) {
EX vector<eLand> land_over = {
laIce, laCaves, laDesert, laHunting, laMotion, laJungle, laAlchemist,
laCrossroads,
laMirror, laMirrorOld, laMinefield, laPalace, laPrincessQuest, laZebra, laSwitch, laReptile,
laMirror, laMirrorOld, laMinefield, laPalace, laPrincessQuest, laZebra, laSwitch, laReptile, laWet,
laOcean, laDocks, laWarpCoast, laLivefjord, laKraken, laCaribbean, laBrownian, laWhirlpool, laRlyeh, laTemple,
laIvoryTower, laEndorian, laWestWall, laDungeon, laMountain,
laCrossroads2,
@ -484,6 +484,7 @@ EX vector<eLand> land_over = {
laDragon, laTortoise,
laOvergrown, laClearing, laStorms, laBurial, laWhirlwind,
laBlizzard,
laFrog, laEclectic,
laRuins, laEmerald, laVariant, laCamelot,
laPrairie, laBull, laTerracotta, laRose,
laElementalWall, laTrollheim,

View File

@ -74,7 +74,7 @@ EX namespace yendor {
int flags;
};
#define YENDORLEVELS 33
#define YENDORLEVELS 34
#endif
EX map<modecode_t, array<int, YENDORLEVELS>> bestscore;
@ -117,6 +117,7 @@ EX namespace yendor {
{laRuins, YF_DEAD},
{laCaves, YF_DEAD5},
{laWestWall, YF_START_CR},
{laEclectic, 0},
// {laVariant, YF_DEAD5}, (I do not think this works)
};