mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 23:50:27 +00:00
Hedgehog Warriors are replaced by Fire Cultists in non-3-valent Camelot
This commit is contained in:
parent
f65e1724b8
commit
e16c4aada7
@ -1213,6 +1213,8 @@ void buildCamelot(cell *c) {
|
|||||||
if(d < 0 && hrand(7000) <= 10 + items[itHolyGrail] * 5) {
|
if(d < 0 && hrand(7000) <= 10 + items[itHolyGrail] * 5) {
|
||||||
eMonster m[3] = { moHedge, moLancer, moFlailer };
|
eMonster m[3] = { moHedge, moLancer, moFlailer };
|
||||||
c->monst = m[hrand(3)];
|
c->monst = m[hrand(3)];
|
||||||
|
if(c->monst == moHedge && VALENCE > 3)
|
||||||
|
c->monst = moPyroCultist;
|
||||||
}
|
}
|
||||||
if(d == 1) {
|
if(d == 1) {
|
||||||
// roughly as many knights as table cells
|
// roughly as many knights as table cells
|
||||||
|
Loading…
Reference in New Issue
Block a user