mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-15 22:27:38 +00:00
world turtles
This commit is contained in:
@@ -2910,8 +2910,13 @@ EX void setdist(cell *c, int d, cell *from) {
|
||||
c->item = itNone;
|
||||
}
|
||||
}
|
||||
if(d == 7 && c->land == laMemory && hrand(100) < 5) {
|
||||
c->wall = waTrapdoor, c->item = itOrbSafety;
|
||||
if(d == 7 && c->land == laMemory) {
|
||||
if(hrand(100) < 5) {
|
||||
c->wall = waTrapdoor, c->item = itOrbSafety;
|
||||
}
|
||||
else if(hrand(100) < 2) {
|
||||
c->monst = moWorldTurtle, c->wall = waNone, c->hitpoints = 5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user