1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 12:27:40 +00:00

ru:: rings with shuffled names

This commit is contained in:
Zeno Rogue
2025-05-05 11:30:47 +02:00
parent 129d3bbe89
commit 69b5950792
5 changed files with 118 additions and 25 deletions

View File

@@ -31,11 +31,14 @@ struct power {
hr::function<color_t()> get_color;
hr::function<void(int)> picked_up;
hr::function<void()> refill;
hr::function<void()> reshuffle;
power& is_starting();
power& be_weapon();
power& be_resource(string plural);
power& while_paused();
power& identified_name(string, string);
power& be_wearable(string wear_effect, string remove_effect);
power& be_jewelry(string jtype, string desc);
};
extern vector<power> powers;