dsI/bin/
dsI/extra/creremote/
dsI/extra/mingw/
dsI/extra/wolfpaw/
dsI/fluffos-2.7-ds2.018/
dsI/fluffos-2.7-ds2.018/ChangeLog.old/
dsI/fluffos-2.7-ds2.018/Win32/
dsI/fluffos-2.7-ds2.018/compat/
dsI/fluffos-2.7-ds2.018/compat/simuls/
dsI/fluffos-2.7-ds2.018/testsuite/
dsI/fluffos-2.7-ds2.018/testsuite/clone/
dsI/fluffos-2.7-ds2.018/testsuite/command/
dsI/fluffos-2.7-ds2.018/testsuite/data/
dsI/fluffos-2.7-ds2.018/testsuite/etc/
dsI/fluffos-2.7-ds2.018/testsuite/include/
dsI/fluffos-2.7-ds2.018/testsuite/inherit/
dsI/fluffos-2.7-ds2.018/testsuite/inherit/master/
dsI/fluffos-2.7-ds2.018/testsuite/log/
dsI/fluffos-2.7-ds2.018/testsuite/single/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/compiler/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/efuns/
dsI/fluffos-2.7-ds2.018/testsuite/single/tests/operators/
dsI/fluffos-2.7-ds2.018/testsuite/u/
dsI/fluffos-2.7-ds2.018/tmp/
dsI/lib/cfg/
dsI/lib/cmds/common/
dsI/lib/cmds/creators/include/
dsI/lib/cmds/creators/include/SCCS/
dsI/lib/daemon/services/
dsI/lib/doc/
dsI/lib/domains/Ylsrim/
dsI/lib/domains/Ylsrim/adm/
dsI/lib/domains/Ylsrim/armour/
dsI/lib/domains/Ylsrim/broken/
dsI/lib/domains/Ylsrim/fish/
dsI/lib/domains/Ylsrim/meal/
dsI/lib/domains/Ylsrim/npc/
dsI/lib/domains/Ylsrim/virtual/
dsI/lib/domains/Ylsrim/weapon/
dsI/lib/domains/default/creator/
dsI/lib/domains/default/etc/
dsI/lib/domains/default/room/
dsI/lib/lib/comp/
dsI/lib/lib/lvs/
dsI/lib/lib/user/
dsI/lib/lib/virtual/
dsI/lib/obj/
dsI/lib/obj/include/
dsI/lib/realms/
dsI/lib/save/kills/a/
dsI/lib/save/kills/b/
dsI/lib/save/kills/f/
dsI/lib/save/kills/m/
dsI/lib/save/kills/q/
dsI/lib/save/kills/r/
dsI/lib/secure/cfg/
dsI/lib/secure/cfg/classes/
dsI/lib/secure/cfg/races/SCCS/
dsI/lib/secure/cmds/creators/include/
dsI/lib/secure/cmds/players/
dsI/lib/secure/cmds/players/include/
dsI/lib/secure/daemon/include/
dsI/lib/secure/lib/
dsI/lib/secure/lib/include/
dsI/lib/secure/lib/net/
dsI/lib/secure/lib/net/include/
dsI/lib/secure/lib/std/
dsI/lib/secure/obj/
dsI/lib/secure/obj/include/
dsI/lib/secure/save/
dsI/lib/spells/
dsI/lib/verbs/admins/include/
dsI/lib/verbs/common/
dsI/lib/verbs/common/include/
dsI/lib/verbs/creators/
dsI/lib/verbs/creators/include/
dsI/lib/verbs/players/include/SCCS/
dsI/lib/verbs/rooms/
dsI/lib/verbs/rooms/include/
dsI/lib/www/
dsI/v22.2b14/
dsI/win32/
/*    /spells/resurrection.c
 *    From Dead Souls LPMud
 *    Created by BillGates of Money 961204
 *    Version: @(#) resurrection.c 1.2@(#)
 *    Last modified: 96/12/04
 */

#include <lib.h>
#include <magic.h>
#include <damage_types.h>

inherit LIB_SPELL;

static void create() {
    spell::create();
    SetSpell("resurrection");
    SetRules("", "LIV");
    SetSpellType(SPELL_OTHER);
    SetRequiredMagic(75);
    SetRequiredStamina(50);
    SetReligions("Lintokh", "Talima", "Monodeism");
    SetSkills(([ "faith" : 15 ]));
    SetMagicCost(10);    
    SetDifficulty(40);
    SetMorality(5);
    SetHelp("Syntax: <cast refresh>\n"
	    "        <cast refresh on LIVING>\n\n"
	    "This spell allows the caster to \"refresh\" his "
            "or her target's stamina.  The amount of stamina "
            "refreshed depends solely on the magical powers of "
            "the caster.\n\n");
}

varargs int CanCast(object who, int level, string limb, object array targs) {
    object target = targs[0];
    string targ_rel, my_rel;
    
    targ_rel = target->GetReligion(1);
    my_rel = who->GetReligion(1);
    if( !(int)target->GetUndead() ) {
      who->eventPrint((string)target->GetName() + " is not undead!");
      return 0;
    }
    if( (int)who->ClassMember("cleric") ) return 1;
    if( targ_rel != my_rel ) {
	send_messages("are", "$target_name $target_verb not of ",
		        "$agent_possessive faith.",
			  who, target);
	return 0;
    }
    return spell::CanCast(who, level, limb, targs);
}

varargs int eventCast(object who, int level, string limb, object array targs) {
    object target = targs[0];
    int chance = level + random((int)who->GetSkillLevel("healing"));
    if( level < (30 + random(30)) ) {
      target->AddStaminaPoints(-(int)target->GetStaminaPoints());
      who->AddStaminaPoints(-(int)who->GetStaminaPoints());
      who->eventPrint("You feel utterly drained as your "
              "spell of resurrection goes awry.", target);
      target->eventPrint("You feel a draining effect as " +
              possessive_noun(who) + " attempt to resurrect you "
              "goes awry.", who);
      environment(who)->eventPrint( (string)who->GetCapName()+" and "+
              (string)target->GetCapName()+" both double over in pain "
              "as "+possessive_noun(who)+" spell fails.",
              ({ who, target }) );      
      who->AddMagicPoints(-(int)who->GetMagicPoints());
      return 0;
    }

    send_messages(({ "bring" }), "$agent_name $agent_verb "
                                 "$target_name back from the dead.",
                                 who, target, environment(who));
    target->eventRevive();
      who->AddMagicPoints(-(int)who->GetMagicPoints());
    return 1;
}
 
int GetMagicCost() {
  return (int)this_player()->GetMagicPoints();
}