1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-06 12:27:57 +00:00

inv:: buffed up the Orb of Intensity

This commit is contained in:
Zeno Rogue
2019-11-28 00:14:22 +01:00
parent e82f1906e1
commit 07477e2b23
3 changed files with 10 additions and 3 deletions

View File

@@ -7281,7 +7281,7 @@ EX bool collectItem(cell *c2, bool telekinesis IS(false)) {
it = itOrbSpeed;
}
if(c2->land == laAsteroids) oc = 10;
if(markOrb(itOrbIntensity)) oc = oc * 6 / 5;
if(markOrb(itOrbIntensity)) oc = intensify(oc);
if(!items[it]) items[it]++;
items[it] += oc;
}