Home
last modified time | relevance | path

Searched refs:nrolls (Results 1 – 5 of 5) sorted by relevance

/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Ddgn-height.cc27 int resolve_range(int_range range, int nrolls) in resolve_range() argument
29 return random_range(range.first, range.second, nrolls); in resolve_range()
H A Drandom.cc203 int random_range(int low, int high, int nrolls) in random_range() argument
205 ASSERT(nrolls > 0); in random_range()
206 const int roll = random2avg(high - low + 1, nrolls); in random_range()
H A Ddgn-height.h23 int resolve_range(int_range range, int nrolls = 1);
H A Drandom.h85 int random_range(int low, int high, int nrolls);
H A Dmon-gear.cc205 int nrolls; ///< min 1 member
249 const int rolls = max(1, spec.plusses.nrolls); in _apply_weapon_spec()