1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-26 01:50:36 +00:00

colors for Orb of Chaos and Orb of Plague

This commit is contained in:
Zeno Rogue 2020-02-26 02:49:44 +01:00
parent 6317101d66
commit 0de0714ba5

View File

@ -936,6 +936,8 @@ EX bool drawItemType(eItem it, cell *c, const transmatrix& V, color_t icol, int
if(it == itOrbPhasing) icol = 0xFF0000; if(it == itOrbPhasing) icol = 0xFF0000;
if(it == itOrbDash) icol = 0xFF0000; if(it == itOrbDash) icol = 0xFF0000;
if(it == itOrbFreedom) icol = 0xC0FF00; if(it == itOrbFreedom) icol = 0xC0FF00;
if(it == itOrbPlague) icol = 0x409040;
if(it == itOrbChaos) icol = 0xFF00FF;
if(it == itOrbAir) icol = 0xFFFFFF; if(it == itOrbAir) icol = 0xFFFFFF;
if(it == itOrbUndeath) icol = minf[moFriendlyGhost].color; if(it == itOrbUndeath) icol = minf[moFriendlyGhost].color;
if(it == itOrbRecall) icol = 0x101010; if(it == itOrbRecall) icol = 0x101010;