mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-26 01:50:36 +00:00
crossbow:: change bow color via menu
This commit is contained in:
parent
41e28c34b2
commit
dd37a1c6c7
@ -3301,6 +3301,10 @@ EX void showCustomizeChar() {
|
||||
dialog::addColorItem(XLAT("eye color"), cs.eyecolor, 'e');
|
||||
dialog::addColorItem(XLAT("weapon color"), cs.swordcolor, 'w');
|
||||
dialog::addColorItem(XLAT("hair color"), cs.haircolor, 'h');
|
||||
if(bow::crossbow_mode()) {
|
||||
dialog::addColorItem(XLAT("bow color"), cs.bowcolor, 'b');
|
||||
dialog::addColorItem(XLAT("boswtring color"), cs.bowcolor2, 'c');
|
||||
}
|
||||
|
||||
if(cs.charid >= 1) dialog::addColorItem(XLAT("dress color"), cs.dresscolor, 'd');
|
||||
else dialog::addBreak(100);
|
||||
@ -3353,6 +3357,8 @@ EX void showCustomizeChar() {
|
||||
else if(uni == 'u') switchcolor(cs.uicolor, eyecolors);
|
||||
else if(uni == 'e') switchcolor(cs.eyecolor, eyecolors);
|
||||
else if(uni == 'l') cs.lefthanded = !cs.lefthanded;
|
||||
else if(uni == 'b') switchcolor(cs.bowcolor, swordcolors);
|
||||
else if(uni == 'c') switchcolor(cs.bowcolor2, eyecolors);
|
||||
else if(doexiton(sym, uni)) popScreen();
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user