Difference for server/spell_effect.c from version 1.29 to 1.30


version 1.29 version 1.30
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_spell_effect_c =   * static char *rcsid_spell_effect_c =
  *   "$Id: spell_effect.c,v 1.29 2000/11/19 07:33:30 peterm Exp $";   *   "$Id: spell_effect.c,v 1.30 2000/11/20 00:59:16 peterm Exp $";
  */   */
   
   
Line 1191
 
Line 1191
         else { new_draw_info(NDI_UNIQUE, 0,op,"You are no easier to look at."); force->stats.Cha=0; }          else { new_draw_info(NDI_UNIQUE, 0,op,"You are no easier to look at."); force->stats.Cha=0; }
   
     break;      break;
     case SP_IRONWOOD_SKIN:
   case SP_ARMOUR: {    case SP_ARMOUR: {
    /* peterm, modified so that it uses level-depend functions */     /* peterm, modified so that it uses level-depend functions */
     force->stats.ac=2+SP_level_dam_adjust(op,caster,spell_type);      force->stats.ac=2+SP_level_dam_adjust(op,caster,spell_type);
Line 3532
 
Line 3533
 }     }   
               
          
   int cast_cause_conflict(object *op, object *caster, archetype *spellarch,int type)
   {
     int i,j;
     int r;    /*  peterm:  added to make area of effect level dep.  */
     int level;
     object *tmp;
     if(op->type!=PLAYER)
       return 0;
     r=5 + SP_level_strength_adjust(op,caster,type);
     for(i= -r;i<r;i++)
       for(j= -r;j<r;j++) {
         if(out_of_map(op->map,op->x+i,op->y+j))
           continue;
         tmp=get_map_ob(op->map,op->x+i,op->y+j);
         while(tmp!=NULL&&(!QUERY_FLAG(tmp, FLAG_ALIVE)||tmp->type==PLAYER))
           tmp=tmp->above;
         if(tmp==NULL)
           continue;
         if(tmp->head) continue;  /* only hit the head with this one */
         
         /* OK, now set the monster on other monsters */
         level = MAX(1,SK_level(caster)/2);
         if(RANDOM()%level > tmp->level) {  /* successfully induced conflict */
    char buf[MAX_BUF];
    SET_FLAG(tmp,FLAG_BERSERK);
    if(tmp->name) {
      sprintf(buf,"You've clouded %s's mind.  He turns on his friends!",tmp->name);
      new_draw_info(NDI_RED,0,op,buf);
    }
         }
         
         
       }
     return 1;
   }


Legend:
line(s) removed in v.1.29 
line(s) changed
 line(s) added in v.1.30

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:49