1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
Dungeon Crawl Stone Soup version 0.34-a0-725-gf7730aa (webtiles) character file.

dispepticpony the Conqueror (Minotaur Fighter)     Turns: 57522, Time: 04:27:29

Health: 257/257    AC: 50    Str: 52    XL:     25   Next: 50%
Magic:  56/56      EV:  8    Int: 14    God:    Cheibriados [******]
Gold:   2362       SH: 43    Dex: 29    Spells: 24/24 levels left

rFire   + + +  (20%)    c - +2 broad axe (freeze)
rCold   + + +  (20%)    x - +10 tower shield of Ignorance {rN+ Int-4}
rNeg    + . .  (50%)    J - +12 golden dragon scales
rPois   +      (33%)    b - +3 hat of Pondering {Ponderous, Will+ MP+10 Int+5}
rElec   +      (33%)    y - scarf {rC+ rF+}
rCorr   +      (50%)    K - +2 pair of gloves {Dex+3}
SInv    .               M - +2 pair of boots of Stoicism {+Inv Regen+ Int-4 Slay+2}
Will    ++...           G - amulet of reflection
Stlth                   t - ring of a Million Singing Wars {rElec rF+ rC+ MP+10 Str+5 Int-3}
HPRegen 1.42/turn       w - ring "Cutiukunon" {Fly rPois rCorr}
MPRegen 0.35/turn

%: reflection
@: flying, very slow
A: horns 2, retaliatory headbutt
}: 3/15 runes: barnacled, silver, gossamer
a: Renounce Religion, Evoke Invisibility, Bend Time, Temporal Distortion,
Slouch, Step From Time


You are on level 1 of the Realm of Zot.
You worship Cheibriados.
Cheibriados is exalted by your worship.
You have visited 10 branches of the dungeon, and seen 46 of its levels.
You have also visited: Trove, Gauntlet and Ice Cave.

You have collected 9272 gold pieces.
You have spent 6910 gold pieces at shops.


Innate Abilities, Weirdness & Mutations

You have a pair of horns on your head.
You reflexively headbutt those who attack you in melee.

   Skills:
 O Level 27 Fighting
 - Level 18.0 Axes
 - Level 15.0 Throwing
 O Level 27 Armour
 - Level 24.9 Shields
 + Level 20.4 Invocations
 - Level 8.0 Evocations


You have 24 spell levels left.
You don't know any spells.
Your spell library contains the following spells:

 Spells                   Type           Power      Damage    Failure   Level
 Poisonous Vapours        Alch/Air       0%         1d1       63%         1
 Mephitic Cloud           Conj/Alch/Air  0%         N/A       94%         3
 Cigotuvi's Putrefaction  Necr/Air       0%         N/A       100%        4
 Vhi's Electric Charge    Tloc/Air       0%         N/A       100%        4
 Silence                  Hex/Air        0%         N/A       100%        5
 Plasma Beam              Fire/Air       0%         2x1d10    100%        6
 Malign Gateway           Summ/Tloc      0%         N/A       100%        7
 Summon Horrible Things   Summ           0%         N/A       100%        8
 Chain Lightning          Conj/Air       0%         N/A       100%        9


Inventory:

Hand Weapons
 c - a +2 broad axe of freezing (weapon)
 p - a +2 broad axe of venom
 q - a +2 broad axe of draining
 H - a +2 broad axe of flaming
Missiles
 d - 38 poisoned darts
 e - 34 boomerangs (quivered)
 h - 17 curare-tipped darts {=f}
 i - 14 silver javelins
 n - 11 throwing nets {=f}
 o - 35 javelins
 s - 13 darts of disjunction
 u - 17 atropa-tipped darts
Armour
 b - the +3 hat of Pondering (worn) {Ponderous, Will+ MP+10 Int+5}
   (You took it off Gastronok on level 8 of the Dungeon)   

   Will+:      It increases your willpower.
   MP+10:      It affects your magic capacity (+10).
   Int+5:      It affects your intelligence (+5).
 j - a +2 pair of gloves of parrying
 x - the +10 tower shield of Ignorance (worn) {rN+ Int-4}
   (You acquired it in a Gauntlet)   

   rN+:        It protects you from negative energy.
   Int-4:      It affects your intelligence (-4).
 y - a scarf of resistance (worn)
 J - +12 golden dragon scales (worn)
 K - a +2 pair of gloves of dexterity (worn)
 M - the +2 pair of boots of Stoicism (worn) {+Inv Regen+ Int-4 Slay+2}
   (You acquired it on level 3 of the Vaults)   

   +Inv:       It lets you turn invisible.
   Regen+:     It increases your rate of health regeneration.
   Int-4:      It affects your intelligence (-4).
   Slay+2:     It affects your accuracy & damage with ranged weapons and melee
   (+2).
Jewellery
 a - the ring "Fedukeps" {rElec rPois Will+ MP+9}
   (You found it in a treasure trove)   

   [ring of magical power]

   rElec:      It insulates you from electricity.
   rPois:      It protects you from poison.
   Will+:      It increases your willpower.
   MP+9:       It affects your magic capacity (+9).
 f - an amulet of regeneration
 g - the amulet of the Hurting Gods {Faith Harm rPois}
   (You took it off a deep elf annihilator on level 5 of the Vaults)   

   [amulet of faith]

   Faith:      It allows you to gain divine favour quickly.
   Harm:       It increases damage dealt and taken.
   rPois:      It protects you from poison.
 l - an amulet of the acrobat
 m - an amulet of faith {!P}
 r - a +4 ring of protection
 t - the ring of a Million Singing Wars (worn) {rElec rF+ rC+ MP+10 Str+5 Int-3}
   (You bought it in a shop on level 2 of the Orcish Mines)   

   [ring of protection from cold]

   rElec:      It insulates you from electricity.
   rF+:        It protects you from fire.
   rC+:        It protects you from cold.
   MP+10:      It affects your magic capacity (+10).
   Str+5:      It affects your strength (+5).
   Int-3:      It affects your intelligence (-3).
 v - a +4 ring of slaying
 w - the ring "Cutiukunon" (worn) {Fly rPois rCorr}
   (You found it on level 5 of the Lair of Beasts)   

   [ring of flight]

   Fly:        It grants you flight.
   rPois:      It protects you from poison.
   rCorr:      It protects you from acid and corrosion.
 A - a ring of resist corrosion
 C - a +6 ring of dexterity
 D - a ring of protection from cold
 E - a ring of magical power
 F - a ring of positive energy
 G - an amulet of reflection (worn)
 I - the ring of Noon {rPois rC++ Stlth+}
   (You took it off Josephina on level 4 of the Depths)   

   [ring of protection from cold]

   rPois:      It protects you from poison.
   rC++:       It greatly protects you from cold.
   Stlth+:     It makes you more stealthy.
Wands
 e - a wand of paralysis (65)
 p - a wand of polymorph (23)
 a - a wand of flame (88)
 c - a wand of iceblast (19)
 b - a wand of light (32)
 f - a wand of mindburst (16)
 d - a wand of digging (23)
Scrolls
 S - a scroll of silence {!r}
 I - 6 scrolls of immolation
 t - 19 scrolls of teleportation {@r2}
 i - 30 scrolls of identify {@r1}
 p - 8 scrolls of poison
 b - 9 scrolls of blinking
 g - 9 scrolls of fog
 a - 4 scrolls of enchant armour
 w - 6 scrolls of enchant weapon
 f - 12 scrolls of fear
 V - 4 scrolls of vulnerability
 x - 3 scrolls of amnesia
 r - 2 scrolls of revelation
 T - 2 scrolls of torment
Potions
 m - 6 potions of might
 A - 9 potions of attraction
 B - 2 potions of berserk rage {!q}
 e - 6 potions of enlightenment
 g - 2 potions of magic
 C - 4 potions of cancellation
 M - 10 potions of mutation
 c - 15 potions of curing {@q1}
 L - 9 potions of lignification
 b - 10 potions of brilliance
 w - 9 potions of heal wounds {@q2}
 r - 4 potions of resistance
 a - 11 potions of ambrosia
 i - 2 potions of invisibility
