1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#include "AppHdr.h"
#include "externs.h"
#include "items.h"
#include "maps.h"
#include "mon-util.h"
#include "mpr.h"
#include "ng-setup.h"
#include "player.h"
#include "random.h"
void sprint_give_items()
{
newgame_give_item(OBJ_POTIONS, POT_HEALING);
newgame_give_item(OBJ_POTIONS, POT_HEAL_WOUNDS);
newgame_give_item(OBJ_POTIONS, POT_SPEED);
newgame_give_item(OBJ_POTIONS, POT_MAGIC, 2);
newgame_give_item(OBJ_POTIONS, POT_BERSERK_RAGE);
newgame_give_item(OBJ_SCROLLS, SCR_BLINKING);
}
int sprint_modify_exp(int exp)
{
return exp * 9;
}
int sprint_modify_exp_inverse(int exp)
{
return div_rand_round(exp, 9);
}
int sprint_modify_skills(int skill_gain)
{
return skill_gain * 27;
}
int sprint_modify_piety(int piety)
{
return piety * 9;
}
int sprint_modify_abyss_exit_chance(int exit_chance)
{
return exit_chance / 3;
}
/* XXX: ugh, can't think of a better thing to do here */
bool sprint_veto_random_abyss_monster(monster_type type)
{
return random2(20) > (int)get_monster_data(type)->hpdice[0];
}
mapref_vector get_sprint_maps()
{
return find_maps_for_tag("sprint");
}
// We could save this in crawl_state instead.
// Or choose_game() could save *ng to crawl_state
// entirely, though that'd be redundant with
// you.your_name, you.species, crawl_state.type, ...
static std::string _sprint_map;
std::string get_sprint_map()
{
return _sprint_map;
}
void set_sprint_map(const std::string& map)
{
_sprint_map = map;
}
|