mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-30 07:17:03 +00:00
Wandering rocksnakes no longer appear on hepts
This commit is contained in:
parent
7f8d978beb
commit
221d42e4e9
@ -593,8 +593,12 @@ EX void wandering() {
|
|||||||
else if(c->land == laDragon && (items[itDragon] >= 8 || items[itOrbYendor]) && wchance(items[itDragon], 20))
|
else if(c->land == laDragon && (items[itDragon] >= 8 || items[itOrbYendor]) && wchance(items[itDragon], 20))
|
||||||
c->monst = moFireElemental;
|
c->monst = moFireElemental;
|
||||||
|
|
||||||
else if(c->land == laRedRock && wchance(items[itRedGem], 10))
|
else if(c->land == laRedRock && wchance(items[itRedGem], 10)) {
|
||||||
c->monst = (hrand(10) || peace::on) ? moRedTroll : moHexSnake;
|
if (hrand(10) || peace::on)
|
||||||
|
c->monst = moRedTroll;
|
||||||
|
else if (!pseudohept(c))
|
||||||
|
c->monst = moHexSnake;
|
||||||
|
}
|
||||||
|
|
||||||
else if(c->land == laCaves && wchance(items[itGold], 5))
|
else if(c->land == laCaves && wchance(items[itGold], 5))
|
||||||
c->monst = hrand(3) ? moTroll : moGoblin;
|
c->monst = hrand(3) ? moTroll : moGoblin;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user