1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-03 19:27:54 +00:00

new player shape: spaceship

This commit is contained in:
Zeno Rogue
2024-10-04 15:35:54 +02:00
parent 02ad45c6e6
commit b6b4755309
5 changed files with 45 additions and 4 deletions

View File

@@ -985,6 +985,7 @@ EX string csnameid(int id) {
if(id == 4 || id == 5) return XLAT("cat");
if(id == 6 || id == 7) return XLAT("dog");
if(id == 8 || id == 9) return XLATN("Familiar");
if(id == 10 || id == 11) return XLATN("spaceship");
return XLAT("none");
}
@@ -3557,7 +3558,7 @@ EX void showCustomizeChar() {
else if(uni == 'g') {
cs.charid++;
if(cs.charid == 2 && !princess::everSaved && !autocheat) cs.charid = 4;
cs.charid %= 10;
cs.charid %= 12;
}
else if(uni == 'p') vid.samegender = !vid.samegender;
else if(uni == 's') switchcolor(cs.skincolor, cat ? haircolors : skincolors);