mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 01:00:25 +00:00
wandering monster generation in Blizzard and Volcano
This commit is contained in:
parent
b0d6bb3f05
commit
1388159120
@ -494,6 +494,12 @@ void wandering() {
|
||||
else if(c->land == laBurial && wchance(items[itBarrow], 250))
|
||||
c->monst = moDraugr;
|
||||
|
||||
else if(c->land == laBlizzard && wchance(items[itBlizzard], 80))
|
||||
c->monst = pick(moIceGolem : moVoidBeast);
|
||||
|
||||
else if(c->land == laVolcano && wchance(items[itLavaLily], 80))
|
||||
c->monst = pick(moLavaWolf : moSalamader);
|
||||
|
||||
else if(c->land == laTrollheim && wchance(items[itTrollEgg], 150))
|
||||
c->monst = pickTroll(c);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user