mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-12-16 02:58:05 +00:00
more bubbles, SE config
This commit is contained in:
11
attack.cpp
11
attack.cpp
@@ -690,6 +690,17 @@ EX void killMonster(cell *c, eMonster who, flagtype deathflags IS(0)) {
|
||||
}
|
||||
if(m == moLesser && !(kills[m] % 10))
|
||||
degradeDemons();
|
||||
if(m == moLesser) {
|
||||
if(kills[m] % 10) {
|
||||
if(vid.bubbles_special)
|
||||
drawBubble(c, 0xFF0000, its(kills[m]%10), 1);
|
||||
}
|
||||
else {
|
||||
if(vid.bubbles_special)
|
||||
drawBubble(c, 0xFF8000, "+1 XP", .8);
|
||||
degradeDemons();
|
||||
}
|
||||
}
|
||||
if(isIvy(c)) {
|
||||
pcount = 0;
|
||||
eMonster m = c->monst;
|
||||
|
||||
Reference in New Issue
Block a user