Miscellaneous
 g - a +0 lightning rod (4/4)
 h - a +2 Gell's gravitambourine (2/2)
 i - a +0 phantom mirror
 j - a +1 condenser vane


Dungeon Overview and Level Annotations

Branches:
Dungeon (15/15)            Temple (0/1) D:5            Lair (5/5) D:10        
 Shoals (4/4) Lair:3       Spider (4/4) Lair:2        Slime (0/5) Lair:5      
    Orc (2/2) D:9             Elf (3/3) Orc:2        Vaults (5/5) D:14        
  Crypt (3/3) Vaults:2       Tomb (0/3) Crypt:3      Depths (4/4) D:15        
    Zot (1/5) Depths:4      IceCv (visited)         Gauntlet (visited)        

The Realm of Zot is guarded by orbs of fire.

Altars:
Cheibriados
Gozag
Kikubaaqudgha
Nemelex Xobeh
Okawaru
Sif Muna
Vehumet
Wu Jian
Xom
Yredelemnul
Zin
Beogh
Jiyva

Shops:
D:11 (:[[   D:13 ?   Orc:2 *=:(   Elf:2 :*   Shoals:2 *   Shoals:3 :
Vaults:1 (:   Vaults:2 :*   Vaults:3 [[:   Vaults:5 [   Crypt:3 *
Depths:2 :

Portals:
Hell: Depths:1 Depths:2 Depths:3 Depths:4
Abyss: Depths:3 Depths:4
Pandemonium: Depths:2
Ziggurat: Depths:3

Annotations:
D:14 2 runed translucent doors
Elf:2 3 runed translucent doors

################
...............#
...............#
.......∩.......#
.........[[@)..#
........>.).)..#
###########..[......
          #.........
          #..$......
          #.........
          ..........
          .#####....
         ..     ....


There are no monsters in sight!

Message History

The shadow dragon is lightly wounded.
You block the shadow dragon's attack. x3
You slice the shadow dragon like a ripe choko!!!
You freeze the shadow dragon.
You headbutt the shadow dragon, but do no damage.
The shadow dragon is heavily wounded.
You closely miss the shadow dragon. Your headbutt misses the shadow dragon.
The shadow dragon is heavily wounded.
You block the shadow dragon's attack. x3
You closely miss the shadow dragon. You headbutt the shadow dragon!!
The shadow dragon is heavily wounded.
The shadow dragon breathes negative energy at you.
The bolt of negative energy hits you but does no damage.
You partially resist.
You slice the shadow dragon like a ripe choko!!!
You freeze the shadow dragon. You headbutt the shadow dragon!
You kill the shadow dragon!
Cheibriados appreciates the change of pace.
You start waiting.
Things that are here:
a +0 cloak; a +0 rapier
Things that are here:
+0 golden dragon scales; a golden dragon corpse
You see here a +0 pair of gloves of parrying.
j - a +0 pair of gloves of parrying
As you read the scroll of enchant armour, it crumbles to dust.
Your +0 pair of gloves of parrying glows green for a moment.
As you read the scroll of enchant armour, it crumbles to dust.
Your +1 pair of gloves of parrying glows green for a while.
Okay, then.

Skill      XL: |  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
---------------+----------------------------------------------------------------------------+-----
Axes           |  3  4  5  6  7  9 11 14 16             18                                  | 18.0
Fighting       |                          6 10    12 14 15       16 20    22 24 25 27       | 27.0
Armour         |                             9 10       12 15 20                      27    | 27.0
Invocations    |                                8 10 11 12          13 18                20 | 20.4
Shields        |                                7  9       14 15 20             24          | 24.9
Throwing       |                                                          10 13 15          | 15.0
Evocations     |                                                              2     8       |  8.0

Action                     |  1- 3 |  4- 6 |  7- 9 | 10-12 | 13-15 | 16-18 | 19-21 | 22-24 | 25-27 || total
---------------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------++-------
 Attack: Normal            |    66 |   128 |   232 |   451 |   667 |  1231 |  1292 |  1475 |   163 ||  5705
  Melee: War axe           |    73 |   154 |   253 |   283 |       |       |       |       |       ||   763
         Headbutt          |     7 |    22 |    32 |   117 |   173 |   375 |   394 |   553 |    68 ||  1741
         Broad axe         |       |       |       |   296 |   958 |  1834 |  1797 |  2099 |   397 ||  7381
  Throw: Dart              |       |       |    12 |    21 |    13 |   146 |     4 |       |       ||   196
         Boomerang         |       |       |       |     8 |       |       |   167 |   305 |    34 ||   514
         Javelin           |       |       |       |       |       |       |     3 |       |       ||     3
 Invoke: Bend Time         |       |       |     1 |       |       |       |     3 |     2 |       ||     6
         Slouch            |       |       |       |     1 |     4 |     3 |     8 |    10 |     1 ||    27
         Temporal Distorti |       |       |       |       |       |       |     2 |     1 |       ||     3
         Step From Time    |       |       |       |       |       |       |     1 |       |       ||     1
  Evoke: Wand of iceblast  |       |       |       |     4 |       |       |       |     1 |       ||     5
         Wand of flame     |       |       |       |     2 |     1 |       |       |       |       ||     3
         Lightning rod     |       |       |       |     1 |     1 |       |       |       |       ||     2
  Drink: Might             |       |       |       |     1 |       |       |       |     2 |     1 ||     4
         Heal wounds       |       |       |       |     2 |       |       |     3 |       |       ||     5
         Experience        |       |       |       |       |     1 |       |       |       |       ||     1
         Curing            |       |       |       |       |       |       |     2 |       |       ||     2
   Read: Identify          |       |     4 |     4 |     4 |     3 |     1 |       |       |       ||    16
         Teleportation     |       |     1 |       |     2 |       |       |       |       |       ||     3
         Brand weapon      |       |     1 |       |       |       |     1 |       |       |     1 ||     3
         Enchant armour    |       |     1 |       |       |       |       |       |     4 |     2 ||     7
         Immolation        |       |     1 |       |       |       |       |       |     1 |       ||     2
         Fear              |       |     1 |       |       |       |       |       |       |       ||     1
         Noise             |       |     1 |       |       |       |       |       |       |       ||     1
         Revelation        |       |       |     1 |       |     2 |       |       |       |       ||     3
         Poison            |       |       |     1 |       |       |       |       |       |       ||     1
         Blinking          |       |       |     1 |       |       |       |     3 |       |       ||     4
         Torment           |       |       |     1 |       |       |       |       |       |       ||     1
         Vulnerability     |       |       |     1 |       |       |       |       |       |       ||     1
         Enchant weapon    |       |       |       |     2 |       |       |       |       |       ||     2
         Fog               |       |       |       |     1 |       |       |       |       |       ||     1
         Amnesia           |       |       |       |       |     1 |       |       |       |       ||     1
         Acquirement       |       |       |       |       |     1 |       |       |     1 |     2 ||     4
         Butterflies       |       |       |       |       |       |       |     1 |       |       ||     1
   Stab: Petrifying        |       |       |       |       |     1 |     3 |       |       |       ||     4
         Distracted        |       |       |       |       |       |     2 |       |       |       ||     2
         Petrified         |       |       |       |       |       |     7 |       |       |       ||     7
 Armour: Scale mail        |    52 |    92 |    66 |       |       |       |       |       |       ||   210
         Plate armour      |       |       |   109 |   378 |   495 |   663 |   746 |    14 |       ||  2405
         Golden dragon sca |       |       |       |       |       |       |       |   617 |   215 ||   832
         Storm dragon scal |       |       |       |       |       |       |       |    41 |       ||    41
  Dodge: Dodged            |    28 |    64 |    87 |   104 |   137 |   186 |   159 |   155 |    26 ||   946
  Block: Buckler           |    20 |    18 |    52 |    14 |       |       |       |       |       ||   104
         Kite shield       |       |       |       |   237 |   419 |       |       |       |       ||   656
         Tower shield      |       |       |       |       |    15 |  2003 |  1730 |  2153 |   394 ||  6295
         Reflection        |       |       |       |       |       |       |       |    77 |    11 ||    88

Notes
Turn   | Place    | Note
-------+----------+-------------------------------------------
     0 | D:1      | dispepticpony the Minotaur Fighter began the quest for the
                  | Orb.
     0 | D:1      | Reached XP level 1. HP: 19/19 MP: 0/0
    75 | D:1      | Reached skill level 3 in Axes
   140 | D:1      | Reached XP level 2. HP: 22/26 MP: 1/1
   806 | D:2      | Reached skill level 4 in Axes
   806 | D:2      | Reached XP level 3. HP: 23/31 MP: 2/2
   899 | D:2      | Reached skill level 5 in Axes
  1220 | D:2      | Reached XP level 4. HP: 39/39 MP: 3/3
  1645 | D:3      | Reached skill level 6 in Axes
  2178 | D:3      | Found a snail-covered altar of Cheibriados.
  2182 | D:3      | Reached XP level 5. HP: 44/45 MP: 4/4
  2406 | D:3      | Became a worshipper of Cheibriados the Contemplative
  2507 | D:4      | Noticed an ogre
  2515 | D:4      | Killed an ogre
  2516 | D:4      | Reached skill level 7 in Axes
  2793 | D:4      | Reached XP level 6. HP: 51/51 MP: 5/5
  2889 | D:4      | Reached skill level 8 in Axes
  3222 | D:5      | Entered Level 5 of the Dungeon
  3266 | D:5      | Reached * piety under Cheibriados
  3294 | D:5      | Reached skill level 9 in Axes
  3303 | D:5      | Reached XP level 7. HP: 51/57 MP: 6/6
  3421 | D:5      | Reached skill level 10 in Axes
  3634 | D:5      | Found a statue of an orb of fire.
  3635 | D:5      | Found a staircase to the Ecumenical Temple.
  3636 | D:5      | Found a statue of an orb of fire.
  4083 | D:6      | Reached ** piety under Cheibriados
  4084 | D:6      | Reached skill level 11 in Axes
  4090 | D:6      | Reached XP level 8. HP: 64/64 MP: 7/7
  4265 | D:6      | Reached skill level 12 in Axes
  4320 | D:6      | Upgraded the game from 0.34-a0-721-gb454e72 to
                  | 0.34-a0-723-ge448dd4
  4512 | D:6      | Reached skill level 13 in Axes
  4628 | D:6      | Noticed Blorkula the Orcula
  4657 | D:6      | Killed Blorkula the Orcula
  4893 | D:7      | Reached *** piety under Cheibriados
  5031 | D:7      | Reached skill level 14 in Axes
  5031 | D:7      | Reached XP level 9. HP: 69/70 MP: 8/8
  5049 | D:7      | Noticed a gargoyle
  5058 | D:7      | Killed a gargoyle
  5176 | D:7      | Reached skill level 15 in Axes
  5429 | D:7      | Reached **** piety under Cheibriados
  5463 | D:7      | Noticed Joseph
  5480 | D:7      | Killed Joseph
  5481 | D:7      | Reached skill level 16 in Axes
  5764 | D:8      | Noticed Sprozz
  5775 | D:7      | Killed Sprozz
  5776 | D:7      | Reached skill level 6 in Fighting
  5909 | D:8      | Noticed Gastronok
  5918 | D:8      | Noticed Grum
  5930 | D:8      | Killed Grum
  5936 | D:8      | Reached XP level 10. HP: 22/84 MP: 5/9
  5964 | D:8      | Reached skill level 7 in Fighting
  6038 | D:8      | Killed Gastronok
  6039 | D:8      | Reached skill level 9 in Fighting
  6071 | D:8      | Got the +3 hat of Pondering {Ponderous, Will+ MP+10 Int+5}
  6254 | D:8      | Noticed Maurice
  6274 | D:8      | Something stole an amulet of the acrobat
  6275 | D:8      | Killed Maurice
  6276 | D:8      | Reached skill level 10 in Fighting
  6287 | D:8      | Reached skill level 4 in Armour
  6514 | D:9      | Reached skill level 5 in Armour
  6522 | D:9      | Reached skill level 6 in Armour
  6531 | D:9      | Reached skill level 7 in Armour
  6708 | D:9      | Found a staircase to the Orcish Mines.
  6809 | D:9      | Reached skill level 8 in Armour
  6910 | D:9      | Noticed a two-headed ogre
  6919 | D:9      | Killed a two-headed ogre
  6920 | D:9      | Reached skill level 9 in Armour
  6920 | D:9      | Reached XP level 11. HP: 75/99 MP: 10/10
  7224 | D:10     | Entered Level 10 of the Dungeon
  7266 | D:10     | Reached ***** piety under Cheibriados
  7370 | D:10     | Found a staircase to the Lair.
  7378 | D:10     | Reached skill level 10 in Armour
  7449 | D:10     | Identified the +8 dagger of Squeaky Expedience {freeze, rC+
                  | Int+2 Dex+3}
  7454 | D:10     | Reached skill level 1 in Invocations
  7546 | D:10     | Noticed Cassandra
  7557 | D:10     | Gained bane: Bane of Multiplicity [Doom]
  7559 | D:10     | Killed Cassandra
  7560 | D:10     | Reached skill level 2 in Invocations
  7573 | D:10     | Reached skill level 3 in Invocations
  7580 | D:10     | Reached skill level 4 in Invocations
  7732 | D:10     | Reached skill level 5 in Invocations
  7867 | D:10     | Reached skill level 6 in Invocations
  8164 | D:10     | Noticed a two-headed ogre
  8171 | D:10     | Killed a two-headed ogre
  8172 | D:10     | Reached skill level 7 in Invocations
  8228 | D:10     | Reached skill level 8 in Invocations
  8233 | D:10     | Reached skill level 4 in Shields
  8237 | D:10     | Noticed a two-headed ogre
  8248 | D:10     | Killed a two-headed ogre
  8249 | D:10     | Reached skill level 5 in Shields
  8259 | D:10     | Noticed a two-headed ogre
  8332 | D:10     | Noticed a two-headed ogre
  8339 | D:10     | Killed a two-headed ogre
  8340 | D:10     | Reached skill level 6 in Shields
  8483 | D:10     | Killed a two-headed ogre
  8484 | D:10     | Lost bane: Bane of Multiplicity
  8484 | D:10     | Reached skill level 7 in Shields
  8484 | D:10     | Reached XP level 12. HP: 84/106 MP: 17/17
  8799 | D:10     | Reached skill level 8 in Shields
  8966 | D:11     | Found Ruxed's Book Shoppe.
  8971 | D:11     | Noticed a two-headed ogre
  8977 | D:11     | Reached skill level 9 in Shields
  8982 | D:11     | Killed a two-headed ogre
  9093 | D:11     | Found Yjaeran's Armour Shoppe.
  9134 | D:11     | Bought a +1 plate armour of cold resistance for 480 gold
                  | pieces
  9231 | D:11     | Noticed a boulder beetle
  9249 | D:11     | Killed a boulder beetle
  9250 | D:11     | Reached skill level 9 in Invocations
  9273 | D:11     | Found Tubbumua's Armour Shop.
  9346 | D:11     | Noticed a two-headed ogre
  9352 | D:11     | Killed a two-headed ogre
  9361 | D:11     | Reached ****** piety under Cheibriados
  9529 | D:11     | Found Ficic's Weapon Emporium.
  9536 | D:11     | Bought 3 curare-tipped darts for 57 gold pieces
  9713 | D:12     | Reached skill level 10 in Invocations
  9964 | D:12     | Reached skill level 11 in Fighting
 10320 | Lair:1   | Entered Level 1 of the Lair of Beasts
 10347 | Lair:1   | Reached skill level 12 in Fighting
 10523 | Lair:1   | Reached XP level 13. HP: 119/119 MP: 19/19
 10702 | Lair:1   | Reached skill level 13 in Fighting
 11175 | Lair:1   | Noticed Amaemon
 11188 | Lair:1   | Killed Amaemon
 11189 | Lair:1   | Reached skill level 14 in Fighting
 11467 | Lair:2   | Identified a potion of experience
 11469 | Lair:2   | Reached skill level 11 in Invocations
 11469 | Lair:2   | Reached XP level 14. HP: 133/133 MP: 21/21
 11532 | Lair:2   | Found a hole to the Spider Nest.
 11538 | Lair:2   | Reached skill level 15 in Fighting
 11623 | Lair:2   | Reached skill level 12 in Invocations
 12470 | Lair:3   | Found a frozen archway.
 12495 | IceCv    | Entered an ice cave
 12951 | IceCv    | Identified the +1 scale mail of Henotheism {rCorr}
 13005 | Lair:3   | Reached skill level 17 in Axes
 13435 | Lair:3   | Found a staircase to the Shoals.
 13953 | Lair:4   | Reached skill level 18 in Axes
 14165 | Lair:4   | Found a shimmering altar of Xom.
 14194 | Lair:4   | Identified a potion of resistance
 14461 | Lair:4   | Reached skill level 11 in Armour
 14969 | Lair:5   | Entered Level 5 of the Lair of Beasts
 14982 | Lair:5   | Reached skill level 12 in Armour
 14986 | Lair:5   | Reached XP level 15. HP: 139/141 MP: 23/23
 15103 | Lair:5   | Reached skill level 13 in Armour
 15245 | Lair:5   | Noticed Sonja
 15246 | Lair:5   | Killed Sonja
 15283 | Lair:5   | Noticed Nessos
 15286 | Lair:5   | Killed Nessos
 15288 | Lair:5   | Found a staircase to the Slime Pits.
 15291 | Lair:5   | Found a viscous altar of Jiyva.
 15296 | Lair:5   | Reached skill level 14 in Armour
 16403 | Lair:5   | Reached skill level 15 in Armour
 16403 | Lair:5   | Reached skill level 10 in Shields
 16709 | Lair:5   | Reached skill level 11 in Shields
 17022 | Lair:5   | Identified the ring "Cutiukunon" {Fly rPois rCorr}
 17231 | Lair:5   | Reached skill level 12 in Shields
 17813 | Orc:1    | Entered Level 1 of the Orcish Mines
 18119 | Orc:1    | Found a roughly hewn altar of Beogh.
 18120 | Orc:1    | Paralysed by an orc sorcerer for 5 turns
 18264 | Orc:2    | Entered Level 2 of the Orcish Mines
 18359 | Orc:2    | Found a roughly hewn altar of Beogh.
 18384 | Orc:2    | Noticed Urug
 18391 | Orc:2    | Killed Urug
 18392 | Orc:2    | Reached skill level 13 in Shields
 18706 | Orc:2    | Found a staircase to the Elven Halls.
 19041 | Orc:2    | Found Ujeczyon's Antique Weapon Emporium.
 19078 | Orc:2    | Reached skill level 14 in Shields
 19187 | Orc:2    | Found Jashrume's Jewellery Shop.
 19194 | Orc:2    | Bought the ring of a Million Singing Wars {rElec rF+ rC+
                  | MP+10 Str+5 Int-3} for 925 gold pieces
 19229 | Orc:2    | Found Umetieth's Assorted Antiques.
 19231 | Orc:2    | Found Plog's Book Emporium.
 19237 | Orc:2    | Bought a scroll of enchant weapon for 240 gold pieces
 19567 | D:13     | Found a gate leading to a gauntlet.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Found a transporter.
 19573 | Gauntlet | Entered a Gauntlet
 19593 | Gauntlet | Identified a scroll of acquirement
 19594 | Gauntlet | Acquired the +10 tower shield of Ignorance {rN+ Int-4}
 19737 | Gauntlet | Reached XP level 16. HP: 138/149 MP: 24/24
 19762 | Gauntlet | Identified the +9 hand axe of Experimentation {heavy,
                  | ^Contam rF+++ Str+3}
 19775 | Gauntlet | Identified the +2 hand axe "Saptayr" {spect, rElec Will-
                  | Int+4 Stlth+}
 19986 | D:13     | Reached skill level 16 in Armour
 20092 | D:13     | Identified a scarf of resistance
 20375 | D:13     | Found Fopreomo's Magic Scroll Emporium.
 20379 | D:13     | Bought a scroll of brand weapon for 188 gold pieces
 20383 | D:13     | Bought a scroll of fear for 79 gold pieces
 20489 | D:14     | Found a portal to a secret trove of treasure.
 20497 | D:14     | Gained bane: Bane of Lethargy [Entering a Trove]
 20498 | Trove    | Entered The Storm Queen's Palace Crash-Site
 20528 | Trove    | Identified the ring "Fedukeps" {rElec rPois Will+ MP+9}
 20532 | Trove    | Got the Codex of Exhalation
 20539 | Trove    | Identified the +1 storm dragon scales of Resourcefulness
                  | {rElec rC- Dex+5 SInv}
 20547 | Trove    | Got the Essays on the Welkin
 20549 | Trove    | Identified the orb of Qedib {Energy, Str+4 Air}
 20580 | Trove    | Identified the amulet of Toarid {Spirit Harm rElec}
 20607 | Trove    | Identified the +1 buckler of Darkness {rF+ rC+}
 20840 | D:14     | Reached skill level 17 in Armour
 21263 | D:14     | Reached skill level 18 in Armour
 21271 | D:14     | Found a gate to the Vaults.
 21545 | D:14     | Reached skill level 19 in Armour
 21596 | D:14     | Noticed a sphinx marauder
 21626 | D:14     | Identified the +4 rapier of Kubbie Yxzy {drain, rPois rF+}
 21773 | D:14     | Killed a sphinx marauder
 21796 | D:14     | Reached skill level 20 in Armour
 21865 | D:15     | Entered Level 15 of the Dungeon
 22217 | D:15     | Reached skill level 15 in Shields
 22321 | D:15     | Found a staircase to the Depths.
 22340 | D:15     | Reached XP level 17. HP: 141/153 MP: 25/25
 22462 | D:15     | Found an ornate altar of the Wu Jian Council.
 22920 | Spider:1 | Entered Level 1 of the Spider Nest
 22935 | Spider:1 | Reached skill level 16 in Shields
 23444 | Spider:1 | Reached skill level 17 in Shields
 23635 | Spider:1 | Identified the +2 robe "Weitenae" {Rampage rCorr}
 24208 | D:13     | Bought a scroll of revelation for 148 gold pieces
 24603 | Spider:2 | Reached skill level 18 in Shields
 25117 | Spider:3 | Reached skill level 19 in Shields
 25482 | Spider:3 | Reached skill level 20 in Shields
 26005 | Spider:4 | Entered Level 4 of the Spider Nest
 26028 | Spider:4 | Reached skill level 16 in Fighting
 26028 | Spider:4 | Reached XP level 18. HP: 156/166 MP: 26/26
 26034 | Spider:4 | Lost bane: Bane of Lethargy
 26034 | Spider:4 | Noticed Xak'krixis
 26069 | Spider:3 | Killed Xak'krixis
 26521 | Spider:4 | Reached skill level 17 in Fighting
 27486 | Spider:4 | Reached skill level 18 in Fighting
 27671 | Spider:4 | Got a gossamer rune of Zot
 27672 | Spider:4 | Identified the +0 pair of gloves of Myetajam {Harm rC-
                  | rCorr Stlth+}
 27884 | Shoals:1 | Entered Level 1 of the Shoals
 27895 | Shoals:1 | Noticed Jorgrun
 27915 | Shoals:1 | Killed Jorgrun
 27994 | Shoals:1 | Reached skill level 19 in Fighting
 29412 | Shoals:2 | Reached skill level 20 in Fighting
 29587 | Shoals:2 | Found Febal's Overcharged Wands.
 29639 | Shoals:2 | Noticed Polyphemus
 29675 | Shoals:2 | Killed Polyphemus
 30145 | Shoals:2 | Reached skill level 13 in Invocations
 30425 | Shoals:3 | Reached XP level 19. HP: 172/185 MP: 28/28
 30860 | Shoals:3 | Found Awkol's Book Boutique.
 31116 | Shoals:3 | Reached skill level 14 in Invocations
 31164 | Shoals:3 | Identified the ring "Yhowkud" {rN+ Str-3 Dex+5}
 31169 | Shoals:3 | Got Guaff's Vellum of Mad Ravings
 31320 | Shoals:4 | Entered Level 4 of the Shoals
 31528 | Shoals:4 | Reached skill level 15 in Invocations
 31652 | Shoals:4 | Got a barnacled rune of Zot
 31926 | Shoals:4 | Noticed Ilsuiw
 31951 | Shoals:4 | Killed Ilsuiw
 32194 | Shoals:4 | Reached skill level 16 in Invocations
 32946 | Elf:1    | Entered Level 1 of the Elven Halls
 33355 | Elf:1    | Paralysed by an air elemental for 1 turns
 33359 | Elf:1    | Paralysed by an air elemental for 1 turns
 33412 | Elf:1    | Reached skill level 17 in Invocations
 34132 | Elf:2    | Noticed Azrael
 34143 | Elf:2    | Killed Azrael
 34198 | Elf:2    | Found Xoibecw's Book Boutique.
 34211 | Elf:2    | Found an ancient bone altar of Kikubaaqudgha.
 34347 | Elf:2    | Found Bagi's Assorted Antiques.
 34649 | Elf:2    | Reached skill level 18 in Invocations
 34729 | Elf:3    | Entered Level 3 of the Elven Halls
 34752 | Elf:3    | Reached XP level 20. HP: 193/193 MP: 32/32
 34775 | Elf:3    | Paralysed by an air elemental for 1 turns
 34777 | Elf:3    | Paralysed by an air elemental for 1 turns
 34853 | Elf:3    | Reached skill level 1 in Throwing
 34862 | Elf:3    | Reached skill level 2 in Throwing
 35001 | Elf:3    | Reached skill level 3 in Throwing
 35132 | Elf:2    | Reached skill level 4 in Throwing
 35156 | Elf:3    | Reached skill level 5 in Throwing
 35377 | Elf:3    | Reached skill level 6 in Throwing
 35666 | Elf:3    | Identified the +6 spear "Rirr" {heavy, Str+3}
 35677 | Elf:3    | Reached skill level 7 in Throwing
 35995 | Elf:3    | Reached skill level 8 in Throwing
 36482 | Elf:3    | Identified the cold staff "Hink" {^Fragile rPois rC+ Tloc
                  | Ice}
 36530 | Elf:3    | Identified the +0 scimitar of Harmony {heavy, Stlth+}
 36901 | Depths:1 | Entered Level 1 of the Depths
 37164 | Depths:1 | Reached skill level 9 in Throwing
 37256 | Depths:1 | Found an opulent altar of Gozag.
 37285 | Depths:1 | Found a gateway to Hell.
 37347 | Depths:1 | Found an opulent altar of Gozag.
 37352 | Depths:1 | Found an opulent altar of Gozag.
 37357 | Depths:1 | Found an opulent altar of Gozag.
 37674 | Depths:1 | Reached skill level 10 in Throwing
 37676 | Depths:1 | HP: 19/195 [poisoned by an occultist (poison arrow)]
 37930 | Depths:1 | Found a radiant altar of Vehumet.
 37937 | Depths:1 | Noticed an ancient lich
 37945 | Depths:1 | Reached skill level 21 in Fighting
 37964 | Depths:1 | Killed an ancient lich
 38437 | Depths:2 | Found a one-way gate leading to the halls of Pandemonium.
 38588 | Depths:2 | Reached skill level 22 in Fighting
 38595 | Depths:2 | Found Byasm's One-of-a-Kind Books.
 38606 | Depths:2 | Reached XP level 21. HP: 64/207 MP: 33/33
 38911 | Depths:2 | You are sucked into a shaft and drop 1 floor!
 38912 | Depths:3 | Found a one-way gate to the infinite horrors of the Abyss.
 39480 | Depths:2 | Reached skill level 23 in Fighting
 40186 | Depths:3 | Found a sparkling altar of Nemelex Xobeh.
 40225 | Depths:3 | Found a one-way gateway to a ziggurat.
 40227 | Depths:3 | Noticed Mennas
 40245 | Depths:3 | Killed Mennas
 40336 | Depths:3 | Reached skill level 24 in Fighting
 40425 | Depths:3 | Reached skill level 1 in Evocations
 40438 | Depths:3 | Reached skill level 2 in Evocations
 40449 | Depths:3 | Noticed Mara
 40462 | Depths:3 | Noticed dispepticpony's illusion
 40468 | Depths:3 | Killed Mara
 40538 | Depths:3 | Reached skill level 11 in Throwing
 40816 | Depths:3 | Noticed a caustic shrike
 40821 | Depths:3 | Reached skill level 12 in Throwing
 40824 | Depths:3 | Killed a caustic shrike
 40842 | Depths:3 | Noticed Margery
 40863 | Depths:3 | Killed Margery
 41021 | Depths:3 | Reached skill level 13 in Throwing
 41074 | Depths:3 | Identified the +1 leather armour of Onwehusiph {*Silence
                  | rElec rN++}
 41140 | Depths:3 | Identified the +2 dagger of Das Dox {pain, rF- rC+ Will++
                  | Int+3}
 41232 | Depths:3 | Identified the ring "Aroesod" {rC- rN+ MP+9 Dex+2 Stlth+}
 41300 | Depths:3 | Identified the +9 scimitar "Icyvifeb" {freeze, rF+ rCorr}
 41487 | Depths:3 | Reached XP level 22. HP: 222/222 MP: 34/34
 41637 | Depths:3 | Noticed a caustic shrike
 41649 | Depths:3 | Killed a caustic shrike
 41653 | Depths:4 | Entered Level 4 of the Depths
 41699 | Depths:4 | Reached skill level 14 in Throwing
 42049 | Depths:4 | Identified the ring of Noon {rPois rC++ Stlth+}
 42049 | Depths:4 | Identified the death talisman of Gozag, Mauling {rF++}
 42049 | Depths:4 | Noticed Josephina
 42071 | Depths:4 | Killed Josephina
 42212 | Depths:4 | Noticed Parghit
 42287 | Depths:4 | Killed Parghit
 42288 | Depths:4 | Reached skill level 15 in Throwing
 42581 | Depths:4 | Reached skill level 21 in Shields
 42646 | Depths:4 | Identified the +4 robe "Kihidek" {Fly Int+2 SInv}
 42646 | Depths:4 | Noticed Boris
 42662 | Depths:4 | Killed Boris
 42975 | Depths:4 | Found a statue of an orb of fire.
 42975 | Depths:4 | Found a gate to the Realm of Zot.
 43004 | Depths:4 | Reached skill level 22 in Shields
 43086 | Depths:4 | Found a statue of an orb of fire.
 43475 | Vaults:1 | Entered Level 1 of the Vaults
 43592 | Vaults:1 | Reached skill level 23 in Shields
 43680 | Vaults:1 | Reached skill level 24 in Shields
 44055 | Vaults:1 | Found Eschuof's Book Shoppe.
 44335 | Vaults:1 | Found an iron altar of Okawaru.
 44396 | Vaults:1 | Found Culoyris's Antique Weapon Emporium.
 44482 | Vaults:2 | Found Noewosh's Book Emporium.
 44716 | Vaults:2 | Found Luonap's General Store.
 45143 | Vaults:2 | Reached skill level 25 in Fighting
 45156 | Vaults:2 | Reached XP level 23. HP: 170/234 MP: 35/35
 45436 | Vaults:2 | Found a basalt altar of Yredelemnul.
 46150 | Vaults:2 | Found a staircase to the Crypt.
 46265 | Crypt:1  | Entered Level 1 of the Crypt
 46505 | Crypt:1  | Reached skill level 26 in Fighting
 47271 | Crypt:2  | Noticed a curse skull
 47421 | Crypt:1  | Killed a curse skull
 48367 | Crypt:2  | Found an ancient bone altar of Kikubaaqudgha.
 48390 | Crypt:2  | Reached skill level 27 in Fighting
 48476 | Crypt:2  | Reached skill level 3 in Evocations
 48675 | Crypt:3  | Entered Level 3 of the Crypt
 48764 | Crypt:3  | Reached skill level 4 in Evocations
 49056 | Crypt:3  | Reached skill level 5 in Evocations
 49324 | Crypt:3  | Identified the +3 robe of Submission {Rampage +Inv rN+
                  | Slay+3}
 49324 | Crypt:3  | Noticed Boris
 49348 | Crypt:3  | Killed Boris
 49406 | Crypt:3  | Reached skill level 6 in Evocations
 49991 | Crypt:3  | Reached skill level 7 in Evocations
 50001 | Crypt:3  | Found Ixzuraaf's Gilded Reliquary.
 50020 | Crypt:3  | Identified the +10 rapier "Pocrasma" {elec, Dex+2}
 50161 | Crypt:3  | Found a staircase to the Tomb.
 50449 | Crypt:3  | Noticed an ancient lich
 50459 | Crypt:3  | Killed an ancient lich
 50460 | Crypt:3  | Reached skill level 8 in Evocations
 50472 | Crypt:3  | Found an ancient bone altar of Kikubaaqudgha.
 50481 | Crypt:3  | Noticed a dread lich
 50483 | Crypt:3  | Paralysed by a dread lich for 3 turns
 50488 | Crypt:3  | Killed a dread lich
 50563 | Crypt:3  | Noticed an ancient lich
 50576 | Crypt:3  | Killed an ancient lich
 51372 | Vaults:3 | Reached XP level 24. HP: 249/249 MP: 35/35
 51499 | Vaults:3 | Found Roxis's Antique Armour Emporium.
 51682 | Vaults:1 | Bought a manual of Armour for 2160 gold pieces
 51862 | Vaults:3 | Bought a pair of incandescent boots for 294 gold pieces
 51862 | Vaults:3 | Identified the +0 pair of boots "Raych" {*Corrode rPois
                  | Int+8 Stlth+} (You bought it in a shop on level 3 of the
                  | Vaults)
 51862 | Vaults:3 | Bought a pair of embroidered gloves for 232 gold pieces
 51983 | Vaults:3 | Found Meczuatt's Antique Armour Emporium.
 51990 | Vaults:3 | Bought a pair of runed boots for 255 gold pieces
 52162 | Vaults:3 | Reached skill level 21 in Armour
 52253 | Vaults:3 | Found Ilukhoud's Book Boutique.
 52515 | Vaults:3 | Reached skill level 22 in Armour
 52539 | Vaults:3 | Acquired the +2 pair of boots of Stoicism {+Inv Regen+
                  | Int-4 Slay+2}
 52893 | Vaults:3 | Reached skill level 23 in Armour
 53311 | Vaults:4 | Reached skill level 24 in Armour
 53726 | Vaults:4 | Identified the +0 plate armour "Cuca" {Regen+ Int+3}
 53759 | Vaults:4 | Reached skill level 25 in Armour
 53876 | Vaults:4 | Found a shimmering blue altar of Sif Muna.
 54051 | Vaults:4 | Found a glowing silver altar of Zin.
 54388 | Vaults:4 | Upgraded the game from 0.34-a0-723-ge448dd4 to
                  | 0.34-a0-725-gf7730aa
 54390 | Vaults:5 | Entered Level 5 of the Vaults
 54398 | Vaults:5 | Reached skill level 26 in Armour
 54517 | Vaults:5 | Identified the +1 glaive "Loje" {protect, rF+}
 54531 | Vaults:4 | Reached skill level 27 in Armour
 54531 | Vaults:4 | Reached XP level 25. HP: 145/255 MP: 35/35
 54616 | Vaults:5 | Noticed Xtahua
 54657 | Vaults:4 | Killed Xtahua
 55158 | Vaults:5 | Reached skill level 19 in Invocations
 55159 | Vaults:5 | Noticed an ancient lich
 55178 | Vaults:5 | Killed an ancient lich
 55453 | Vaults:5 | Identified the amulet of the Hurting Gods {Faith Harm
                  | rPois}
 55695 | Vaults:5 | Identified the dragon-coil talisman of Weightlessness {rN+
                  | Dex-2 Slay+5}
 55705 | Vaults:5 | Identified the +4 great sword of Squeaky Tenacity {heavy,
                  | rF- rC+++ Int+5 Dex-4}
 55709 | Vaults:5 | Identified the +3 leather armour "Taworch" {rN+ Str-5
                  | Int+2}
 55745 | Vaults:5 | Identified the amulet of Terra Nullius {Wildshape rC+ rN+
                  | Will-}
 55938 | Vaults:5 | Found Ikhlar's Armour Shoppe.
 56040 | Vaults:5 | Acquired 268 gold pieces
 56210 | Vaults:5 | Got a silver rune of Zot
 56335 | Vaults:5 | Identified the +8 orcbow of Gueg {elec, rPois Will+ Str+4}
 56817 | D:11     | Bought 5 javelins for 240 gold pieces
 56973 | Elf:2    | Bought a scroll of acquirement for 1352 gold pieces
 56973 | Elf:2    | Bought a potion of resistance for 260 gold pieces
 56973 | Elf:2    | Acquired 988 gold pieces
 57323 | Zot:1    | Entered Level 1 of the Realm of Zot
 57325 | Zot:1    | Noticed an electric golem
 57326 | Zot:1    | Noticed an electric golem
 57339 | Zot:1    | Killed an electric golem
 57340 | Zot:1    | Reached skill level 20 in Invocations
 57340 | Zot:1    | Killed an electric golem
 57350 | Zot:1    | Noticed an electric golem
 57372 | Zot:1    | Killed an electric golem

Vanquished Creatures
  A dread lich (Crypt:3)
  Mara (Depths:3)
  4 ancient liches
  Mennas (Depths:3)
  Xtahua (Vaults:4)
  Josephina (Depths:4)
  Parghit (Depths:4)
  Margery (Depths:3)
  2 caustic shrikes (Depths:3)
  2 golden dragons
  A wyrmhole (Depths:3)
  A vampire bloodprince (Crypt:3)
  A bone dragon (Crypt:3)
  3 electric golems (Zot:1)
  A hellephant (Depths:3)
  Jorgrun (Shoals:1)
  2 walking crystal tomes
  4 tentacled monstrosities
  7 liches
  10 guardian sphinxes
  Boris (twice) (Depths:4 Crypt:3)
  A walking earthen tome (Depths:3)
  3 undying armouries (Vaults:5)
  A deep elf blademaster (Elf:3)
  2 walking divine tomes (Depths:3)
  4 quicksilver dragons
  8 titans
  3 sphinx marauders
  4 deep elf master archers (Elf:3)
  A kraken (Shoals:3)
  Polyphemus (Shoals:2)
  Gastronok (D:8)
  Xak'krixis (Spider:3)
  12 tengu reavers
  9 shadow dragons
  5 storm dragons
  4 revenant soulmongers
  Ilsuiw (Shoals:4)
  A nagaraja (Depths:1)
  9 fire giants
  3 draconian knights
  8 frost giants
  7 chonchones
  4 emperor scorpions
  5 iron dragons
  9 deep elf sorcerers
  14 vault wardens
  10 deep elf elementalists
  A balrug (Depths:2)
  5 ghost moths
  A curse skull (Crypt:1)
  5 ghouls
  A reaper (Crypt:2)
  2 orc warlords
  15 ironbound preservers
  A draconian annihilator (Zot:1)
  5 spriggan defenders
  3 formless jellyfish
  9 stone giants
  2 broodmothers
  8 very ugly things
  3 ironbound thunderhulks
  Nessos (Lair:5)
  3 death knights
  4 deep elf demonologists
  3 green draconians
  8 deep elf death magi
  A black draconian (Zot:1)
  A purple draconian (Zot:1)
  7 vampire knights
  11 deep elf annihilators
  5 dire elephants
  5 ironbound mechanists
  A minotaur (Gauntlet)
  2 white draconians
  8 war gargoyles
  A juggernaut zombie (Crypt:1)
  2 red draconians (Depths:4)
  Azrael (Elf:2)
  5 spark wasps
  6 cognitogaunts
  11 eidola
  8 kobold fleshcrafters
  8 ettins
  3 ironbound beastmasters
  2 jiangshi (Crypt:3)
  11 merfolk javelineers
  11 crystal guardians
  6 great orbs of eyes
  10 fire dragons
  7 merfolk impalers
  6 deep elf high priests
  5 entropy weavers
  A rakshasa (Depths:1)
  30 vault guards
  14 yaktaur captains
  4 ice dragons
  6 peacekeepers
  3 ogre magi
  7 spriggan air magi
  9 hydras
  5 merfolk avatars
  8 radroaches
  14 centaur warriors
  3 jorogumos (Spider:4)
  5 catoblepae
  10 boulder beetles
  4 alligator snapping turtles (Shoals:4)
  2 ghost crabs (Crypt:3)
  2 two-headed ogres (shapeshifter) (Vaults:5)
  5 deep troll shamans
  2 satyrs
  18 two-headed ogres
  2 merfolk aquamancers (Shoals:4)
  19 death yaks
  5 deep troll earth magi (Depths:2)
  19 dancing weapons
  7 demonic crawlers
  11 tengu warriors
  A shock serpent (shapeshifter) (Depths:3)
  8 vampire magi
  Urug (Orc:2)
  9 ironbound frosthearts
  3 orc high priests (Orc:2)
  4 occultists
  14 hell knights
  6 spriggan berserkers
  A soul eater (Crypt:1)
  7 deep elf knights
  6 skysharks (Shoals:1)
  A fire crab (shapeshifter) (D:14)
  27 skeletal warriors
  Amaemon (Lair:1)
  Sonja (Lair:5)
  15 crawling flesh cages
  6 iron trolls
  9 pharaoh ants
  A shadow wraith (Crypt:2)
  13 sea snakes
  13 deep elf archers
  40 deep trolls
  A mana viper (shapeshifter) (D:14)
  3 flayed ghosts
  A swamp dragon (shapeshifter) (Depths:3)
  6 glowing orange brains
  12 orb spiders
  A glowing orange brain (shapeshifter) (Depths:3)
  A sun moth (Spider:3)
  11 arcanists
  15 ironbound convokers
  6 phantasmal warriors
  4 thermic dynamos
  8 lindwurms
  A steelbarb worm (shapeshifter) (Depths:3)
  6 steelbarb worms
  9 harpies
  9 necromancers
  19 orc knights
  13 deep elf zephyrmancers
  21 deep elf pyromancers
  Sprozz (D:7)
  26 wolf spiders
  7 orc sorcerers
  20 ugly things
  16 cyclopes
  11 fauns
  A shining eye (Gauntlet)
  18 manticores
  6 polterguardians
  A faun (shapeshifter) (Depths:3)
  A manticore (shapeshifter) (Elf:2)
  Maurice (D:8)
  3 moths of wrath
  6 meliai
  15 merfolk sirens
  14 elephants
  4 kobold blastminers (Orc:2)
  Joseph (D:7)
  A black mamba (shapeshifter) (D:14)
  7 black mambas
  3 ice statues (IceCv)
  23 vault sentinels
  8 water nymphs
  2 guardian sphinx simulacra (Vaults:2)
  An orange demon (Lair:1)
  8 torpor snails
  A titan simulacrum (Depths:4)
  A titan zombie (Crypt:2)
  5 gargoyles
  2 quicksilver dragon draugrs
  A quicksilver dragon zombie (Crypt:2)
  12 cane toads
  A cane toad (shapeshifter) (Elf:2)
  A rime drake (shapeshifter) (D:14)
  3 kobold demonologists
  2 rime drakes (Lair:3)
  9 komodo dragons
  A yaktaur (shapeshifter) (D:14)
  2 efreet (D:14)
  27 yaktaurs
  Cassandra (D:10)
  2 freezing wraiths
  A komodo dragon (shapeshifter) (Vaults:5)
  A shadow dragon zombie (Crypt:3)
  A storm dragon zombie (D:15)
  10 tengu conjurers
  A fenstrider witch zombie (Crypt:1)
  8 trolls
  35 merfolk
  2 polar bears
  A polar bear (shapeshifter) (D:14)
  8 wind drakes
  9 spriggans
  10 hornets
  2 spriggan draugrs (Crypt:2)
  A spriggan simulacrum (Depths:4)
  26 tarantellas
  A stone giant simulacrum (Crypt:1)
  2 stone giant zombies (Crypt:3)
  26 jumping spiders
  4 glass eyes
  31 blink frogs
  A raiju (Gauntlet)
  18 dream sheep
  7 snapping turtles
  2 dire elephant simulacra (IceCv)
  A red draconian draugr (Crypt:1)
  A white draconian draugr (Crypt:1)
  A bunyip zombie (Crypt:1)
  37 slime creatures
  An ettin simulacrum (Crypt:1)
  An ettin zombie (Crypt:3)
  6 fire dragon draugrs (Crypt:3)
  A fire dragon simulacrum (D:14)
  Blorkula the orcula (D:6)
  8 shadowghasts
  24 culicivoras
  4 air elementals
  A wyvern (Lair:2)
  A hydra zombie (Crypt:1)
  7 vampires
  13 water elementals
  A demonspawn draugr (Crypt:2)
  10 wraiths
  3 anaconda zombies
  2 centaur draugrs
  2 centaur simulacra
  A centaur zombie (Crypt:3)
  An alligator snapping turtle zombie (Crypt:2)
  39 yaks
  2 death yak simulacra (IceCv)
  3 spriggan zombies
  A naga draugr (Crypt:3)
  3 fire elementals (Elf:2)
  2 human simulacra (Depths:3)
  Grum (D:8)
  4 basilisks
  11 wargs
  65 redbacks
  2 steam dragons (Gauntlet)
  13 vampire mosquitoes
  A mana viper zombie (Crypt:2)
  An orb spider simulacrum (Spider:3)
  6 human draugrs
  A lindwurm draugr (Vaults:2)
  An acid dragon (D:10)
  2 harpy draugrs
  3 harpy zombies (Crypt:3)
  4 hell hounds
  18 water moccasins
  2 wolf spider simulacra
  17 orc warriors
  A salamander zombie (Crypt:1)
  2 swamp drakes (Lair:1)
  2 ice beasts
  2 sky beasts
  A black bear (D:6)
  13 laughing skulls
  A meliai simulacrum (Spider:3)
  7 ogres
  A boggart (shapeshifter) (Elf:3)
  7 wolves
  5 boggarts (D:14)
  A black mamba draugr (Crypt:3)
  A black mamba simulacrum (Crypt:1)
  A black mamba zombie (Crypt:3)
  23 centaurs
  3 cane toad simulacra (IceCv)
  14 kobold brigands
  9 bullfrogs
  13 gnoll sergeants
  2 earth elementals
  3 scorpions
  A marrowcuda (D:8)
  2 polar bear simulacra
  A hornet simulacrum (D:14)
  4 tarantella simulacra
  2 jumping spider simulacra
  A bes kemwar (D:6)
  5 vampire bats (D:6)
  11 killer bees
  5 culicivora simulacra
  10 howler monkeys
  A bombardier beetle (D:6)
  4 redback simulacra (Spider:2)
  3 hounds
  17 orc priests
  12 gnoll boudas
  2 jellies
  A swamp worm zombie (Crypt:1)
  A drude (D:6)
  5 iguanas
  A sleepcap (D:5)
  24 orc wizards
  An ice beast zombie (Crypt:2)
  A brain worm zombie (Crypt:2)
  23 gnolls
  7 adders
  A lava snake zombie (Crypt:1)
  A jelly zombie (Crypt:2)
  4 ufetubi (D:6)
  4 dart slugs
  54 orcs
  A river rat draugr (Crypt:2)
  8 endoplasms
  3 giant cockroaches
  4 hobgoblins
  A quokka (D:2)
  7 ball pythons
  8 bats
  3 frilled lizards
  5 goblins
  5 kobolds
  An orc draugr (Crypt:2)
  8 rats
2141 creatures vanquished.

Vanquished Creatures (others)
  A war gargoyle (Vaults:5)
  An ogre mage (D:14)
  A vampire mage (Depths:1)
  An ironbound convoker (Vaults:5)
  A polterguardian (Vaults:5)
  A titan simulacrum (Depths:4)
  A shadow dragon simulacrum (Depths:4)
  A merfolk (Shoals:4)
  A spriggan simulacrum (Depths:4)
  An orc wizard (D:10)
  An orc (Vaults:5)
11 creatures vanquished.

Grand Total: 2152 creatures vanquished

Table legend: (Time is in decaauts)
 A = Elapsed time spent in this place.
 B = Non-inter-level travel time spent in this place.
 C = Inter-level travel time spent in this place.
 D = Time resting spent in this place.
 E = Time spent auto-exploring this place.
 F = Levels seen in this place.
 G = Mean time per level.
                   A        B        C        D        E      F       G
               +--------+--------+--------+--------+--------+-----+--------+
         Total |  92568 |  81639 |  10929 |  11276 |  51954 |  49 | 1889.1 |
       Dungeon |  22307 |  18864 |   3443 |   1345 |  13392 |  15 | 1487.1 |
          Lair |  11972 |  10839 |   1133 |   1806 |   7615 |   5 | 2394.4 |
        Shoals |   7951 |   7563 |    388 |    933 |   4911 |   4 | 1987.8 |
   Spider Nest |   8053 |   7113 |    940 |   1286 |   3731 |   4 | 2013.2 |
  Orcish Mines |   3528 |   2530 |    998 |    127 |   1943 |   2 | 1764.0 |
   Elven Halls |   6416 |   5544 |    872 |    859 |   3043 |   3 | 2138.7 |
        Vaults |  13929 |  11889 |   2040 |   1424 |   8154 |   5 | 2785.8 |
         Crypt |   7402 |   6935 |    467 |   1251 |   4183 |   3 | 2467.3 |
        Depths |   9569 |   8925 |    644 |   1880 |   4697 |   4 | 2392.2 |
           Zot |    105 |    105 |      0 |     37 |      0 |   1 |  105.0 |
         Trove |    407 |    407 |      0 |      0 |    280 |   1 |  407.0 |
      Ice Cave |    580 |    580 |      0 |    321 |      2 |   1 |  580.0 |
      Gauntlet |    345 |    345 |      0 |      4 |      0 |   1 |  345.0 |
               +--------+--------+--------+--------+--------+-----+--------+

Top non-repeatable levels by time:
  Lair:5: 3590 daAuts
 Crypt:3: 3499 daAuts
Vaults:4: 3427 daAuts
    D:10: 3141 daAuts
Vaults:3: 3048 daAuts
Vaults:2: 3012 daAuts
   Elf:3: 2779 daAuts
    D:14: 2726 daAuts
Spider:1: 2720 daAuts
Depths:4: 2649 daAuts
Depths:3: 2417 daAuts
  Lair:2: 2394 daAuts
Vaults:5: 2371 daAuts
   Orc:2: 2311 daAuts
 Crypt:1: 2284 daAuts

Table legend:
 A = Non-vault XP
 B = Vault XP
 C = Vault XP percentage of total XP
 D = Non-vault monster count
 E = Vault monster count
 F = Vault count percentage of total count

                 A         B        C        D         E        F   
            +---------+---------+-------+---------+---------+-------
      Total |  583452 |  618453 |  51.5 |    1293 |     806 |  38.4
            +---------+---------+-------+---------+---------+-------
        D:1 |      20 |       2 |   9.1 |      14 |       2 |  12.5
        D:2 |      78 |       0 |   0.0 |      23 |       0 |   0.0
        D:3 |     133 |       0 |   0.0 |      26 |       0 |   0.0
        D:4 |     279 |       6 |   2.1 |      17 |       2 |  10.5
        D:5 |     455 |     109 |  19.3 |      10 |       6 |  37.5
        D:6 |    1165 |     238 |  17.0 |      21 |       3 |  12.5
        D:7 |    1574 |    1070 |  40.5 |      27 |       3 |  10.0
        D:8 |     521 |    2461 |  82.5 |       6 |       5 |  45.5
        D:9 |    3215 |     149 |   4.4 |      14 |       7 |  33.3
       D:10 |    3123 |    9689 |  75.6 |      20 |      50 |  71.4
       D:11 |    6742 |       0 |   0.0 |      25 |       0 |   0.0
       D:12 |    4436 |       0 |   0.0 |      19 |       0 |   0.0
       D:13 |    9928 |       0 |   0.0 |      30 |       0 |   0.0
       D:14 |   12538 |   29331 |  70.1 |      33 |      51 |  60.7
       D:15 |    8767 |    4258 |  32.7 |      26 |       7 |  21.2
     Lair:1 |    7588 |    1807 |  19.2 |      25 |       6 |  19.4
     Lair:2 |    4449 |    1583 |  26.2 |      17 |       5 |  22.7
     Lair:3 |    4878 |    1216 |  20.0 |      13 |       3 |  18.8
     Lair:4 |    9340 |     558 |   5.6 |      28 |       2 |   6.7
     Lair:5 |   18545 |   14702 |  44.2 |      49 |      27 |  35.5
   Shoals:1 |   22750 |    1873 |   7.6 |      40 |       1 |   2.4
   Shoals:2 |   12867 |    3903 |  23.3 |      28 |       4 |  12.5
   Shoals:3 |   15765 |    8830 |  35.9 |      35 |       8 |  18.6
   Shoals:4 |   12777 |   27417 |  68.2 |      32 |      46 |  59.0
   Spider:1 |   20963 |       0 |   0.0 |      61 |       0 |   0.0
   Spider:2 |   19151 |       0 |   0.0 |      51 |       0 |   0.0
   Spider:3 |   19061 |    7048 |  27.0 |      36 |       9 |  20.0
   Spider:4 |   21508 |   18780 |  46.6 |      50 |      35 |  41.2
      Orc:1 |    2797 |       0 |   0.0 |      20 |       0 |   0.0
      Orc:2 |    3250 |    9177 |  73.8 |      24 |      24 |  50.0
      Elf:1 |   13973 |   12564 |  47.3 |      23 |      14 |  37.8
      Elf:2 |   10841 |    9035 |  45.5 |      17 |      14 |  45.2
      Elf:3 |   15140 |   31483 |  67.5 |      26 |      26 |  50.0
   Vaults:1 |   15585 |   17544 |  53.0 |      21 |      25 |  54.3
   Vaults:2 |   26874 |   31476 |  53.9 |      43 |      48 |  52.7
   Vaults:3 |   21445 |   32360 |  60.1 |      25 |      40 |  61.5
   Vaults:4 |   33552 |   54145 |  61.7 |      48 |      51 |  51.5
   Vaults:5 |   11087 |   80349 |  87.9 |      24 |      72 |  75.0
    Crypt:1 |   19638 |     941 |   4.6 |      37 |       1 |   2.6
    Crypt:2 |   23077 |    5088 |  18.1 |      42 |       6 |  12.5
    Crypt:3 |    1678 |   60373 |  97.3 |       1 |      80 |  98.8
   Depths:1 |   22915 |   16482 |  41.8 |      27 |      12 |  30.8
   Depths:2 |   34199 |   23509 |  40.7 |      48 |      23 |  32.4
   Depths:3 |   21039 |   66409 |  75.9 |      23 |      44 |  65.7
   Depths:4 |   42638 |   22591 |  34.6 |      54 |      19 |  26.0
      Zot:1 |   21108 |       0 |   0.0 |      14 |       0 |   0.0
      IceCv |       0 |    3538 | 100.0 |       0 |      13 | 100.0
   Gauntlet |       0 |    6359 | 100.0 |       0 |      12 | 100.0
            +---------+---------+-------+---------+---------+-------
Edit

Pub: 03 Sep 2025 00:57 UTC

Views: 15