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

increased treasure generation in Terra

This commit is contained in:
Zeno Rogue 2017-10-07 11:19:58 +02:00
parent 11bdda6957
commit 99d27f608d

View File

@ -5094,7 +5094,7 @@ void setdist(cell *c, int d, cell *from) {
if(c->land == laTerracotta) {
bool nearwarrior = false;
forCellEx(c2, c) if(c2->wall == waTerraWarrior) nearwarrior = true;
if(nearwarrior && hrand(5000) < PT(100 + 2 * kills[moJiangshi], 200) && notDippingFor(itTerra))
if(nearwarrior && hrand(5000) < PT(130 + 2 * kills[moJiangshi], 260) && notDippingFor(itTerra))
c->item = itTerra;
if(hrand(20000) < 2 * (items[itTerra] + hard))
c->monst = moJiangshi;