B:BD[
4.11348] → [
5.5550:5556]
∅:D[
5.5556] → [
4.11351:11403]
B:BD[
4.11351] → [
4.11351:11403]
B:BD[
4.11403] → [
5.5557:6028]
B:BD[
5.6028] → [
7.3129:3178]
∅:D[
7.3178] → [
5.6076:6270]
B:BD[
5.6076] → [
5.6076:6270]
{
mpr("The flow of time bends around you.");
// TODO perhaps make power dependent on invocation?
// if so, this spell must train invocations too
// currently, has one-size-fits-all power level and duration,
// as if a wand of slow monster was zapped at each target
for (adjacent_iterator ai; ai; ++ai)
{
// Tile occupied by monster
monsters* mon = monster_at(*ai);
if (mon != NULL)
{
simple_god_message(
make_stringf(" rebukes %s.",
mon->name(DESC_NOCAP_THE).c_str()).c_str(),
GOD_CHRONOS);
do_slow_monster(mon, KC_YOU);
}
}
chronos_time_bend(16 + you.skills[SK_INVOCATIONS] * 8);
exercise(SK_INVOCATIONS, 2 + random2(3));