[CF-Devel] patch for generators to create special ability monsters

Norbert Irmer norbert.irmer at t-online.de
Wed Apr 17 10:34:27 CDT 2002


I created diff files, containing the changes i made to 'server/time.c'
and 'common/map.c'.

I also fixed a small bug, which made fog be swallowed by deep_swamp
in 'server/swamp.c'.

The code for replicating objects put in the inventory of generators seem
to work fine now.

(A funny detail: if you put fog in the inventory of a generator, the 
generator
starts producing the arch set by 'other_arch' when the fog is used up:)

I also included two maps for testing, 'test' and 'island'.


-------------- next part --------------
? Makefile
? common-map.c.diff
Index: map.c
===================================================================
RCS file: /cvsroot/crossfire/crossfire/common/map.c,v
retrieving revision 1.36
diff -c -5 -r1.36 map.c
*** map.c	6 Feb 2002 05:54:46 -0000	1.36
--- map.c	17 Apr 2002 15:14:22 -0000
***************
*** 446,455 ****
--- 446,458 ----
   */
  
  int arch_out_of_map(archetype *at,mapstruct *m,int x,int y) {
      archetype *tmp;
  
+     if(m==0)
+         return 1;
+ 	
      if(at==NULL)
  	return out_of_map(m,x,y);
  
      for(tmp=at;tmp!=NULL;tmp=tmp->more)
  	if(out_of_map(m,x+tmp->clone.x,y+tmp->clone.y))
-------------- next part --------------
Index: swamp.c
===================================================================
RCS file: /cvsroot/crossfire/crossfire/server/swamp.c,v
retrieving revision 1.5
diff -c -5 -r1.5 swamp.c
*** swamp.c	8 Feb 2002 20:19:37 -0000	1.5
--- swamp.c	17 Apr 2002 15:16:45 -0000
***************
*** 71,81 ****
  	      new_draw_info(NDI_UNIQUE, 0,above, "survived due to your woodsman skill.");
  	    }
  	  }
  	break;
        }
!     } else if (!QUERY_FLAG(above, FLAG_ALIVE)) {
        if (rndm(0, 2) == 0) decrease_ob(above);
      }
      above = nabove;
    }
  }
--- 71,81 ----
  	      new_draw_info(NDI_UNIQUE, 0,above, "survived due to your woodsman skill.");
  	    }
  	  }
  	break;
        }
!     } else if (!QUERY_FLAG(above, FLAG_ALIVE) && !QUERY_FLAG(above, FLAG_FLYING)) {
        if (rndm(0, 2) == 0) decrease_ob(above);
      }
      above = nabove;
    }
  }
