33% chance of summoning daevas.
33% chance of blasting you with cleansing flame. If you worship an evil god, you are now vulnerable to cleansing flame even if you're not undead or demonic; it seems fitting, especially as many living evil monsters seem to be priestly types. (The code for the blast is currently based on a modified version of Xom's divine lightning.)
33% chance of booming voice. This is currently identical to Zin's version, except that the message is different.
His smiting has been removed.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3593 c06c8d41-db1a-0410-9941-cceddc491573
SM5TRAZJD7BTJUVJ4HUNKROCH7DLD24SU5II6FQSJYIPQ2XA4RUAC
bolt beam;
beam.beam_source = NON_MONSTER;
beam.type = dchar_glyph(DCHAR_FIRED_ZAP);
beam.damage = calc_dice( 3, 20 + (you.experience_level * 7) / 3 );
beam.flavour = BEAM_HOLY;
beam.target_x = you.x_pos;
beam.target_y = you.y_pos;
beam.name = "golden flame";
beam.colour = YELLOW;
beam.thrower = KILL_MISC;
beam.aux_source = "The Shining One's cleansing flame";
beam.ex_size = 2;
beam.is_tracer = false;
beam.is_explosion = true;
explosion(beam);
break;
case 2:
simple_god_message(" booms out: \"Turn back to righteousness! REPENT!\"", god);
noisy( 25, you.x_pos, you.y_pos ); // same as scroll of noise
break;
}