1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

upgraded Rose Garden to 90 treasure.

This commit is contained in:
Zeno Rogue 2017-11-03 22:41:13 +01:00
parent ead665e311
commit f12e9e9ae9
2 changed files with 4 additions and 3 deletions

View File

@ -474,7 +474,7 @@ string generateHelpForLand(eLand l) {
if(l == laCamelot) ACCONLY2(laCrossroads, laCrossroads3)
if(l == laDryForest || l == laWineyard || l == laDeadCaves || l == laHive || l == laRedRock ||
l == laOvergrown || l == laStorms || l == laWhirlwind || l == laRose ||
l == laOvergrown || l == laStorms || l == laWhirlwind ||
l == laCrossroads2 || l == laRlyeh || l == laVolcano)
TREQ(R60)
@ -494,6 +494,7 @@ string generateHelpForLand(eLand l) {
if(l == laPrairie) TREQ(R90)
if(l == laBull) TREQ(R90)
if(l == laRose) TREQ(R90)
if(l == laTerracotta) TREQ(R90)
if(l == laCrossroads4) TREQ(R200)
if(l == laCrossroads5) TREQ(R300)

View File

@ -458,7 +458,7 @@ bool landUnlocked(eLand l) {
case laPrincessQuest: return kills[moVizier] && !shmup::on && multi::players == 1;
case laRose:
return gold() >= R60;
return gold() >= R90;
case laWarpCoast: case laWarpSea:
return gold() >= R30;
@ -827,7 +827,6 @@ eLand getNewLand(eLand old) {
}
if(old == laRedRock) LIKELY tab[cnt++] = laDesert;
if(old == laOvergrown) LIKELY tab[cnt++] = laJungle;
tab[cnt++] = laRose;
}
if(gold() >= R90) {
@ -836,6 +835,7 @@ eLand getNewLand(eLand old) {
tab[cnt++] = laBull;
if(old == laBull && !chaosmode) LIKELY tab[cnt++] = laPrairie;
tab[cnt++] = laTerracotta;
tab[cnt++] = laRose;
}
if(gold() >= R300)