Home
last modified time | relevance | path

Searched refs:kill_experience (Results 1 – 7 of 7) sorted by relevance

/dports/games/wesnoth/wesnoth-1.14.17/src/
H A Dgame_config.hpp37 extern int kill_experience;
50 return level ? kill_experience * level : kill_experience / 2; in kill_xp()
H A Dgame_config.cpp75 int kill_experience = 8; variable
301 kill_experience = v["kill_experience"].to_int(8); in load_config()
/dports/games/wesnoth/wesnoth-1.14.17/data/
H A Dgame_config.cfg22 kill_experience=8
H A Dschema.cfg155 kill_experience="optional integer"
/dports/games/wesnoth/wesnoth-1.14.17/src/units/
H A Dunit.cpp1093 …onst bool near_advance = static_cast<int>(experience_to_advance()) <= game_config::kill_experience; in xp_color()
1094 …st bool mid_advance = static_cast<int>(experience_to_advance()) <= game_config::kill_experience*2; in xp_color()
1095 …st bool far_advance = static_cast<int>(experience_to_advance()) <= game_config::kill_experience*3; in xp_color()
/dports/games/wesnoth/wesnoth-1.14.17/src/scripting/
H A Dlua_kernel_base.cpp901 return_int_attrib("kill_experience", game_config::kill_experience); in impl_game_config_get()
H A Dgame_lua_kernel.cpp1333 modify_int_attrib("kill_experience", game_config::kill_experience = value); in impl_game_config_set()