-------------- next part --------------
Index: time.c
===================================================================
RCS file: /cvsroot/crossfire/crossfire/server/time.c,v
retrieving revision 1.40
diff -c -5 -r1.40 time.c
*** time.c	2 Jan 2002 06:53:23 -0000	1.40
--- time.c	17 Apr 2002 15:17:15 -0000
***************
*** 83,103 ****
    free_object(op);
  }
  
  void generate_monster(object *gen) {
    int i;
!   object *op,*head=NULL,*prev=NULL;
!   archetype *at=gen->other_arch;
  
    if(GENERATE_SPEED(gen)&&rndm(0, GENERATE_SPEED(gen)-1))
      return;
!   if(gen->other_arch==NULL) {
!     LOG(llevError,"Generator without other_arch: %s\n",gen->name);
!     return;
    }
!   i=find_free_spot(at,gen->map,gen->x,gen->y,1,9);
!   if (i==-1) return;
    while(at!=NULL) {
      op=arch_to_object(at);
      op->x=gen->x+freearr_x[i]+at->clone.x;
      op->y=gen->y+freearr_y[i]+at->clone.y;
      if(head!=NULL)
--- 83,127 ----
    free_object(op);
  }
  
  void generate_monster(object *gen) {
    int i;
!   object *op,*head=NULL,*prev=NULL,*gob;
!   archetype *at;
  
    if(GENERATE_SPEED(gen)&&rndm(0, GENERATE_SPEED(gen)-1))
      return;
! 
!   if(gen->inv!=NULL) {
!     gob=gen->inv; /* the generator inv just contains the head of the monster, */
!                   /* if it is mulipart */ 
!     i=find_free_spot(gob->arch,gen->map,gen->x,gen->y,1,9);
!     if (i==-1) return;
!     op=get_object();
!     copy_object(gob,op);
!     op->x=gen->x+freearr_x[i]+gob->arch->clone.x;
!     op->y=gen->y+freearr_y[i]+gob->arch->clone.y;
!     if (rndm(0, 9)) generate_artifact(op, gen->map->difficulty);
!     insert_ob_in_map(op,gen->map,gen,0);
!     if (QUERY_FLAG(op, FLAG_FREED)) return;
!     if(op->randomitems!=NULL)
!       create_treasure(op->randomitems,op,GT_APPLY,
!                       gen->map->difficulty,0);
!     head=op; 
!     prev=op;
!     at=gob->arch->more;
    }
!   else {
!     if(gen->other_arch==NULL) {
!       LOG(llevError,"Generator without other_arch or inv: %s\n",gen->name);
!       return;
!     }
!     at=gen->other_arch;
!     i=find_free_spot(at,gen->map,gen->x,gen->y,1,9);
!     if (i==-1) return;
!   }
! 
    while(at!=NULL) {
      op=arch_to_object(at);
      op->x=gen->x+freearr_x[i]+at->clone.x;
      op->y=gen->y+freearr_y[i]+at->clone.y;
      if(head!=NULL)
-------------- next part --------------
arch map
reset_timeout 7200
difficulty 2
width 16
height 16
enter_x 1
enter_y 1
msg
Creator: Gnat the Gnu
Email: 
     
     gnu at foo.bar
     
     
Date: Tue Apr 16 01:13:30 2002
endmsg
end
arch acid_pool
x 1
carrying 200000
arch big_elec
hp 1000
end
end
arch acid_pool
x 9
y 5
carrying 400000
arch fog
end
end
-------------- next part --------------
arch map
name island_treasure
reset_timeout 7200
difficulty 1
width 32
height 32
enter_x 1
enter_y 1
msg
Creator: CF Java Map Editor
Date:    4/11/2002
endmsg
end
arch flagstone
end
arch mine10
end
arch flagstone
y 1
end
arch mine3
y 1
end
arch flagstone
y 2
end
arch mine3
y 2
end
arch flagstone
y 3
end
arch mine3
y 3
end
arch flagstone
y 4
end
arch mine3
y 4
end
arch flagstone
y 5
end
arch mine3
y 5
end
arch flagstone
y 6
end
arch mine3
y 6
end
arch flagstone
y 7
end
arch mine3
y 7
end
arch flagstone
y 8
end
arch mine3
y 8
end
arch flagstone
y 9
end
arch mine3
y 9
end
arch flagstone
y 10
end
arch mine3
y 10
end
arch flagstone
y 11
end
arch mine3
y 11
end
arch flagstone
y 12
end
arch mine3
y 12
end
arch flagstone
y 13
end
arch mine3
y 13
end
arch flagstone
y 14
end
arch mine3
y 14
end
arch flagstone
y 15
end
arch mine3
y 15
end
arch flagstone
y 16
end
arch mine3
y 16
end
arch flagstone
y 17
end
arch mine3
y 17
end
arch flagstone
y 18
end
arch mine3
y 18
end
arch flagstone
y 19
end
arch mine3
y 19
end
arch flagstone
y 20
end
arch mine3
y 20
end
arch flagstone
y 21
end
arch mine3
y 21
end
arch flagstone
y 22
end
arch mine3
y 22
end
arch flagstone
y 23
end
arch mine3
y 23
end
arch flagstone
y 24
end
arch mine3
y 24
end
arch flagstone
y 25
end
arch mine3
y 25
end
arch flagstone
y 26
end
arch mine3
y 26
end
arch flagstone
y 27
end
arch mine4
y 27
end
arch flagstone
y 28
end
arch boulder
y 28
end
arch flagstone
y 29
end
arch boulder
y 29
end
arch flagstone
y 30
end
arch boulder
y 30
end
arch flagstone
y 31
end
arch mine4
y 31
end
arch flagstone
x 1
end
arch mine2
x 1
end
arch flagstone
x 1
y 1
end
arch flagstone
x 1
y 2
end
arch flagstone
x 1
y 3
end
arch flagstone
x 1
y 4
end
arch flagstone
x 1
y 5
end
arch flagstone
x 1
y 6
end
arch flagstone
x 1
y 7
end
arch g_worm
Con 90
hp 6000
exp 20000
x 1
y 7
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 1
y 8
end
arch flagstone
x 1
y 9
end
arch flagstone
x 1
y 10
end
arch flagstone
x 1
y 11
end
arch flagstone
x 1
y 12
end
arch flagstone
x 1
y 13
end
arch flagstone
x 1
y 14
end
arch flagstone
x 1
y 15
end
arch flagstone
x 1
y 16
end
arch flagstone
x 1
y 17
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 1
y 17
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 1
y 18
end
arch flagstone
x 1
y 19
end
arch flagstone
x 1
y 20
end
arch flagstone
x 1
y 21
end
arch flagstone
x 1
y 22
end
arch flagstone
x 1
y 23
end
arch flagstone
x 1
y 24
end
arch flagstone
x 1
y 25
end
arch flagstone
x 1
y 26
end
arch button_handle
x 1
y 26
connected 1
end
arch flagstone
x 1
y 27
end
arch mine2
x 1
y 27
end
arch flagstone
x 1
y 28
end
arch boulder
x 1
y 28
end
arch flagstone
x 1
y 29
end
arch flagstone
x 1
y 30
end
arch flagstone
x 1
y 31
end
arch mine2
x 1
y 31
end
arch flagstone
x 2
end
arch mine2
x 2
end
arch flagstone
x 2
y 1
end
arch flagstone
x 2
y 2
end
arch flagstone
x 2
y 3
end
arch flagstone
x 2
y 4
end
arch flagstone
x 2
y 5
end
arch flagstone
x 2
y 6
end
arch flagstone
x 2
y 7
end
arch flagstone
x 2
y 8
end
arch flagstone
x 2
y 9
end
arch flagstone
x 2
y 10
end
arch flagstone
x 2
y 11
end
arch flagstone
x 2
y 12
end
arch flagstone
x 2
y 13
end
arch flagstone
x 2
y 14
end
arch flagstone
x 2
y 15
end
arch flagstone
x 2
y 16
end
arch flagstone
x 2
y 17
end
arch flagstone
x 2
y 18
end
arch flagstone
x 2
y 19
end
arch flagstone
x 2
y 20
end
arch flagstone
x 2
y 21
end
arch flagstone
x 2
y 22
end
arch g_worm
Con 90
hp 6000
exp 20000
x 2
y 22
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 2
y 23
end
arch flagstone
x 2
y 24
end
arch flagstone
x 2
y 25
end
arch flagstone
x 2
y 26
end
arch flagstone
x 2
y 27
end
arch mine2
x 2
y 27
end
arch flagstone
x 2
y 28
end
arch flagstone
x 2
y 29
end
arch flagstone
x 2
y 30
end
arch boulder
x 2
y 30
end
arch flagstone
x 2
y 31
end
arch mine2
x 2
y 31
end
arch flagstone
x 3
end
arch mine2
x 3
end
arch flagstone
x 3
y 1
end
arch flagstone
x 3
y 2
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 3
y 2
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 3
y 3
end
arch flagstone
x 3
y 4
end
arch flagstone
x 3
y 5
end
arch flagstone
x 3
y 6
end
arch flagstone
x 3
y 7
end
arch flagstone
x 3
y 8
end
arch flagstone
x 3
y 9
end
arch flagstone
x 3
y 10
end
arch flagstone
x 3
y 11
end
arch flagstone
x 3
y 12
end
arch flagstone
x 3
y 13
end
arch flagstone
x 3
y 14
end
arch flagstone
x 3
y 15
end
arch flagstone
x 3
y 16
end
arch flagstone
x 3
y 17
end
arch flagstone
x 3
y 18
end
arch flagstone
x 3
y 19
end
arch pentagram_111
x 3
y 19
end
arch flagstone
x 3
y 20
end
arch flagstone
x 3
y 21
end
arch flagstone
x 3
y 22
end
arch flagstone
x 3
y 23
end
arch flagstone
x 3
y 24
end
arch flagstone
x 3
y 25
end
arch flagstone
x 3
y 26
end
arch flagstone
x 3
y 27
end
arch mine2
x 3
y 27
end
arch flagstone
x 3
y 28
end
arch boulder
x 3
y 28
end
arch flagstone
x 3
y 29
end
arch boulder
x 3
y 29
end
arch flagstone
x 3
y 30
end
arch flagstone
x 3
y 31
end
arch mine2
x 3
y 31
end
arch flagstone
x 4
end
arch mine2
x 4
end
arch flagstone
x 4
y 1
end
arch flagstone
x 4
y 2
end
arch flagstone
x 4
y 3
end
arch flagstone
x 4
y 4
end
arch mine10
x 4
y 4
end
arch flagstone
x 4
y 5
end
arch mine11
x 4
y 5
end
arch flagstone
x 4
y 6
end
arch mine11
x 4
y 6
end
arch flagstone
x 4
y 7
end
arch mine11
x 4
y 7
end
arch flagstone
x 4
y 8
end
arch mine11
x 4
y 8
end
arch flagstone
x 4
y 9
end
arch mine11
x 4
y 9
end
arch flagstone
x 4
y 10
end
arch mine11
x 4
y 10
end
arch flagstone
x 4
y 11
end
arch mine11
x 4
y 11
end
arch flagstone
x 4
y 12
end
arch mine11
x 4
y 12
end
arch flagstone
x 4
y 13
end
arch mine11
x 4
y 13
end
arch flagstone
x 4
y 14
end
arch mine11
x 4
y 14
end
arch flagstone
x 4
y 15
end
arch mine11
x 4
y 15
end
arch flagstone
x 4
y 16
end
arch mine4
x 4
y 16
end
arch flagstone
x 4
y 17
end
arch flagstone
x 4
y 18
end
arch flagstone
x 4
y 19
end
arch flagstone
x 4
y 20
end
arch flagstone
x 4
y 21
end
arch flagstone
x 4
y 22
end
arch flagstone
x 4
y 23
end
arch flagstone
x 4
y 24
end
arch big_elec
Str 90
Dex 65
Con 90
Pow 75
Int 30
hp 10000
maxhp 8000
sp 300
maxsp 300
dam 60
wc -50
ac -40
x 4
y 24
level 90
resist_magic 50
resist_fire 50
resist_acid 100
arch ability_lightning
sp 88
end
end
arch flagstone
x 4
y 25
end
arch flagstone
x 4
y 26
end
arch flagstone
x 4
y 27
end
arch mine2
x 4
y 27
end
arch flagstone
x 4
y 28
end
arch flagstone
x 4
y 29
end
arch boulder
x 4
y 29
end
arch flagstone
x 4
y 30
end
arch flagstone
x 4
y 31
end
arch mine2
x 4
y 31
end
arch flagstone
x 5
end
arch mine2
x 5
end
arch flagstone
x 5
y 1
end
arch flagstone
x 5
y 2
end
arch flagstone
x 5
y 3
end
arch flagstone
x 5
y 4
end
arch mine16
x 5
y 4
end
arch flagstone
x 5
y 5
end
arch mine17
x 5
y 5
end
arch flagstone
x 5
y 6
end
arch mine14
x 5
y 6
end
arch flagstone
x 5
y 7
end
arch mine14
x 5
y 7
end
arch flagstone
x 5
y 8
end
arch mine14
x 5
y 8
end
arch flagstone
x 5
y 9
end
arch mine14
x 5
y 9
end
arch flagstone
x 5
y 10
end
arch mine14
x 5
y 10
end
arch flagstone
x 5
y 11
end
arch mine14
x 5
y 11
end
arch flagstone
x 5
y 12
end
arch mine14
x 5
y 12
end
arch flagstone
x 5
y 13
end
arch mine14
x 5
y 13
end
arch flagstone
x 5
y 14
end
arch mine14
x 5
y 14
end
arch flagstone
x 5
y 15
end
arch mine17
x 5
y 15
end
arch flagstone
x 5
y 16
end
arch mine13
x 5
y 16
end
arch flagstone
x 5
y 17
end
arch flagstone
x 5
y 18
end
arch flagstone
x 5
y 19
end
arch flagstone
x 5
y 20
end
arch flagstone
x 5
y 21
end
arch flagstone
x 5
y 22
end
arch flagstone
x 5
y 23
end
arch flagstone
x 5
y 24
end
arch flagstone
x 5
y 25
end
arch flagstone
x 5
y 26
end
arch flagstone
x 5
y 27
end
arch mine2
x 5
y 27
end
arch flagstone
x 5
y 28
end
arch flagstone
x 5
y 29
end
arch flagstone
x 5
y 30
end
arch boulder
x 5
y 30
end
arch flagstone
x 5
y 31
end
arch mine2
x 5
y 31
end
arch flagstone
x 6
end
arch mine2
x 6
end
arch flagstone
x 6
y 1
end
arch flagstone
x 6
y 2
end
arch flagstone
x 6
y 3
end
arch flagstone
x 6
y 4
end
arch mine16
x 6
y 4
end
arch flagstone
x 6
y 5
end
arch mine13
x 6
y 5
end
arch flagstone
x 6
y 6
end
arch flagstone
x 6
y 7
end
arch flagstone
x 6
y 8
end
arch flagstone
x 6
y 9
end
arch flagstone
x 6
y 10
end
arch flagstone
x 6
y 11
end
arch flagstone
x 6
y 12
end
arch flagstone
x 6
y 13
end
arch flagstone
x 6
y 14
end
arch flagstone
x 6
y 15
end
arch mine16
x 6
y 15
end
arch flagstone
x 6
y 16
end
arch mine13
x 6
y 16
end
arch flagstone
x 6
y 17
end
arch flagstone
x 6
y 18
end
arch g_worm
Con 90
hp 6000
exp 20000
x 6
y 18
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 6
y 19
end
arch flagstone
x 6
y 20
end
arch flagstone
x 6
y 21
end
arch flagstone
x 6
y 22
end
arch flagstone
x 6
y 23
end
arch flagstone
x 6
y 24
end
arch flagstone
x 6
y 25
end
arch flagstone
x 6
y 26
end
arch flagstone
x 6
y 27
end
arch mine2
x 6
y 27
end
arch flagstone
x 6
y 28
end
arch boulder
x 6
y 28
end
arch flagstone
x 6
y 29
end
arch flagstone
x 6
y 30
end
arch flagstone
x 6
y 31
end
arch mine2
x 6
y 31
end
arch flagstone
x 7
end
arch mine2
x 7
end
arch flagstone
x 7
y 1
end
arch flagstone
x 7
y 2
end
arch flagstone
x 7
y 3
end
arch flagstone
x 7
y 4
end
arch mine16
x 7
y 4
end
arch flagstone
x 7
y 5
end
arch mine13
x 7
y 5
end
arch flagstone
x 7
y 6
end
arch flagstone
x 7
y 7
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 7
y 7
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 7
y 8
end
arch flagstone
x 7
y 9
end
arch flagstone
x 7
y 10
end
arch flagstone
x 7
y 11
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 7
y 11
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 7
y 12
end
arch flagstone
x 7
y 13
end
arch flagstone
x 7
y 14
end
arch flagstone
x 7
y 15
end
arch mine16
x 7
y 15
end
arch flagstone
x 7
y 16
end
arch mine13
x 7
y 16
end
arch flagstone
x 7
y 17
end
arch flagstone
x 7
y 18
end
arch flagstone
x 7
y 19
end
arch flagstone
x 7
y 20
end
arch mine8
x 7
y 20
end
arch flagstone
x 7
y 21
end
arch mine3
x 7
y 21
end
arch flagstone
x 7
y 22
end
arch mine3
x 7
y 22
end
arch flagstone
x 7
y 23
end
arch mine3
x 7
y 23
end
arch flagstone
x 7
y 24
end
arch mine3
x 7
y 24
end
arch flagstone
x 7
y 25
end
arch mine3
x 7
y 25
end
arch flagstone
x 7
y 26
end
arch mine3
x 7
y 26
end
arch flagstone
x 7
y 27
end
arch mine12
x 7
y 27
end
arch flagstone
x 7
y 28
end
arch flagstone
x 7
y 29
end
arch boulder
x 7
y 29
end
arch flagstone
x 7
y 30
end
arch flagstone
x 7
y 31
end
arch mine2
x 7
y 31
end
arch flagstone
x 8
end
arch mine2
x 8
end
arch flagstone
x 8
y 1
end
arch flagstone
x 8
y 2
end
arch flagstone
x 8
y 3
end
arch flagstone
x 8
y 4
end
arch mine16
x 8
y 4
end
arch flagstone
x 8
y 5
end
arch mine13
x 8
y 5
end
arch flagstone
x 8
y 6
end
arch flagstone
x 8
y 7
end
arch flagstone
x 8
y 8
end
arch flagstone
x 8
y 9
end
arch flagstone
x 8
y 10
end
arch flagstone
x 8
y 10
end
arch flagstone
x 8
y 11
end
arch flagstone
x 8
y 11
end
arch flagstone
x 8
y 12
end
arch flagstone
x 8
y 13
end
arch flagstone
x 8
y 14
end
arch flagstone
x 8
y 15
end
arch mine16
x 8
y 15
end
arch flagstone
x 8
y 16
end
arch mine13
x 8
y 16
end
arch flagstone
x 8
y 17
end
arch flagstone
x 8
y 18
end
arch flagstone
x 8
y 19
end
arch flagstone
x 8
y 20
end
arch flagstone
x 8
y 21
end
arch flagstone
x 8
y 22
end
arch flagstone
x 8
y 23
end
arch flagstone
x 8
y 24
end
arch flagstone
x 8
y 25
end
arch boulder
x 8
y 25
end
arch flagstone
x 8
y 26
end
arch flagstone
x 8
y 27
end
arch flagstone
x 8
y 28
end
arch flagstone
x 8
y 29
end
arch flagstone
x 8
y 30
end
arch flagstone
x 8
y 31
end
arch mine2
x 8
y 31
end
arch flagstone
x 9
end
arch mine2
x 9
end
arch flagstone
x 9
y 1
end
arch flagstone
x 9
y 2
end
arch flagstone
x 9
y 3
end
arch flagstone
x 9
y 4
end
arch mine16
x 9
y 4
end
arch flagstone
x 9
y 5
end
arch mine13
x 9
y 5
end
arch flagstone
x 9
y 6
end
arch flagstone
x 9
y 7
end
arch flagstone
x 9
y 8
end
arch flagstone
x 9
y 9
end
arch flagstone
x 9
y 9
end
arch flagstone
x 9
y 10
end
arch flagstone
x 9
y 10
end
arch flagstone
x 9
y 10
end
arch flagstone
x 9
y 11
end
arch flagstone
x 9
y 11
end
arch flagstone
x 9
y 12
end
arch flagstone
x 9
y 13
end
arch flagstone
x 9
y 14
end
arch flagstone
x 9
y 15
end
arch mine16
x 9
y 15
end
arch flagstone
x 9
y 16
end
arch mine13
x 9
y 16
end
arch flagstone
x 9
y 17
end
arch flagstone
x 9
y 18
end
arch flagstone
x 9
y 19
end
arch flagstone
x 9
y 20
end
arch flagstone
x 9
y 21
end
arch flagstone
x 9
y 22
end
arch flagstone
x 9
y 23
end
arch flagstone
x 9
y 24
end
arch flagstone
x 9
y 25
end
arch flagstone
x 9
y 26
end
arch flagstone
x 9
y 27
end
arch flagstone
x 9
y 28
end
arch flagstone
x 9
y 29
end
arch flagstone
x 9
y 30
end
arch boulder
x 9
y 30
end
arch flagstone
x 9
y 31
end
arch mine2
x 9
y 31
end
arch flagstone
x 10
end
arch mine2
x 10
end
arch flagstone
x 10
y 1
end
arch boulder
x 10
y 1
end
arch flagstone
x 10
y 2
end
arch flagstone
x 10
y 3
end
arch flagstone
x 10
y 4
end
arch mine9
x 10
y 4
end
arch flagstone
x 10
y 5
end
arch mine12
x 10
y 5
end
arch flagstone
x 10
y 6
end
arch flagstone
x 10
y 7
end
arch big_elec
Str 90
Dex 65
Con 90
Pow 75
Int 30
hp 10000
maxhp 8000
sp 300
maxsp 300
dam 60
wc -50
ac -40
x 10
y 7
level 90
resist_magic 50
resist_fire 50
resist_acid 100
arch ability_lightning
sp 88
end
end
arch flagstone
x 10
y 8
end
arch flagstone
x 10
y 9
end
arch flagstone
x 10
y 9
end
arch flagstone
x 10
y 10
end
arch flagstone
x 10
y 10
end
arch flagstone
x 10
y 11
end
arch flagstone
x 10
y 12
end
arch g_worm
Con 90
hp 6000
exp 20000
x 10
y 12
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 10
y 13
end
arch flagstone
x 10
y 14
end
arch flagstone
x 10
y 15
end
arch mine16
x 10
y 15
end
arch flagstone
x 10
y 16
end
arch mine13
x 10
y 16
end
arch flagstone
x 10
y 17
end
arch flagstone
x 10
y 18
end
arch flagstone
x 10
y 19
end
arch flagstone
x 10
y 20
end
arch flagstone
x 10
y 21
end
arch flagstone
x 10
y 22
end
arch flagstone
x 10
y 23
end
arch flagstone
x 10
y 24
end
arch flagstone
x 10
y 25
end
arch flagstone
x 10
y 26
end
arch flagstone
x 10
y 27
end
arch flagstone
x 10
y 28
end
arch flagstone
x 10
y 29
end
arch flagstone
x 10
y 30
end
arch flagstone
x 10
y 31
end
arch mine2
x 10
y 31
end
arch flagstone
x 11
end
arch stair_up_1
slaying /city/city
hp 6
sp 14
x 11
end
arch boulder
x 11
end
arch flagstone
x 11
y 1
end
arch flagstone
x 11
y 2
end
arch flagstone
x 11
y 3
end
arch flagstone
x 11
y 4
end
arch gate_closed_1
x 11
y 4
speed 0.500000
connected 1
end
arch flagstone
x 11
y 5
end
arch gate_closed_1
x 11
y 5
speed 0.500000
connected 2
end
arch flagstone
x 11
y 6
end
arch flagstone
x 11
y 7
end
arch flagstone
x 11
y 8
end
arch flagstone
x 11
y 9
end
arch flagstone
x 11
y 10
end
arch flagstone
x 11
y 11
end
arch flagstone
x 11
y 12
end
arch flagstone
x 11
y 13
end
arch flagstone
x 11
y 14
end
arch brazier
x 11
y 14
end
arch flagstone
x 11
y 15
end
arch mine16
x 11
y 15
end
arch flagstone
x 11
y 16
end
arch mine17
x 11
y 16
end
arch flagstone
x 11
y 17
end
arch mine3
x 11
y 17
end
arch flagstone
x 11
y 18
end
arch mine3
x 11
y 18
end
arch flagstone
x 11
y 19
end
arch mine3
x 11
y 19
end
arch flagstone
x 11
y 20
end
arch mine3
x 11
y 20
end
arch flagstone
x 11
y 21
end
arch mine3
x 11
y 21
end
arch flagstone
x 11
y 22
end
arch mine3
x 11
y 22
end
arch flagstone
x 11
y 23
end
arch mine3
x 11
y 23
end
arch flagstone
x 11
y 24
end
arch mine3
x 11
y 24
end
arch flagstone
x 11
y 25
end
arch mine3
x 11
y 25
end
arch flagstone
x 11
y 26
end
arch mine3
x 11
y 26
end
arch flagstone
x 11
y 27
end
arch mine4
x 11
y 27
end
arch flagstone
x 11
y 28
end
arch flagstone
x 11
y 29
end
arch flagstone
x 11
y 30
end
arch flagstone
x 11
y 31
end
arch mine2
x 11
y 31
end
arch flagstone
x 12
end
arch stair_up_1
slaying /city/city
hp 6
sp 14
x 12
end
arch flagstone
x 12
y 1
end
arch flagstone
x 12
y 2
end
arch flagstone
x 12
y 3
end
arch flagstone
x 12
y 4
end
arch gate_closed_1
x 12
y 4
speed 0.500000
connected 1
end
arch flagstone
x 12
y 5
end
arch gate_closed_1
x 12
y 5
speed 0.500000
connected 2
end
arch flagstone
x 12
y 6
end
arch flagstone
x 12
y 7
end
arch flagstone
x 12
y 8
end
arch flagstone
x 12
y 9
end
arch flagstone
x 12
y 10
end
arch pentagram_111
slaying /cthulhu/island
hp 28
sp 14
x 12
y 10
connected 3
end
arch flagstone
x 12
y 11
end
arch flagstone
x 12
y 12
end
arch flagstone
x 12
y 13
end
arch flagstone
x 12
y 13
end
arch flagstone
x 12
y 14
end
arch flagstone
x 12
y 15
end
arch mine16
x 12
y 15
end
arch flagstone
x 12
y 16
end
arch mine13
x 12
y 16
end
arch flagstone
x 12
y 17
end
arch flagstone
x 12
y 18
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 12
y 18
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 12
y 19
end
arch flagstone
x 12
y 20
end
arch flagstone
x 12
y 21
end
arch flagstone
x 12
y 22
end
arch flagstone
x 12
y 23
end
arch flagstone
x 12
y 24
end
arch flagstone
x 12
y 25
end
arch flagstone
x 12
y 26
end
arch button_handle
x 12
y 26
connected 2
end
arch flagstone
x 12
y 27
end
arch mine2
x 12
y 27
end
arch flagstone
x 12
y 28
end
arch flagstone
x 12
y 29
end
arch flagstone
x 12
y 30
end
arch flagstone
x 12
y 31
end
arch mine2
x 12
y 31
end
arch flagstone
x 13
end
arch stair_up_1
slaying /city/city
hp 6
sp 14
x 13
end
arch flagstone
x 13
y 1
end
arch flagstone
x 13
y 2
end
arch flagstone
x 13
y 3
end
arch flagstone
x 13
y 4
end
arch gate_closed_1
x 13
y 4
speed 0.500000
connected 1
end
arch flagstone
x 13
y 5
end
arch gate_closed_1
x 13
y 5
speed 0.500000
connected 2
end
arch flagstone
x 13
y 6
end
arch flagstone
x 13
y 7
end
arch flagstone
x 13
y 8
end
arch flagstone
x 13
y 9
end
arch flagstone
x 13
y 10
end
arch creator
x 13
y 11
connected 3
lifesave 1
end
arch flagstone
x 13
y 11
end
arch flagstone
x 13
y 12
end
arch flagstone
x 13
y 13
end
arch flagstone
x 13
y 13
end
arch flagstone
x 13
y 14
end
arch altar_trigger
slaying Giant Worm's eye
food 1
x 13
y 14
connected 3
end
arch flagstone
x 13
y 15
end
arch mine16
x 13
y 15
end
arch flagstone
x 13
y 16
end
arch mine13
x 13
y 16
end
arch flagstone
x 13
y 17
end
arch flagstone
x 13
y 18
end
arch flagstone
x 13
y 19
end
arch flagstone
x 13
y 20
end
arch flagstone
x 13
y 21
end
arch flagstone
x 13
y 22
end
arch g_worm
Con 90
hp 6000
exp 20000
x 13
y 22
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 13
y 23
end
arch flagstone
x 13
y 24
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 13
y 24
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 13
y 25
end
arch flagstone
x 13
y 26
end
arch flagstone
x 13
y 27
end
arch mine2
x 13
y 27
end
arch flagstone
x 13
y 28
end
arch flagstone
x 13
y 29
end
arch flagstone
x 13
y 30
end
arch flagstone
x 13
y 31
end
arch mine2
x 13
y 31
end
arch flagstone
x 14
end
arch stair_up_1
slaying /city/city
hp 6
sp 14
x 14
end
arch boulder
x 14
end
arch flagstone
x 14
y 1
end
arch flagstone
x 14
y 2
end
arch flagstone
x 14
y 3
end
arch flagstone
x 14
y 4
end
arch gate_closed_1
x 14
y 4
speed 0.500000
connected 1
end
arch flagstone
x 14
y 5
end
arch gate_closed_1
x 14
y 5
speed 0.500000
connected 2
end
arch flagstone
x 14
y 6
end
arch flagstone
x 14
y 7
end
arch flagstone
x 14
y 8
end
arch flagstone
x 14
y 9
end
arch flagstone
x 14
y 10
end
arch flagstone
x 14
y 11
end
arch flagstone
x 14
y 12
end
arch flagstone
x 14
y 13
end
arch flagstone
x 14
y 13
end
arch flagstone
x 14
y 14
end
arch flagstone
x 14
y 15
end
arch mine16
x 14
y 15
end
arch flagstone
x 14
y 16
end
arch mine13
x 14
y 16
end
arch flagstone
x 14
y 17
end
arch flagstone
x 14
y 18
end
arch flagstone
x 14
y 19
end
arch flagstone
x 14
y 20
end
arch flagstone
x 14
y 21
end
arch flagstone
x 14
y 22
end
arch flagstone
x 14
y 23
end
arch flagstone
x 14
y 24
end
arch flagstone
x 14
y 25
end
arch flagstone
x 14
y 26
end
arch flagstone
x 14
y 27
end
arch mine2
x 14
y 27
end
arch flagstone
x 14
y 28
end
arch flagstone
x 14
y 29
end
arch flagstone
x 14
y 30
end
arch flagstone
x 14
y 31
end
arch mine2
x 14
y 31
end
arch flagstone
x 15
end
arch stair_up_1
slaying /city/city
hp 6
sp 14
x 15
end
arch boulder
x 15
end
arch flagstone
x 15
y 1
end
arch flagstone
x 15
y 2
end
arch flagstone
x 15
y 3
end
arch flagstone
x 15
y 4
end
arch gate_closed_1
x 15
y 4
speed 0.500000
connected 1
end
arch flagstone
x 15
y 5
end
arch gate_closed_1
x 15
y 5
speed 0.500000
connected 2
end
arch flagstone
x 15
y 6
end
arch flagstone
x 15
y 7
end
arch flagstone
x 15
y 8
end
arch flagstone
x 15
y 9
end
arch flagstone
x 15
y 10
end
arch flagstone
x 15
y 11
end
arch flagstone
x 15
y 12
end
arch flagstone
x 15
y 12
end
arch flagstone
x 15
y 13
end
arch flagstone
x 15
y 13
end
arch flagstone
x 15
y 14
end
arch brazier
x 15
y 14
end
arch flagstone
x 15
y 15
end
arch mine16
x 15
y 15
end
arch flagstone
x 15
y 16
end
arch mine13
x 15
y 16
end
arch flagstone
x 15
y 17
end
arch flagstone
x 15
y 18
end
arch big_elec
Str 90
Dex 65
Con 90
Pow 75
Int 30
hp 10000
maxhp 8000
sp 300
maxsp 300
dam 60
wc -50
ac -40
x 15
y 18
level 90
resist_magic 50
resist_fire 50
resist_acid 100
arch ability_lightning
sp 88
end
end
arch flagstone
x 15
y 19
end
arch flagstone
x 15
y 20
end
arch flagstone
x 15
y 21
end
arch flagstone
x 15
y 22
end
arch flagstone
x 15
y 23
end
arch flagstone
x 15
y 24
end
arch flagstone
x 15
y 25
end
arch flagstone
x 15
y 26
end
arch flagstone
x 15
y 27
end
arch mine2
x 15
y 27
end
arch flagstone
x 15
y 28
end
arch flagstone
x 15
y 29
end
arch flagstone
x 15
y 30
end
arch flagstone
x 15
y 31
end
arch mine2
x 15
y 31
end
arch flagstone
x 16
end
arch mine2
x 16
end
arch flagstone
x 16
y 1
end
arch flagstone
x 16
y 2
end
arch flagstone
x 16
y 3
end
arch flagstone
x 16
y 4
end
arch mine10
x 16
y 4
end
arch flagstone
x 16
y 5
end
arch mine4
x 16
y 5
end
arch flagstone
x 16
y 6
end
arch big_elec
Str 90
Dex 65
Con 90
Pow 75
Int 30
hp 10000
maxhp 8000
sp 300
maxsp 300
dam 60
wc -50
ac -40
x 16
y 6
level 90
resist_magic 50
resist_fire 50
resist_acid 100
arch ability_lightning
sp 88
end
end
arch flagstone
x 16
y 7
end
arch flagstone
x 16
y 8
end
arch flagstone
x 16
y 9
end
arch flagstone
x 16
y 10
end
arch flagstone
x 16
y 11
end
arch flagstone
x 16
y 12
end
arch flagstone
x 16
y 13
end
arch flagstone
x 16
y 14
end
arch flagstone
x 16
y 15
end
arch mine16
x 16
y 15
end
arch flagstone
x 16
y 16
end
arch mine13
x 16
y 16
end
arch flagstone
x 16
y 17
end
arch flagstone
x 16
y 18
end
arch flagstone
x 16
y 19
end
arch flagstone
x 16
y 20
end
arch flagstone
x 16
y 21
end
arch flagstone
x 16
y 22
end
arch pentagram_111
x 16
y 22
end
arch flagstone
x 16
y 23
end
arch flagstone
x 16
y 24
end
arch flagstone
x 16
y 25
end
arch flagstone
x 16
y 26
end
arch flagstone
x 16
y 27
end
arch mine2
x 16
y 27
end
arch flagstone
x 16
y 28
end
arch flagstone
x 16
y 29
end
arch flagstone
x 16
y 30
end
arch flagstone
x 16
y 31
end
arch mine2
x 16
y 31
end
arch flagstone
x 17
end
arch mine2
x 17
end
arch flagstone
x 17
y 1
end
arch flagstone
x 17
y 2
end
arch flagstone
x 17
y 3
end
arch flagstone
x 17
y 4
end
arch mine16
x 17
y 4
end
arch flagstone
x 17
y 5
end
arch mine13
x 17
y 5
end
arch flagstone
x 17
y 6
end
arch flagstone
x 17
y 7
end
arch flagstone
x 17
y 8
end
arch flagstone
x 17
y 9
end
arch flagstone
x 17
y 10
end
arch g_worm
Con 90
hp 6000
exp 20000
x 17
y 10
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 17
y 11
end
arch flagstone
x 17
y 12
end
arch flagstone
x 17
y 13
end
arch flagstone
x 17
y 14
end
arch flagstone
x 17
y 15
end
arch mine16
x 17
y 15
end
arch flagstone
x 17
y 16
end
arch mine13
x 17
y 16
end
arch flagstone
x 17
y 17
end
arch flagstone
x 17
y 18
end
arch flagstone
x 17
y 19
end
arch flagstone
x 17
y 20
end
arch flagstone
x 17
y 21
end
arch flagstone
x 17
y 22
end
arch flagstone
x 17
y 23
end
arch flagstone
x 17
y 24
end
arch flagstone
x 17
y 25
end
arch flagstone
x 17
y 26
end
arch flagstone
x 17
y 27
end
arch mine2
x 17
y 27
end
arch flagstone
x 17
y 28
end
arch flagstone
x 17
y 29
end
arch g_worm
Con 90
hp 6000
exp 20000
x 17
y 29
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 17
y 30
end
arch flagstone
x 17
y 31
end
arch mine2
x 17
y 31
end
arch flagstone
x 18
end
arch mine2
x 18
end
arch flagstone
x 18
y 1
end
arch flagstone
x 18
y 2
end
arch flagstone
x 18
y 3
end
arch flagstone
x 18
y 4
end
arch mine16
x 18
y 4
end
arch flagstone
x 18
y 5
end
arch mine13
x 18
y 5
end
arch flagstone
x 18
y 6
end
arch flagstone
x 18
y 7
end
arch flagstone
x 18
y 8
end
arch flagstone
x 18
y 9
end
arch flagstone
x 18
y 10
end
arch flagstone
x 18
y 11
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 18
y 11
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 18
y 12
end
arch flagstone
x 18
y 13
end
arch flagstone
x 18
y 14
end
arch flagstone
x 18
y 15
end
arch mine16
x 18
y 15
end
arch flagstone
x 18
y 16
end
arch mine13
x 18
y 16
end
arch flagstone
x 18
y 17
end
arch flagstone
x 18
y 18
end
arch g_worm
Con 90
hp 6000
exp 20000
x 18
y 18
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 18
y 19
end
arch flagstone
x 18
y 20
end
arch flagstone
x 18
y 21
end
arch flagstone
x 18
y 22
end
arch flagstone
x 18
y 23
end
arch flagstone
x 18
y 24
end
arch flagstone
x 18
y 25
end
arch flagstone
x 18
y 26
end
arch flagstone
x 18
y 27
end
arch mine2
x 18
y 27
end
arch flagstone
x 18
y 28
end
arch flagstone
x 18
y 29
end
arch flagstone
x 18
y 30
end
arch flagstone
x 18
y 31
end
arch mine2
x 18
y 31
end
arch flagstone
x 19
end
arch mine2
x 19
end
arch flagstone
x 19
y 1
end
arch flagstone
x 19
y 2
end
arch g_worm
Con 90
hp 6000
exp 20000
x 19
y 2
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 19
y 3
end
arch flagstone
x 19
y 4
end
arch mine16
x 19
y 4
end
arch flagstone
x 19
y 5
end
arch mine13
x 19
y 5
end
arch flagstone
x 19
y 6
end
arch flagstone
x 19
y 7
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 19
y 7
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 19
y 8
end
arch flagstone
x 19
y 9
end
arch flagstone
x 19
y 10
end
arch flagstone
x 19
y 11
end
arch flagstone
x 19
y 12
end
arch flagstone
x 19
y 13
end
arch flagstone
x 19
y 14
end
arch flagstone
x 19
y 15
end
arch mine16
x 19
y 15
end
arch flagstone
x 19
y 16
end
arch mine13
x 19
y 16
end
arch flagstone
x 19
y 17
end
arch flagstone
x 19
y 18
end
arch flagstone
x 19
y 19
end
arch flagstone
x 19
y 20
end
arch flagstone
x 19
y 21
end
arch flagstone
x 19
y 22
end
arch flagstone
x 19
y 23
end
arch flagstone
x 19
y 24
end
arch flagstone
x 19
y 25
end
arch flagstone
x 19
y 26
end
arch flagstone
x 19
y 27
end
arch mine2
x 19
y 27
end
arch flagstone
x 19
y 28
end
arch flagstone
x 19
y 29
end
arch flagstone
x 19
y 30
end
arch flagstone
x 19
y 31
end
arch mine2
x 19
y 31
end
arch flagstone
x 20
end
arch mine2
x 20
end
arch flagstone
x 20
y 1
end
arch flagstone
x 20
y 2
end
arch flagstone
x 20
y 3
end
arch flagstone
x 20
y 4
end
arch mine16
x 20
y 4
end
arch flagstone
x 20
y 5
end
arch mine13
x 20
y 5
end
arch flagstone
x 20
y 6
end
arch flagstone
x 20
y 7
end
arch flagstone
x 20
y 8
end
arch flagstone
x 20
y 9
end
arch flagstone
x 20
y 10
end
arch flagstone
x 20
y 11
end
arch flagstone
x 20
y 12
end
arch flagstone
x 20
y 13
end
arch flagstone
x 20
y 14
end
arch flagstone
x 20
y 15
end
arch mine16
x 20
y 15
end
arch flagstone
x 20
y 16
end
arch mine13
x 20
y 16
end
arch flagstone
x 20
y 17
end
arch flagstone
x 20
y 18
end
arch flagstone
x 20
y 19
end
arch flagstone
x 20
y 20
end
arch flagstone
x 20
y 21
end
arch flagstone
x 20
y 22
end
arch flagstone
x 20
y 23
end
arch flagstone
x 20
y 24
end
arch flagstone
x 20
y 25
end
arch flagstone
x 20
y 26
end
arch flagstone
x 20
y 27
end
arch mine2
x 20
y 27
end
arch flagstone
x 20
y 28
end
arch flagstone
x 20
y 29
end
arch flagstone
x 20
y 30
end
arch flagstone
x 20
y 31
end
arch mine2
x 20
y 31
end
arch flagstone
x 21
end
arch mine2
x 21
end
arch flagstone
x 21
y 1
end
arch flagstone
x 21
y 2
end
arch flagstone
x 21
y 3
end
arch flagstone
x 21
y 4
end
arch mine16
x 21
y 4
end
arch flagstone
x 21
y 5
end
arch mine17
x 21
y 5
end
arch flagstone
x 21
y 6
end
arch mine11
x 21
y 6
end
arch flagstone
x 21
y 7
end
arch mine11
x 21
y 7
end
arch flagstone
x 21
y 8
end
arch mine11
x 21
y 8
end
arch flagstone
x 21
y 9
end
arch mine11
x 21
y 9
end
arch flagstone
x 21
y 10
end
arch mine11
x 21
y 10
end
arch flagstone
x 21
y 11
end
arch mine11
x 21
y 11
end
arch flagstone
x 21
y 12
end
arch mine11
x 21
y 12
end
arch flagstone
x 21
y 13
end
arch mine11
x 21
y 13
end
arch flagstone
x 21
y 14
end
arch mine11
x 21
y 14
end
arch flagstone
x 21
y 15
end
arch mine17
x 21
y 15
end
arch flagstone
x 21
y 16
end
arch mine13
x 21
y 16
end
arch flagstone
x 21
y 17
end
arch flagstone
x 21
y 18
end
arch flagstone
x 21
y 19
end
arch flagstone
x 21
y 20
end
arch flagstone
x 21
y 21
end
arch flagstone
x 21
y 22
end
arch flagstone
x 21
y 23
end
arch flagstone
x 21
y 24
end
arch flagstone
x 21
y 25
end
arch flagstone
x 21
y 26
end
arch flagstone
x 21
y 27
end
arch mine2
x 21
y 27
end
arch flagstone
x 21
y 28
end
arch flagstone
x 21
y 29
end
arch flagstone
x 21
y 30
end
arch flagstone
x 21
y 31
end
arch mine2
x 21
y 31
end
arch flagstone
x 22
end
arch mine2
x 22
end
arch flagstone
x 22
y 1
end
arch flagstone
x 22
y 2
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 22
y 2
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch flagstone
x 22
y 3
end
arch flagstone
x 22
y 4
end
arch mine9
x 22
y 4
end
arch flagstone
x 22
y 5
end
arch mine14
x 22
y 5
end
arch flagstone
x 22
y 6
end
arch mine14
x 22
y 6
end
arch flagstone
x 22
y 7
end
arch mine14
x 22
y 7
end
arch flagstone
x 22
y 8
end
arch mine14
x 22
y 8
end
arch flagstone
x 22
y 9
end
arch mine14
x 22
y 9
end
arch flagstone
x 22
y 10
end
arch mine14
x 22
y 10
end
arch flagstone
x 22
y 11
end
arch mine14
x 22
y 11
end
arch flagstone
x 22
y 12
end
arch mine14
x 22
y 12
end
arch flagstone
x 22
y 13
end
arch mine14
x 22
y 13
end
arch flagstone
x 22
y 14
end
arch mine14
x 22
y 14
end
arch flagstone
x 22
y 15
end
arch mine14
x 22
y 15
end
arch flagstone
x 22
y 16
end
arch mine12
x 22
y 16
end
arch flagstone
x 22
y 17
end
arch flagstone
x 22
y 18
end
arch flagstone
x 22
y 19
end
arch flagstone
x 22
y 20
end
arch mine8
x 22
y 20
end
arch flagstone
x 22
y 21
end
arch mine3
x 22
y 21
end
arch flagstone
x 22
y 22
end
arch mine3
x 22
y 22
end
arch flagstone
x 22
y 23
end
arch mine3
x 22
y 23
end
arch flagstone
x 22
y 24
end
arch mine3
x 22
y 24
end
arch flagstone
x 22
y 25
end
arch mine3
x 22
y 25
end
arch flagstone
x 22
y 26
end
arch mine3
x 22
y 26
end
arch flagstone
x 22
y 27
end
arch mine12
x 22
y 27
end
arch flagstone
x 22
y 28
end
arch flagstone
x 22
y 29
end
arch flagstone
x 22
y 30
end
arch flagstone
x 22
y 31
end
arch mine2
x 22
y 31
end
arch flagstone
x 23
end
arch mine2
x 23
end
arch flagstone
x 23
y 1
end
arch flagstone
x 23
y 2
end
arch flagstone
x 23
y 3
end
arch flagstone
x 23
y 4
end
arch flagstone
x 23
y 5
end
arch flagstone
x 23
y 6
end
arch flagstone
x 23
y 7
end
arch flagstone
x 23
y 8
end
arch flagstone
x 23
y 9
end
arch flagstone
x 23
y 10
end
arch flagstone
x 23
y 11
end
arch flagstone
x 23
y 12
end
arch flagstone
x 23
y 13
end
arch flagstone
x 23
y 14
end
arch flagstone
x 23
y 15
end
arch flagstone
x 23
y 16
end
arch flagstone
x 23
y 17
end
arch flagstone
x 23
y 18
end
arch flagstone
x 23
y 19
end
arch flagstone
x 23
y 20
end
arch flagstone
x 23
y 21
end
arch flagstone
x 23
y 22
end
arch flagstone
x 23
y 23
end
arch flagstone
x 23
y 24
end
arch flagstone
x 23
y 25
end
arch flagstone
x 23
y 26
end
arch flagstone
x 23
y 27
end
arch flagstone
x 23
y 28
end
arch flagstone
x 23
y 29
end
arch flagstone
x 23
y 30
end
arch flagstone
x 23
y 31
end
arch mine2
x 23
y 31
end
arch flagstone
x 24
end
arch mine2
x 24
end
arch flagstone
x 24
y 1
end
arch flagstone
x 24
y 2
end
arch flagstone
x 24
y 3
end
arch flagstone
x 24
y 4
end
arch flagstone
x 24
y 5
end
arch flagstone
x 24
y 6
end
arch flagstone
x 24
y 7
end
arch flagstone
x 24
y 8
end
arch flagstone
x 24
y 9
end
arch flagstone
x 24
y 10
end
arch flagstone
x 24
y 11
end
arch g_worm
Con 90
hp 6000
exp 20000
x 24
y 11
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
arch flagstone
x 24
y 12
end
arch flagstone
x 24
y 13
end
arch flagstone
x 24
y 14
end
arch flagstone
x 24
y 15
end
arch flagstone
x 24
y 16
end
arch flagstone
x 24
y 17
end
arch flagstone
x 24
y 18
end
arch flagstone
x 24
y 19
end
arch flagstone
x 24
y 20
end
arch flagstone
x 24
y 21
end
arch flagstone
x 24
y 22
end
arch flagstone
x 24
y 23
end
arch flagstone
x 24
y 24
end
arch flagstone
x 24
y 25
end
arch flagstone
x 24
y 26
end
arch flagstone
x 24
y 27
end
arch flagstone
x 24
y 28
end
arch flagstone
x 24
y 29
end
arch flagstone
x 24
y 30
end
arch flagstone
x 24
y 31
end
arch mine2
x 24
y 31
end
arch flagstone
x 25
end
arch mine2
x 25
end
arch flagstone
x 25
y 1
end
arch flagstone
x 25
y 2
end
arch flagstone
x 25
y 3
end
arch flagstone
x 25
y 4
end
arch flagstone
x 25
y 5
end
arch flagstone
x 25
y 6
end
arch flagstone
x 25
y 7
end
arch flagstone
x 25
y 8
end
arch flagstone
x 25
y 9
end
arch flagstone
x 25
y 10
end
arch flagstone
x 25
y 11
end
arch flagstone
x 25
y 12
end
arch flagstone
x 25
y 13
end
arch flagstone
x 25
y 14
end
arch flagstone
x 25
y 15
end
arch flagstone
x 25
y 16
end
arch flagstone
x 25
y 17
end
arch flagstone
x 25
y 18
end
arch flagstone
x 25
y 19
end
arch flagstone
x 25
y 20
end
arch flagstone
x 25
y 21
end
arch flagstone
x 25
y 22
end
arch flagstone
x 25
y 23
end
arch flagstone
x 25
y 24
end
arch flagstone
x 25
y 25
end
arch flagstone
x 25
y 26
end
arch flagstone
x 25
y 27
end
arch flagstone
x 25
y 28
end
arch flagstone
x 25
y 29
end
arch flagstone
x 25
y 30
end
arch flagstone
x 25
y 31
end
arch mine13
x 25
y 31
end
arch flagstone
x 26
end
arch mine16
x 26
end
arch flagstone
x 26
y 1
end
arch mine11
x 26
y 1
end
arch flagstone
x 26
y 2
end
arch mine11
x 26
y 2
end
arch flagstone
x 26
y 3
end
arch mine11
x 26
y 3
end
arch flagstone
x 26
y 4
end
arch mine11
x 26
y 4
end
arch flagstone
x 26
y 5
end
arch mine11
x 26
y 5
end
arch flagstone
x 26
y 6
end
arch mine11
x 26
y 6
end
arch flagstone
x 26
y 7
end
arch mine11
x 26
y 7
end
arch flagstone
x 26
y 8
end
arch mine11
x 26
y 8
end
arch flagstone
x 26
y 9
end
arch mine11
x 26
y 9
end
arch flagstone
x 26
y 10
end
arch mine11
x 26
y 10
end
arch flagstone
x 26
y 11
end
arch mine11
x 26
y 11
end
arch flagstone
x 26
y 12
end
arch mine11
x 26
y 12
end
arch flagstone
x 26
y 13
end
arch mine11
x 26
y 13
end
arch flagstone
x 26
y 14
end
arch mine11
x 26
y 14
end
arch flagstone
x 26
y 15
end
arch mine11
x 26
y 15
end
arch flagstone
x 26
y 16
end
arch mine11
x 26
y 16
end
arch flagstone
x 26
y 17
end
arch mine11
x 26
y 17
end
arch flagstone
x 26
y 18
end
arch mine11
x 26
y 18
end
arch flagstone
x 26
y 19
end
arch mine11
x 26
y 19
end
arch flagstone
x 26
y 20
end
arch mine11
x 26
y 20
end
arch flagstone
x 26
y 21
end
arch mine11
x 26
y 21
end
arch flagstone
x 26
y 22
end
arch mine11
x 26
y 22
end
arch flagstone
x 26
y 23
end
arch mine11
x 26
y 23
end
arch flagstone
x 26
y 24
end
arch mine11
x 26
y 24
end
arch flagstone
x 26
y 25
end
arch mine11
x 26
y 25
end
arch flagstone
x 26
y 26
end
arch mine11
x 26
y 26
end
arch flagstone
x 26
y 27
end
arch mine11
x 26
y 27
end
arch flagstone
x 26
y 28
end
arch mine11
x 26
y 28
end
arch flagstone
x 26
y 29
end
arch mine11
x 26
y 29
end
arch flagstone
x 26
y 30
end
arch mine11
x 26
y 30
end
arch flagstone
x 26
y 31
end
arch mine13
x 26
y 31
end
arch flagstone
x 27
end
arch mine16
x 27
end
arch flagstone
x 27
y 1
end
arch mine14
x 27
y 1
end
arch flagstone
x 27
y 2
end
arch mine14
x 27
y 2
end
arch flagstone
x 27
y 3
end
arch blocked
x 27
y 3
end
arch blocked
x 27
y 4
end
arch blocked
x 27
y 5
end
arch blocked
x 27
y 6
end
arch blocked
x 27
y 7
end
arch blocked
x 27
y 8
end
arch blocked
x 27
y 9
end
arch blocked
x 27
y 10
end
arch blocked
x 27
y 11
end
arch blocked
x 27
y 12
end
arch blocked
x 27
y 13
end
arch blocked
x 27
y 14
end
arch blocked
x 27
y 15
end
arch blocked
x 27
y 16
end
arch blocked
x 27
y 17
end
arch blocked
x 27
y 18
end
arch blocked
x 27
y 19
end
arch blocked
x 27
y 20
end
arch blocked
x 27
y 21
end
arch blocked
x 27
y 22
end
arch blocked
x 27
y 23
end
arch blocked
x 27
y 24
end
arch flagstone
x 27
y 25
end
arch mine17
x 27
y 25
end
arch flagstone
x 27
y 26
end
arch mine14
x 27
y 26
end
arch flagstone
x 27
y 27
end
arch mine14
x 27
y 27
end
arch flagstone
x 27
y 28
end
arch mine17
x 27
y 28
end
arch flagstone
x 27
y 29
end
arch mine17
x 27
y 29
end
arch flagstone
x 27
y 30
end
arch mine14
x 27
y 30
end
arch flagstone
x 27
y 31
end
arch mine12
x 27
y 31
end
arch flagstone
x 28
end
arch flagstone
x 28
end
arch mine2
x 28
end
arch flagstone
x 28
y 1
end
arch flagstone
x 28
y 1
end
arch pit_open
hp 12
sp 10
x 28
y 1
speed 0.500000
value 1
end
arch flagstone
x 28
y 2
end
arch flagstone
x 28
y 3
end
arch blocked
x 28
y 3
end
arch blocked
x 28
y 4
end
arch blocked
x 28
y 5
end
arch blocked
x 28
y 6
end
arch blocked
x 28
y 7
end
arch blocked
x 28
y 8
end
arch blocked
x 28
y 9
end
arch blocked
x 28
y 10
end
arch blocked
x 28
y 11
end
arch blocked
x 28
y 12
end
arch blocked
x 28
y 13
end
arch blocked
x 28
y 14
end
arch blocked
x 28
y 15
end
arch blocked
x 28
y 16
end
arch blocked
x 28
y 17
end
arch blocked
x 28
y 18
end
arch blocked
x 28
y 19
end
arch blocked
x 28
y 20
end
arch blocked
x 28
y 21
end
arch blocked
x 28
y 22
end
arch blocked
x 28
y 23
end
arch blocked
x 28
y 24
end
arch flagstone
x 28
y 25
end
arch mine13
x 28
y 25
end
arch flagstone
x 28
y 26
end
arch pit_open
hp 4
sp 20
x 28
y 26
speed 0.500000
value 1
end
arch flagstone
x 28
y 27
end
arch flagstone
x 28
y 28
end
arch mine16
x 28
y 28
end
arch flagstone
x 28
y 29
end
arch mine13
x 28
y 29
end
arch flagstone
x 28
y 30
end
arch pit_open
hp 17
sp 23
x 28
y 30
speed 0.500000
value 1
end
arch flagstone
x 28
y 31
end
arch flagstone
x 29
end
arch mine7
x 29
end
arch flagstone
x 29
y 1
end
arch flagstone
x 29
y 2
end
arch flagstone
x 29
y 3
end
arch blocked
x 29
y 3
end
arch blocked
x 29
y 4
end
arch blocked
name darkness
x 29
y 5
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 6
no_pass 0
is_floor 1
end
arch horn
name Eye Of Spreading Death
msg
An incredibly loathsome artifact. It
is murmured it once was part of
the body of one of the Great Old Ones
endmsg
face dragon_eye.111
hp 500
maxhp 500
sp 173
x 29
y 6
level 107
weight 200
startequip 1
end
arch blocked
name darkness
x 29
y 7
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 8
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 9
no_pass 0
is_floor 1
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 29
y 9
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch blocked
name darkness
x 29
y 10
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 11
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 12
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 13
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 14
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 15
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 16
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 17
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 18
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 19
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 20
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 21
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 29
y 22
no_pass 0
is_floor 1
end
arch horn
name Finger Of Slow Decay
msg
An incredibly loathsome artifact. It
is murmured it once was part of
the body of one of the Great Old Ones
endmsg
face finger.111
hp 1000
maxhp 1000
sp 175
x 29
y 22
level 107
weight 200
startequip 1
end
arch blocked
x 29
y 23
end
arch blocked
x 29
y 24
end
arch flagstone
x 29
y 25
end
arch mine12
x 29
y 25
end
arch flagstone
x 29
y 26
end
arch flagstone
x 29
y 27
end
arch flagstone
x 29
y 28
end
arch mine16
x 29
y 28
end
arch flagstone
x 29
y 29
end
arch mine12
x 29
y 29
end
arch flagstone
x 29
y 30
end
arch flagstone
x 29
y 31
end
arch flagstone
x 30
end
arch acid_pool
x 30
carrying 5400000
arch g_worm
Con 90
hp 6000
exp 20000
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
end
arch flagstone
x 30
y 1
end
arch flagstone
x 30
y 2
end
arch flagstone
x 30
y 3
end
arch blocked
x 30
y 3
end
arch blocked
x 30
y 4
end
arch blocked
name darkness
x 30
y 5
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 6
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 7
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 8
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 9
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 10
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 11
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 12
no_pass 0
is_floor 1
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 30
y 12
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch blocked
name darkness
x 30
y 13
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 14
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 15
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 16
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 17
no_pass 0
is_floor 1
end
arch byakie
name cave byakie
Str 90
Dex 65
Con 90
Wis 20
Pow 75
Int 30
hp 10000
maxhp 8000
sp 200
maxsp 200
exp 500000
dam 60
wc -50
ac -40
x 30
y 17
speed -0.700000
level 50
resist_electricity 100
resist_cold 100
resist_confusion 100
resist_acid 100
resist_slow 100
resist_paralyze 100
arch ability_cold
end
arch ability_slow
end
arch ability_missile
end
end
arch blocked
name darkness
x 30
y 18
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 19
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 20
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 21
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 30
y 22
no_pass 0
is_floor 1
end
arch blocked
x 30
y 23
end
arch blocked
x 30
y 24
end
arch flagstone
x 30
y 25
end
arch acid_pool
x 30
y 25
carrying 5400000
arch g_worm
Con 90
hp 6000
exp 20000
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
end
arch flagstone
x 30
y 26
end
arch flagstone
x 30
y 27
end
arch flagstone
x 30
y 28
end
arch mine2
x 30
y 28
end
arch flagstone
x 30
y 29
end
arch acid_pool
x 30
y 29
carrying 5400000
arch g_worm
Con 90
hp 6000
exp 20000
resist_magic 100
resist_electricity 100
resist_cold 100
resist_slow 100
end
end
arch flagstone
x 30
y 30
end
arch flagstone
x 30
y 31
end
arch flagstone
x 31
end
arch mine0
x 31
end
arch flagstone
x 31
y 1
end
arch flagstone
x 31
y 2
end
arch flagstone
x 31
y 3
end
arch blocked
x 31
y 3
end
arch blocked
x 31
y 4
end
arch blocked
name darkness
x 31
y 5
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 6
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 7
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 8
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 9
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 10
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 11
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 12
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 13
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 14
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 15
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 16
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 17
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 18
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 19
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 20
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 21
no_pass 0
is_floor 1
end
arch blocked
name darkness
x 31
y 22
no_pass 0
is_floor 1
end
arch blocked
x 31
y 23
end
arch blocked
x 31
y 24
end
arch flagstone
x 31
y 25
end
arch mine5
x 31
y 25
end
arch flagstone
x 31
y 26
end
arch flagstone
x 31
y 27
end
arch flagstone
x 31
y 28
end
arch mine9
x 31
y 28
end
arch flagstone
x 31
y 29
end
arch mine5
x 31
y 29
end
arch flagstone
x 31
y 30
end
arch flagstone
x 31
y 31
end
arch flagstone
x 31
y 31
end
    
    


More information about the crossfire mailing list