prayer at high enough piety, but with a significant piety cost).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7898 c06c8d41-db1a-0410-9941-cceddc491573
UXYQEI6GLKABRWITOJVAFK5QETIMVRRBJO3DCHFUAC5A6YTVI64QC
6PNQWEUFFTVYX76X5UBLRSGPFADTJ6UVD5KMBTCLQAY3YYLO6PHQC
RIGGVFYNCRFDUUCMIAN7SDEOUL4VMMZI6OYXZW72BVNI4WXJQXWQC
EJEHTLHZ5DL4SJQJBMQL5K3IV2ZMCZQBVCRRERER7SPOMNKFJTVQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
WNUXO4K3ATEOPH53ZO2HMCHRIHUNQYGJ4LG5QDSISLVJXNHWVWOAC
PHBACPMH3F34GODHVDKNCMXWU373RJQGVTDLBFCCDLLWDXVYOLTAC
VPLPFSVTBSMKFMLERSOXVHKBYS7BS3UXLTBA5WC7LFOSSPOTGGXQC
SJVBH562JHDQ4JXWCXRX6EPRAJOZLWNPER4RA76QCBMWUXN26ZFQC
TI2HASZUN3QBTNWRCXLXJHOZBOUHFEOQUCPK5EYLATL7BP32H6LQC
5KXP53PVBEYQ62IAETQK523SSCH4IYJXDR5OAX3Z4TPHS5XWG6VAC
P2ZCF3BBG523ZEOD6XQA4X5YEHBTWH3IM33YVHXP2SQ5POXZIH4QC
YMC3RKF4Z7DOHZNGG7INC343SXCTWOPK7ISD42I3WA3AZZNVBGIAC
JW2KRJHES33W7UTWZ6NDO4TLMK4EFU4HKZXBWR2UJOMPCCOTR4CQC
RLN5WLM2K5U6QBIBWBLK5XTDD3MPPXXXOVPUT33JKOQF3PHF6WZQC
L4UCVNVRFTHENDKDOY6X75LXIE2B7XIMSKGVKHBOXNID7RDTBQRAC
VXWDDKBETFFMU7LMGN4UGB74NNKXW456KFJMWWEVOTWH35NZZZHAC
HQ6VH4IA7QMX6LG44K5EJGDWAQJLSSJBX7URJG5URZCSNFJLOM4AC
W2KRIXSCRJPS6WDIYTHVF5IRMF3V5DWECRAWUPVTB7VZ6A2BLD4QC
H5BVKRORNXTCJKFXQPTFWDURKSUFW24CGSJXBGZCJUP4DHMSVDBQC
simple_god_message(" protects you from harm!");
return;
if (harm_protection_type hpt = god_protects_from_harm(you.religion))
{
simple_god_message(" protects you from harm!");
if (you.duration[DUR_PRAYER]
&& hpt == HPT_RELIABLE_PRAYING_PLUS_ANYTIME)
{
lose_piety(21 + random2(20));
}
return;
}
have_any = true;
cprintf("%s %s watches over you%s." EOL,
god_name(which_god).c_str(), how, when);
std::string buf = god_name(which_god);
buf += " ";
buf += how;
buf += " watches over you";
buf += when;
buf += ".";
_print_final_god_abil_desc(which_god, buf,
(hpt == HPT_RELIABLE_PRAYING_PLUS_ANYTIME) ?
ABIL_HARM_PROTECTION_II : ABIL_HARM_PROTECTION);
cprintf("You can call upon %s to destroy weapons lying on the "
"ground." EOL, god_name(which_god).c_str());
std::string buf = "You can call upon ";
buf += god_name(which_god);
buf += " to destroy weapons lying on the ground.";
_print_final_god_abil_desc(which_god, buf,
ABIL_ELYVILON_DESTROY_WEAPONS);
The healer god offers followers various means to heal themselves and others, including ones to rid their body from effects surpassing those of simple damage. Elyvilon will occasionally directly intervene to save a follower's life, and is almost certain to do so during prayer.
The healer god offers followers various means to heal themselves and others, including ones to rid their body from effects surpassing those of simple damage. Elyvilon will occasionally directly intervene to save a follower's life, and is almost certain to do so during prayer. At high enough piety, the latter becomes certain, but at a cost of piety.