-
Notifications
You must be signed in to change notification settings - Fork 8
/
feed.rss
1739 lines (1688 loc) · 148 KB
/
feed.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<title>Dungeon Crawl Stone Soup</title>
<atom:link href="http://crawl.develz.org/wordpress/feed" rel="self" type="application/rss+xml" />
<link>http://crawl.develz.org/wordpress</link>
<description>Development live!</description>
<lastBuildDate>Sat, 24 Jan 2015 04:35:45 +0000</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=3.2.1</generator>
<item>
<title>Trunk updates, 23 January 2015</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-23-january-2015</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-23-january-2015#comments</comments>
<pubDate>Sat, 24 Jan 2015 04:35:24 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3073</guid>
<description><![CDATA[Hi, crawlers! The newest changes, organized by a completely arbitrary and arguably meaningless set of priorities: Major: Shoals tides have been reworked: they now shift only between shallow water & land, never creating or destroying deep water tiles. They also move fifteen times faster. New fake language: ‘butt’. To quote the purpose statement of the [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! The newest changes, organized by a completely arbitrary and arguably meaningless set of priorities:</p>
<ul>
<li>Major:
<ul>
<li>Shoals tides have been reworked: they now shift only between shallow water & land, never creating or destroying deep water tiles. They also move fifteen times faster.</li>
<li>New fake language: ‘butt’. To quote the purpose statement of <a href="https://code.google.com/p/buttbot/">the original</a>:
<p>Buttbot is a social experiment in humour and interaction, it<br />
playfully mocks those around it. Almost deconstructionist in<br />
nature by manipulating the context of the text it parodies,<br />
it forces people to reexamine what has been said in a new light.</p>
<p> It builds on the tradition of mechanising surrealist techniques,<br />
such as example Dadadodo by Jwz implementing the cut-up technique<br />
made famous by William S. Burroughs (and used by Radiohead).<br />
However instead of merely rearranging the content, buttbot aims<br />
to augment it with the simplistic low brow humour.</p>
<p> The use of puerile humour is mainly to bring the conversation<br />
back down to earth, to remind us that in our intellectual pursuits<br />
that childish references to anatomy can bring a smile to our<br />
faces…</li>
<li>Fake languages are now stackable. Try adding “fake_lang = dwarven,!!!” to your rcfile, or see the <a href="http://s-z.org/neil/git/?p=crawl.git;a=blob_plain;f=crawl-ref/docs/options_guide.txt;hb=HEAD">options guide</a> for more languages and options.</li>
<li>New rcfile option: “easy_door”, which toggles whether or not to ask for a prompt when (C)losing doors if only one open door is adjacent. (For consistency.) Defaults to true.</li>
<li>add_autopickup_func() rcfile functionality has changed; returning false now signifies that corresponding items should never be picked up. I am told that if your autopickup is broken by this, you should do the following: “in the function passed to add_autopickup_func, change return false to return nil and change return a and b or c and d to return (a and b or c and d) or nil”. If you don’t understand that (I’m not super confident on it myself), maybe just delete the relevant functions and hope for the best.</li>
<li>Evocables now charge & discharge per-type, rather than individually. (That is, whenever you use a lamp of fire, all lamps of fire are unuseable until you gain enough xp to recharge it.) The elemental spirits are whimsical beings…</li>
</ul>
</li>
<li>Moderate:
<ul>
<li>Light armour now has a small penalty to spellcasting success chance, and heavy armour’s penalties to spellcasting are slightly reduced.</li>
<li>Bucklers now have a very slightly smaller encumbrance penalty.</li>
<li>Shields’ evasion penalties, & the skill required to completely mitigate them, are now displayed in their descriptions.</li>
<li>Caustic shrikes, after being nerfed, buffed, nerfed, and nerfed, have been buffed. Specifically, they’re now somewhat buffer, and less likely to appear when polymorphing earlier, weaker creatures. Celebrate!</li>
<li>Natasha has traded her Mephitic Cloud for Conjure Flame, which she’ll use to try to block off the player’s avenues of manuever. (She had a bad habit of walking into her own mephitic clouds. Ridiculous cat…)</li>
<li>All book tiles have been completely replaced.</li>
<li>New tiles for several uniques. Check out Nikola’s new look, just before the next time he electrocutes you to death!</li>
<li>Gargoyles, being statues, can no longer cast Statue Form.</li>
<li>Exploration piety no longer scales by the size of the level; it now is based solely on the number of tiles explored. (Early Ziggurat levels no longer give enormous amounts of Ash/Nemelex piety.)</li>
<li>Throwing net range no longer varies by the size of the player; all races can now throw them to the edge of LOS, up from 5 squares for most races, 6 squares for ogres, 4 for halflings & kobolds, & a mere 3 squares for spriggans.</li>
<li>The Tome of Destruction has been utterly destroyed.</li>
<li>All non-permanent summoned monsters are now unable to use stairs.</li>
<li>Trog’s wrath summons are now permanent.</li>
<li>rPois- items now prevent the player from reaching rPois+.</li>
</ul>
</li>
<li>Minor:
<ul>
<li>Item descriptions no longer claim that rPois- “protects against poison”.</li>
<li>It is no longer possible to instantly die from putting on a -hp item, or from having your last maximum hit point rotted away, or by being tormented at 1 hp while at rN-.</li>
<li>You can no longer drink !poison, !decay or !degeneration if you know what they are and are not immune to them. Crawl does <b>not</b> encourage self-destructive drinking among its players.</li>
<li>Hell rats no longer appear in the Sewers.</li>
<li>Hexes with a 100% success chance should no longer fail.</li>
<li>+Twstr and +-HP have been removed from randart generation.</li>
<li>Artefacts can no longer spawn with both “cause random teleportation” and “prevent all teleportation” properties.</li>
<li>Mummies can no longer be trapped in an infinite loop when calling for merchants.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-23-january-2015/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Trunk updates, 15 January 2015</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-15-january-2015</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-15-january-2015#comments</comments>
<pubDate>Fri, 16 Jan 2015 04:01:13 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3067</guid>
<description><![CDATA[Hi, crawlers! Your changes for today: Random artefact generation has been reworked. Artefact property distribution is now considerably more structured, and there’s now a weak correlation between bad & good properties (an artefact with a few good properties is now less to have bad ones, and vice versa). New, rare property: +Twstr, which, when evoked, [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Your changes for today:</p>
<ul>
<li>Random artefact generation has been reworked.
<ul>
<li>Artefact property distribution is now considerably more structured, and there’s now a weak correlation between bad & good properties (an artefact with a few good properties is now less to have bad ones, and vice versa).</li>
<li>New, rare property: +Twstr, which, when evoked, summons a hostile twister nearby. Its winds shred everything nearby – including you, if you’re not light on your feet!</li>
<li>Other new properties: Regen+, HP+-, MP+-, rPois-, rN-, and probably a few others I’m forgetting.</li>
<li>Artefact stats now range +-2-6, up from +-1-5.</li>
</ul>
</li>
<li>Acid walls now display the ‘acid floor tile’ all around themselves, even when outside Slime. Should help discourage a few accidental acid deaths…</li>
<li>Irradiate now has an animation – console-only for now, until I make some decent tiles for it.</li>
<li>When following Ashenzari, (p) now sacrifices one scroll at a time, and tells you which scrolls were created.</li>
<li>Gozag food shops are now 2/3rds as pricey.</li>
<li>Cigotuvi’s Embrace no longer hurls hundreds of corpses across the floor (visually). Maximum five animated corpse movements per casting. Sorry (?), zig-spammers. (The actual functionality of the spell is unchanged; this is just visual.)</li>
<li>Applying Excruciating Wounds and Warp Weapon in succession (in either order) no longer permanently changes weapons’ brands.</li>
<li>Good news – &^Ib works again!</li>
<li>Invisible giant eyeball messages have been disambiguated.</li>
<li>Confused terrified fungi stumble around.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-15-january-2015/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Trunk updates, 7 January 2015</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-7-january-2015</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-7-january-2015#comments</comments>
<pubDate>Thu, 08 Jan 2015 04:23:00 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3064</guid>
<description><![CDATA[Hi, crawlers! First changes of the new year: Blurry vision’s effect has been reduced; it now adds a delay of 0.5/1/2 turns (by mutation level), down from 1/2/3. It should now be possible to safely cancel controlled & semicontrolled blink in most situations. New rcfile option, fail_severity_to_confirm, allowing you to set a threshold of spell [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! First changes of the new year:</p>
<ul>
<li>Blurry vision’s effect has been reduced; it now adds a delay of 0.5/1/2 turns (by mutation level), down from 1/2/3.</li>
<li>It should now be possible to safely cancel controlled & semicontrolled blink in most situations.</li>
<li>New rcfile option, fail_severity_to_confirm, allowing you to set a threshold of spell failure rates above which the game will warn & prompt you before casting. The default is to prompt at dark red failure (very high to guaranteed).</li>
<li>Hydra form now only gives +30% HP (down from +50%), and gives half as much healing when devouring enemies.</li>
<li>Gargoyles no longer get 4 less AC from Statue Form than every other race.</li>
<li>Various new tiles, mainly for uniques: check out Eustachio’s sweet ‘stache the next time you see him!</li>
<li>The demonic rune now has a random tile.</li>
<li>Baileys have had their oriflamme replaced with a portcullis.</li>
<li>?/I now lists the contents of decks.</li>
<li>The deck of oddities is now documented in-game.</li>
<li>The deck of summonings has been renamed; it is now the deck of summoning.</li>
<li>Yaktaurs are now slightly more dangerous.</li>
<li>Wasp monsters have been renamed: red wasps are now known as ‘hornets’, and yellow wasps are now just ‘wasps’.</li>
<li>Boring beetles can no longer teleport onto the player in D:1.</li>
<li>There’s a commit here which uses the word “retrogdorise”, and I’m gonna be honest, I don’t care about what the commit does. I’m not even gonna read it. I just wanted to share that with you.</li>
<li>Held weapons no longer apply their brands to thrown weapons.</li>
<li>rElec now protects against lightning.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-7-january-2015/feed</wfw:commentRss>
<slash:comments>1</slash:comments>
</item>
<item>
<title>Trunk updates, 31 December 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-31-december-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-31-december-2014#comments</comments>
<pubDate>Wed, 31 Dec 2014 21:36:51 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3056</guid>
<description><![CDATA[Hi, crawlers! Last changelog of the year: New trap: the Shadow Trap, appearing from d:3 downward. Any non-summoned creature that moves into it will summon a small group of shadow creatures from the current level, which are always hostile to the player. Traps are now more common in most parts of the game, and considerably [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Last changelog of the year:</p>
<ul>
<li>New trap: the Shadow Trap, appearing from d:3 downward. Any non-summoned creature that moves into it will summon a small group of shadow creatures from the current level, which are always hostile to the player.</li>
<li>Traps are now more common in most parts of the game, and considerably less common in Slime.</li>
<li>Elemental evocables now stack.</li>
<li>?/ has been considerably improved, and a new ?/c(L)oud option has been added.</li>
<li>When examining features with clouds over them, both the description of the feature & the cloud are now displayed.</li>
<li>Maxwell’s Patent Armour has been moved back toward its old egos; it now has rCorr rElec instead of Resistance.</li>
<li>Cleaving’s damage to secondary targets has been reduced from 75% to 70%.</li>
<li>A number of rock wall tiles have been replaced or reworked; in particular, Sewers no longer have acid wall tiles.</li>
<li>Megazigs no longer sometimes place the player in the centre of the floor.</li>
<li>The MP cost of the wand-power mutation has been halved; it now costs 3 MP per wand use per level, down from 6.</li>
<li>Ru now applies antimagic to enemies, rather than Muting them.</li>
<li>Dithmenos no longer sometimes considers steam to be a source of fire.</li>
<li>Ironheart Preservers now have significantly worse defenses, but significantly more HP. This may make it worthwhile to bother actually attacking them.</li>
<li>Call Imp now becomes stronger at high power, instead of becoming weaker.</li>
<li>Linux and OS X no longer double all numpad inputs.</li>
<li>?/K no longer lists the skills “Stabbing”, “Traps”, “rat”, and “bat”.</li>
<li>Chokoban has been upgraded.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-31-december-2014/feed</wfw:commentRss>
<slash:comments>5</slash:comments>
</item>
<item>
<title>Trunk updates, 23 December 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-23-december-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-23-december-2014#comments</comments>
<pubDate>Wed, 24 Dec 2014 04:10:28 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3052</guid>
<description><![CDATA[Hi, crawlers! Another quiet week: Spells & abilities that check enemy MR now display their success chance in the targeting interface. Examining monsters’ spells now allows you to see their chance of affecting you with MR-checking spells. Ru’s Draw Out Power drain has increased by 20%, and the odds of Apocalypse applying status effects has [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Another quiet week:</p>
<ul>
<li>Spells & abilities that check enemy MR now display their success chance in the targeting interface.</li>
<li>Examining monsters’ spells now allows you to see their chance of affecting you with MR-checking spells.</li>
<li>Ru’s Draw Out Power drain has increased by 20%, and the odds of Apocalypse applying status effects has increased from 3/5 to 3/4.</li>
<li>Troves that ask for the Horn of Geryon now actually take it, instead of just requesting that you present it.</li>
<li>Ashenzari no longer suppresses blurry vision.</li>
<li>Hydra Form’s duration has been increased considerably; it’s now roughly the same as Blade Hands’.</li>
<li>Dragon Form no longer enhances Dragon’s Call.</li>
<li>The rock walls of the stone huts in Shoals:5 now actually look like rock in Tiles.</li>
<li>Elemental weapon brands now only have their damage multiplied by 1.5x for each level of negative resistance the target has (e.g. rC-), down from 2x. This is consistent with the extra damage that all other sources of elemental damage get.</li>
<li>Orcish allies no longer cast Animate Dead for Beoghites.</li>
<li>The Iron Rod’s scaling with spellpower has been considerably reduced; it probably no longer one-shots the toughest monsters in the game.</li>
<li>The Arc Blade’s discharge effect has been fixed; it now arcs repeatedly to multiple targets rather than only affecting one, making it considerably more powerful.</li>
<li>Sif now gives penance for destroying books, again.</li>
</ul>
<p>Happy crawling, and enjoy the holidays!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-23-december-2014/feed</wfw:commentRss>
<slash:comments>1</slash:comments>
</item>
<item>
<title>Trunk updates, 15 December 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-15-december-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-15-december-2014#comments</comments>
<pubDate>Tue, 16 Dec 2014 03:47:59 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3048</guid>
<description><![CDATA[Hi, crawlers! It’s been a quiet week for changes: Monster spells can now be examined through the xv screen, in the same way as with books & rods (that is, by hitting a letter corresponding to the spell). At present, this lets you see the description and range of their spells. Cigotuvi’s Embrace has been [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! It’s been a quiet week for changes:</p>
<ul>
<li>Monster spells can now be examined through the xv screen, in the same way as with books & rods (that is, by hitting a letter corresponding to the spell). At present, this lets you see the description and range of their spells.</li>
<li>Cigotuvi’s Embrace has been reworked; the rate at which corpses fall off is now based purely on the number currently stacked on the player, and spellpower instead increases the amount of AC+SH per corpse, from a base of 0.5 AC+SH per corpse to a cap of 1.5 AC+SH at the new max of 100 power. Skeletons now count the same as other corpses for Cigotuvi’s purposes.</li>
<li>Gell’s Gravitas now has a small chance of confusing creatures pulled by it, based on spellpower and on victims’ MR.</li>
<li>A new “item_slot” rcfile has been added, to allow you to specify which letter correspond to which items by default. Works like the spell_slot option.</li>
<li>Quite a lot of tiles have been tweaked; notably the Singularity & Sublimation of Blood spell icons, but also many many monsters, which now incorporate advanced artistic techniques such as ‘perspective’. Check out hippogrives!</li>
<li>Xom’s mood meter has been added to webtiles.</li>
<li>Shard shrike packs can no longer spawn as hell effects in Cocytus; in general, the Cocytus hell effect spawn list has been reworked.</li>
<li>Lava snakes can spit again. (They accidentally lost the ability to spit several months ago.)</li>
<li>Chaos Champions can no longer give the player Resistance for 4000 turns.</li>
<li>Gyre & Gimble can now strike up to 16 times in a single attack. (With the help of the Blade card.)</li>
<li>Artefacts may now again be named “of the Doge”.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-15-december-2014/feed</wfw:commentRss>
<slash:comments>3</slash:comments>
</item>
<item>
<title>Trunk updates, 8 December 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-8-december-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-8-december-2014#comments</comments>
<pubDate>Tue, 09 Dec 2014 05:49:19 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3042</guid>
<description><![CDATA[Hi, crawlers! Some fun new toys to play with this week: New artefact: Gyre and Gimble, two quickblades linked by a chain. It takes two hands to wield, but strikes twice for every attack. Dual-wielding is finally here……… New spell: Gell’s Gravitas, L6 Hexes/Translocations. Targets a creature & hurls all other nearby creatures toward it, [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Some fun new toys to play with this week:</p>
<ul>
<li>New artefact: Gyre and Gimble, two quickblades <a href="http://i.imgur.com/5dflcKs.png">linked by a chain</a>. It takes two hands to wield, but strikes twice for every attack. Dual-wielding is finally here………</li>
<li>New spell: Gell’s Gravitas, L6 Hexes/Translocations. Targets a creature & hurls all other nearby creatures toward it, causing damage to whichever ones collide. “Basically a one-turn Singularity”.</li>
<li>The ‘blurry vision’ mutation no longer causes scroll-reading to occasionally fail. Instead, it adds a delay before the player finishes reading the scroll (and gains the benefits): one turn per level of the mutation.</li>
<li>All non-shortblade weapons now stab equally well (or poorly), excepting felid claws, which now stab as well as shortblades. Clubs no longer have a chance of confusing ‘stabbed’ enemies. Ogre Enchanters and Assassins no longer start with clubs.</li>
<li>Armour penalties to dodging have been smoothed; there is no longer a breakpoint at which Dodging goes from giving zero EV to the normal rate. Instead, armour decreases the rate at which Dodging gives you EV. Sample numbers are <a href="http://pastebin.com/nKt9dqJH">here.</a></li>
<li>The Book of Wizardry has been removed; its spells have been redistributed.</li>
<li>Monsters created by Phantom Mirrors are now only two-thirds as strong as the original.</li>
<li>Orange rats have been renamed to hell rats, and are now demonic. They also glow in the dark.</li>
<li>The arbalest “Hellfire” has had its hellfire-explosion damage roughly doubled.</li>
<li>When active, Gozag’s gold now sparkles.</li>
<li>It is once again possible for bardings of flying to generate, after they were accidentally removed earlier this year.</li>
<li>Orc wizards can no longer confuse the player for 30+ turns.</li>
<li>The lords of Pandemonium can now buzz and croak.</li>
<li>Players in hell can no longer hear gut-wrenching screams while Silenced.</li>
<li>Goblins no longer continue their peaceful slumber after being hurled through the air.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-8-december-2014/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Trunk updates, 2 December 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-2-december-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-2-december-2014#comments</comments>
<pubDate>Wed, 03 Dec 2014 03:05:15 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3035</guid>
<description><![CDATA[Hi, crawlers! Last week was a little quieter, possibly because of some of our US devs visiting friends and family for the holiday weekend, rather than toiling away in the Crawl mines as they know they should. Still, a few changes to report: Potions of confusion have been befuddled out of existence. In their place [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Last week was a little quieter, possibly because of some of our US devs visiting friends and family for the holiday weekend, rather than toiling away in the Crawl mines as they know they should. Still, a few changes to report:</p>
<ul>
<li>Potions of confusion have been befuddled out of existence. In their place sit Potions of Ambrosia, which grant considerable health & magic regeneration for a short period, along with confusion. If the confusion is prevented (by e.g. clarity) or cured, the regeneration immediately ends.</li>
<li>Liches (and their ancient & antique friends) now have a much wider variety of spells available, rather than being restricted to a handful of spellbooks.</li>
<li>Singularity is now considerably stronger at low spellpower, and less powerful at very long range.</li>
<li>Makhleb now gives somewhat more piety for kills, and no longer accepts corpse sacrifice.</li>
<li>Xom now has a ‘mood meter’, looking suspiciously like the piety meter for other, more boring gods. (And yet somehow different…)</li>
<li>Gozag’s “shining gold” visual effect is now only present on the tile of the gold itself, rather than on surrounding tiles. In console, it’s now a different colour from normal gold.</li>
<li>Gozag’s “duplication” ability can now duplicate stacks of items.</li>
<li>A wide variety of quotes have been added, mainly for spells.</li>
<li>Pandemonium lords now come in a riotous variety of colour; they have a number of new tiles, and their text descriptions now match up with the tiles.</li>
<li>The Plane Papyrus has been renamed to the Akashic Record.</li>
<li>Various other tile tweaks; all potion tiles have been replaced, goblins & pals were reworked, the Seraph is now considerably taller, and wretched stars now have a worrying glow about them, among other changes.</li>
<li>Irradiate now offers a warning before harming allies.</li>
<li>The game no longer crashes whenever the player takes cloud damage.</li>
<li>Delayed Fireball is now back to being two schools, after a brief, yet torrid romance with the mysterious “Utility” school.</li>
<li>It is no longer possible to hit monsters so hard that their souls are completely obliterated.</li>
<li>Messaging has been improved for attempting to close doors on Orbs of Destruction.</li>
<li>Orb spiders no longer have poisonous bites.</li>
<li>Trees can no longer enter malign portals.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-2-december-2014/feed</wfw:commentRss>
<slash:comments>4</slash:comments>
</item>
<item>
<title>Trunk updates, 25 November 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-25-november-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-25-november-2014#comments</comments>
<pubDate>Wed, 26 Nov 2014 05:05:53 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3030</guid>
<description><![CDATA[Hi, crawlers! This week has been simply magical, by which I mean, full of spells. New spells. Two new spells. And a bunch of other changes: New spells: Cigotuvi’s Embrace, a L5 Necromancy spell that turns corpses into temporary AC & SH. The corpses slowly slough off over time & (sometimes) when the player is [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! This week has been simply magical, by which I mean, full of spells. New spells. Two new spells. And a bunch of other changes:</p>
<ul>
<li>New spells:
<ul>
<li>Cigotuvi’s Embrace, a L5 Necromancy spell that turns corpses into temporary AC & SH. The corpses slowly slough off over time & (sometimes) when the player is hit or blocks an attack. Found in the Book of Unlife and (sometimes) in Kikubaaqudgha’s second gift.</li>
<li>Singularity, a L9 Translocations spell that summons an all-devouring interdimensional maw. Nearby enemies are sucked inward & damaged, moreso the closer they get. Found in the Plane Papyrus, a high-level Translocations book containing Dispersal, Controlled Blink, Malign Gateway, Disjunction, and of course Singularity. (Various other books have been adjusted slightly.)</li>
</ul>
</li>
<li>Force Lance is now L4 Conjurations/Translocations, slightly more accurate, and better at knocking back enemies. Flying enemies are especially vulnerable.</li>
<li>Dispersal now affects a wider area, and has a chance of confusing affected creatures.</li>
<li>Twisted Resurrection has been removed.</li>
<li>New enemies:
<ul>
<li>Robin of the Strong Arm, a hobgoblin unique appearing in the very early Dungeon. She’s stronger than your average hobgoblin, and accompanied by her own personal army of hobgoblins & goblins, the latter of which she will happily hurl at her enemies. Duck!</li>
<li>Shard Shrikes, batty monsters that appear in Cocytus. They spit Throw Icicle, resist and attack with cold, and flock in small bands. They have 2 AC, but are only <i>literally</i> made of glass in certain non-canonical fanfictions.</li>
</ul>
</li>
<li>Seraphim are now considerably more dangerous: damage doubled, speed increased by 50%, and a new spellset, including Hunting Cry, Summon Holies, Injury Bond and Cleansing Flame.</li>
<li>Seraphim now occasionally appear on the orb run.</li>
<li>Ghost crabs have scuttled sideways all the way from Crypt to Swamp.</li>
<li>Insubstantial wisps are now slightly more fragile & less numerous, but have Static Discharge.</li>
<li>Hellwings now have Cigotuvi’s Embrace, and spawn with it active.</li>
<li>If the player clears a ziggurat and enters another, they may occasionally find themselves in the center of the floor rather than the edge. The odds of this increase with depth and number of ziggurats cleared.</li>
<li>Zin’s Recite is no longer usable if no enemies with low enough HD are visible. Recite invulnerability is now mentioned in monster descriptions.</li>
<li>Gozag will no longer offer the player shops that are entirely useless for their race.</li>
<li>Ctrl-direction now always attacks, rather than sometimes opening or closing doors, or removing traps.</li>
<li>In Zot Defense, the player can now place traps on top of other traps.</li>
<li>Butchering and bottling blood now only takes a single turn.</li>
<li>Powered by Death now works with all corpses.</li>
<li>The Wild Magic card now afflicts enemies with miscast effects, rather than the player, and restores the player’s MP for each enemy affected. It’s moved from the Deck of Punishment (back to) the Deck of Wonders.</li>
<li>When in shadow form, the player can no longer be petrified.</li>
<li>Monsters can no longer block their own attacks.</li>
<li>Butterfly colours have been disambiguated.</li>
<li>The legendary weapons “Glorpy”, “Loopy”, and “Plog” may now appear.</li>
<li>Gozag’s shopkeepers have had their genders randomized.</li>
<li>Insects are no longer referred to as ‘she’.</li>
<li>Electric golems can no longer breathe.</li>
<li>Monsters no longer believe that rN+ armour allows them to see invisible.</li>
<li>Angels no longer have demonic powers.</li>
<li>Bats can now memorize spells.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-25-november-2014/feed</wfw:commentRss>
<slash:comments>3</slash:comments>
</item>
<item>
<title>Trunk updates, 17 November 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-17-november-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-17-november-2014#comments</comments>
<pubDate>Tue, 18 Nov 2014 07:04:14 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3017</guid>
<description><![CDATA[Hi, crawlers! Lots of fun changes this week: Enemy-held weapons now have their brands ID’d on sight. The Death Knight background has been removed. New item: the Iron Rod, which fires a spray of shrapnel in a wide arc. Extremely effective against agile, low-AC enemies, but ineffective against armoured enemies or at a distance. Nemelex [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Lots of fun changes this week:</p>
<ul>
<li>Enemy-held weapons now have their brands ID’d on sight.</li>
<li>The Death Knight background has been removed.</li>
<li>New item: the Iron Rod, which fires a spray of shrapnel in a wide arc. Extremely effective against agile, low-AC enemies, but ineffective against armoured enemies or at a distance.</li>
<li>Nemelex & deck changes:
<ul>
<li>New cards:
<ul>
<li>Elements, which summons three beasts of the four elements.</li>
<li>Rangers, which summons two or three ranged-missile users.</li>
<li>Placid Magic, which removes all status effects and applies heavy antimagic to all creatures in sight, including the user. (Dazing enemy spellcasters as if they’d been hit with antimagic weapons repeatedly.</li>
</ul>
</li>
<li>Revamped destruction cards:
<ul>
<li>Storm has replaced rain and swiftness with summoning air elementals, an elemental wellspring, or thunder clouds alongside a wind blast.</li>
<li>Pain has lost Torment; it can now instead summon flay your foes alive.</li>
<li>Venom has lost Sting for earlier Venom Bolts and Poison Arrows, but at low power will briefly make the user vulnerable to poison.</li>
<li>Degeneration now applies a temporary malmutated effect to targets, along with polymorphing them to creatures with lower HD. Undead are dazed.</li>
<li>Vitriol now can provide Corrosive Bolts at higher power.</li>
<li>Orb bursts will now attempt to home on monsters they might reasonably hit.</li>
</ul>
</li>
<li>Revamped battle cards:
<ul>
<li>Potion has strictly-negative effects taken out, and will also apply its effects to allies if possible.</li>
<li>Blade now solely gives a cleaving status. It doesn’t stack with the reaching of polearms or the original cleaving of axes, but otherwise applies to all forms of armed & unarmed combat.</li>
<li>Helm can apply Stoneskin or Shroud of Golubria effects to allies at high power.</li>
<li>Elixir gives a small amount of temporary vitality to your allies, alongside its restorative effects to the user.</li>
<li>Shadow gives the darkness status (reduced LOS) instead of invisibility.</li>
<li>Dowsing is now significantly stronger in duration and range.</li>
</ul>
</li>
<li>Revamped summoning cards:
<ul>
<li>Pentagram now summons a more constrained set of demons (stronger at lower power and weaker at high power), and an additional accompanying hell hound, rakshasa, or <b>pandemonium lord</b>.</li>
<li>Dance has replaced its short swords with quarterstaves and its dire flails with executioner’s axes. It also has a chance of summoning a randart.</li>
<li>Foxfire has lost butterflies and gained ravens.</li>
<li>Repulsiveness can now summon both an ugly thing and a very ugly thing.</li>
</ul>
</li>
<li>Revamped emergency cards:
<ul>
<li>Cloud surrounds all hostile monsters with varying types of clouds, instead of randomly scattering clouds in all valid places in sight.</li>
<li>Shaft now randomly places shafts under other monsters as well.</li>
<li>Tomb can now raise rock walls on stone stairs and deep water.</li>
<li>Velocity will always apply a overall-positive effect (with allies present).</li>
<li>Banshee now drains victims, in addition to causing fear.</li>
<li>Solitude can now cause Disjunction at high power.</li>
</ul>
</li>
<li>Dowsing is no longer in the deck of battle.</li>
<li>Decks of war have lost their set of destruction cards.</li>
<li>The Cloud card has moved from decks of destruction to decks of emergency.</li>
<li>Mercenaries now have slightly better kit, and mercenaries that your god would dislike are not offered.</li>
<li>In general, cards that your god would dislike will have their dislikeable effects suppressed. (E.g., Venom for TSO.)</li>
<li>Removed cards: Metamorphosis, Herd, Bones.</li>
</ul>
</li>
<li>Monster tweaks:
<ul>
<li>Draconian & deep elf knights are considerably stronger (and have had their spell sets changed up).</li>
<li>Caustic shrikes are now a little weaker and a little rarer.</li>
<li>Revenants are no longer affected by Silence.</li>
<li>Enemy necromancers can now cast Inner Flame.</li>
<li>Pan Lord spells have been considerably reworked.</li>
<li>Anubis Guards now have Control Undead.</li>
<li>Hell Beast HD, AC, and EV are no longer randomized (and are set to the max value they could have had before). Their speed is still randomized.</li>
<li>Sphinxes are now sometimes (presumably) androsphinxes.</li>
<li>Basilisks are now little.</li>
<li>Green rats are now known as river rats. Beware their swimming prowess…!</li>
</ul>
</li>
<li>All gods now give piety for kills made by followers (undead and otherwise) in the exact same way as for kills made by the player.</li>
<li>Vampires now bottle blood with (c), instead of (a)(a). They can now bottle blood from level 1 onward.</li>
<li>Different types of melee attacks (slashing, piercing, blunt, etc) no longer cause different amount of noise. (Melee noise still varies by damage done.)</li>
<li>Summon Greater Demon now provides a more() by default when the summoned demon stops being charmed.</li>
<li>Ziggurats now have a reliable supply of restore abilities potions, and a very small number of beneficial mutations potions.</li>
<li>The rod of striking has been removed.</li>
<li>Monsters now return to their original forms in death. (Like poor Prince Ribbit.)</li>
<li>Runed doors & Lugonu’s Corruption are now noted in level annotations, by default.</li>
<li>Ctrl-f can now find runed doors.</li>
<li>Qazlal’s Disaster Area is now stronger at low invocations.</li>
<li>Felid Monks have been buffed.</li>
<li>Mimics are now immune to telepathy.</li>
<li>High-pitched whines have been removed.</li>
<li>The game will no longer claim that skeletons can be bottled.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-17-november-2014/feed</wfw:commentRss>
<slash:comments>7</slash:comments>
</item>
<item>
<title>Trunk updates, 11 November 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-11-november-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-11-november-2014#comments</comments>
<pubDate>Wed, 12 Nov 2014 05:13:45 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3011</guid>
<description><![CDATA[Hi, crawlers! More behind-the-scenes work this week (we’ve finally switched to C++11!), not so many new features. Still, we’ve got a few: Gozag changes: Monsters slain while following Gozag will now always drop gold if they would normally have a chance of leaving a corpse. Gold from monsters now depends significantly less on their body [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! More behind-the-scenes work this week (we’ve finally switched to C++11!), not so many new features. Still, we’ve got a few:</p>
<ul>
<li>Gozag changes:
<ul>
<li>Monsters slain while following Gozag will now <b>always</b> drop gold if they would normally have a chance of leaving a corpse.</li>
<li>Gold from monsters now depends significantly less on their body mass.</li>
<li>Gozag shop item quality has been considerably improved.</li>
<li>Food has been moved from a potion petition (porridge/blood) to a guaranteed food shop offer in each use of Call Merchant. Vampires get blood shops; Ghouls get corpse shops. (Butchers?)</li>
<li>Potion Petition no longer contains negative effects.</li>
</ul>
</li>
<li>Potions of blood no longer give nutrition to non-vampires.</li>
<li>Porridge has been removed.</li>
<li>Okawaru no longer asks for corpse sacrifice; piety from kills has increased, and piety loss over time has decreased.</li>
<li>Followers of Kikubaaqudgha and Nemelex Xobeh now get their respective special titles when their highest skill is Necromancy or Evocations (respectively).</li>
<li>Snake now has an extremely cool set of new mosaic floor tiles – check them out!</li>
<li>In Dis, the Serpent of Hell now has a reaching attack. Other Serpents of Hell have been weakened slightly.</li>
<li>Players’ movement speed now maps directly to their ghosts’ movement speed, rather than action speed. (E.g., spriggan ghosts or ghosts of characters wearing boots of running now only travel faster, rather than also attacking, spellcasting, etc faster.)</li>
<li>Condensation Shield is now melted when blocking a fire attack, not when failing to block one.</li>
<li>The player can now be corroded when blocking an attack with a shield.</li>
<li>The Transparent Skin mutation now gives -enemy accuracy at all levels, not just at level 3.</li>
<li>Killer Klowns corpses are now as colourful in death as they were in life.</li>
<li>Anubis Guards will no longer be slain by the traps of the Tomb they guard. (Likewise, Death Scarabs.)</li>
<li>Monsters that aren’t Donald can now talk outside Dungeon. (Fixing a bug introduced in January of 2010.)</li>
<li>Ghosts in console are no longer represented by ‘ ‘.</li>
<li>Insults have been considerably improved, you decrepit pissant boot-licking toady!</li>
<li>Cats now like fish.</li>
</ul>
<p>Happy crawling!</p>
<p>(And be sure to check out our <a href="http://crawl.develz.org/wordpress/new-servers">new servers</a>, if you missed them last week.)</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-11-november-2014/feed</wfw:commentRss>
<slash:comments>7</slash:comments>
</item>
<item>
<title>New servers!</title>
<link>http://crawl.develz.org/wordpress/new-servers</link>
<comments>http://crawl.develz.org/wordpress/new-servers#comments</comments>
<pubDate>Wed, 05 Nov 2014 04:03:30 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3004</guid>
<description><![CDATA[In the last year, a whole host of new servers have come online for play. CKR, in Korea. Webtiles only. CBRO, in Georgia, USA. Webtiles and console. LLD, in Japan. Webtiles only. CXC, in France. Webtiles and console. CPO, in Australia. Webtiles and console. The full server list is available here, as well as instructions [...]]]></description>
<content:encoded><![CDATA[<p>In the last year, a whole host of new servers have come online for play.</p>
<ul>
<li><a href="http://kr.dobrazupa.org:8080/"><b>CKR</b></a>, in Korea. Webtiles only.</li>
<li><a href="http://crawl.berotato.org/"><b>CBRO</b></a>, in Georgia, USA. Webtiles and console.</li>
<li><a href="http://lazy-life.ddo.jp:8080/"><b>LLD</b></a>, in Japan. Webtiles only.</li>
<li><a href="http://crawl.xtahua.com/"><b>CXC</b></a>, in France. Webtiles and console.</li>
<li><a href="https://crawl.project357.org/"><b>CPO</b></a>, in Australia. Webtiles and console.</li>
</ul>
<p>The full server list is available <a href="http://crawl.develz.org/wordpress/howto">here</a>, as well as instructions for getting started.</p>
<p>Many thanks to the people who have kindly volunteered to host these – and happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/new-servers/feed</wfw:commentRss>
<slash:comments>6</slash:comments>
</item>
<item>
<title>Trunk updates, 3 November 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-3-november-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-3-november-2014#comments</comments>
<pubDate>Tue, 04 Nov 2014 05:05:52 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=3000</guid>
<description><![CDATA[Hi, crawlers! Lots of refactoring this week, with the usual mess of bugs; not so many feature changes. That said, here’s the list: New monster: Caustic Shrikes, appearing in the nastiest parts of Depths. They come in packs, hit hard, resist fire and cold, and cover you with acid. Also, they’re twice as fast as [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! Lots of refactoring this week, with the usual mess of bugs; not so many feature changes. That said, here’s the list:</p>
<ul>
<li>New monster: Caustic Shrikes, appearing in the nastiest parts of Depths. They come in packs, hit hard, resist fire and cold, and cover you with acid. Also, they’re twice as fast as you. Caution is recommended.</li>
<li>New item: phantom mirrors, one-use evocables. When used, they create a temporary friendly clone of a targeted monster.</li>
<li>Irradiate now does somewhat more damage at low power, and somewhat less at high power. The malmutation effect (for enemies) is now guaranteed.</li>
<li>Rust devils do somewhat less damage, but their corrosion now triggers every time they hit.</li>
<li>Death scarabs now do considerably more damage.</li>
<li>Silver statues are now obsidian, instead. (This has no mechanical effects.)</li>
<li>Rings of slaying are now capped at +6, not +8 or +144.</li>
<li>Blessed Blades are, tragically, gone.</li>
<li>Card changes:
<ul>
<li>All decks can now be evoked from the inventory.</li>
<li>Nemelex’s Draw One and Peek at Two have drawn their last breaths.</li>
<li>The Metamorphosis card has magically transformed into nothing at all; it is no more.</li>
<li>Dowsing is no longer in the Deck of Battle.</li>
</ul>
</li>
<li>Mennas no longer mumbles.</li>
<li>Norris now follows the one true god, GOD_NAMELESS.</li>
<li>Prince Ribbit no longer turns back into a frog when raised from the dead.</li>
<li>Monsters casting Freeze now check their targets’ cold resistance, rather than their own.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-3-november-2014/feed</wfw:commentRss>
<slash:comments>4</slash:comments>
</item>
<item>
<title>Trunk updates, 27 October 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-27-october-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-27-october-2014#comments</comments>
<pubDate>Tue, 28 Oct 2014 04:33:40 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2987</guid>
<description><![CDATA[Hi, crawlers! It’s set to be a spooky week. Get ready for some fresh changes… and maybe drop by on the 31st, for a slightly different experience :) Clouds of draining now work like other sources of draining; they’re reduced by each pip of rN & negated at rN+++, rather than being completely negated by [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers! It’s set to be a spooky week. Get ready for some fresh changes… and maybe drop by on the 31st, for a slightly different experience :)</p>
<ul>
<li>Clouds of draining now work like other sources of draining; they’re reduced by each pip of rN & negated at rN+++, rather than being completely negated by a single pip of rN.</li>
<li>Clouds of miasma now apply the ‘rot’ status, rather than causing rotting directly & immediately.</li>
<li>New tomb monsters!
<ul>
<li>Ushabti, fearsome funerary statues, which breathe a heady mix of draining clouds & miasma, and rumble resoundingly to alert enemies from a great distance.</li>
<li>Death scarabs, fast-moving swarming insects. They trail miasma and bite to drain life, speed, and skill, in addition to applying rN-.</li>
<li>Anubis guards, living foes that have been conditioned immunity to all forms of pain and torment. They breathe draining, dispel undead, confuse, and howl to reveal your location to other anubis guards.</li>
</ul>
</li>
<li>Chunk changes:
<ul>
<li>All chunks of an edibility type (clean, poisonous, mutagenic…) now merge together, into an undifferentiated meaty slurry. (Also, a single inventory stack.)</li>
<li>Rotten chunks are gone; chunks rot away directly.</li>
<li>Rotten corpses are likewise gone; corpses rot directly into skeletons.</li>
<li>Blood no longer coagulates, but rots away directly.</li>
<li>Ghouls now gain as much healing from clean chunks as they previously gained from rotten chunks. (There was surprisingly little difference.)</li>
<li>Ghouls now always heal rot when eating chunks. (There was a 75% per-chunk chance, before.)</li>
<li>Gods that forbade the player from eating certain types of creatures (that is, the good gods and Beogh) now forbid them from butchering those creatures, instead. Penalties are much steeper. (The old ones were surprisingly trivial!)</li>
<li>Effects that spectacularly disintegrate creatures (Orb of Destruction, Disintegrate, etc) do not create any chunks if eating those creatures is forbidden by your god.</li>
</ul>
</li>
<li>Spell miscast effects have been <i>hugely</i> revamped. The summary is as long as the rest of this post, just… <a href="http://s-z.org/neil/git/?p=crawl.git;a=commit;h=caa8d4fddc532dc37178b87b0953628a8966c1ab">read the commit.</a> I’m sorry.</li>
<li>All short blades (except for the Captain’s Cutlass) now do piercing damage; this is relevant to short swords and cutlasses. The latter have been renamed to rapiers, being as they no longer cut.</li>
<li>Sense invisibility has been simplified; the range limit has been dropped, and monsters with it now have strict immunity to the ‘blind’ effect (from dazzle, zin, ru), rather than being partially affected. A number of other niche special effects (e.g. better detection of sneaking characters) have also been dropped.</li>
<li>Xtahua’s breath now creates a cloud of flames, like red draconians’.</li>
<li>Tiamat can now be any colour of draconian, except grey.</li>
<li>Mnoleg’s tentacles, so briefly with us, have departed for another realm. Mnoleg now has Malign Gateway again, as well as a new set of excitingly branded melee attacks.</li>
<li>Ashenzari’s clear vision perk now also grants immunity to the negative effects of blurry vision mutations.</li>
<li>All food other than rations, chunks, and royal jellies now takes one turn to eat.</li>
<li>Corrosion is now displayed in the weapon bar as a temporary penalty to weapon enchantment; e.g., with one level of corrosion, a +1 mace would show up as -2 (and red).</li>
<li>Branch tiles have been widely adjusted; in particular, Spider has been recolored significantly.</li>
<li>A wide variety of missing ‘emergency’ spell flags have been reinstated; liches should be significantly less likely to Banish players on sight.</li>
<li>Entering a piety-sacrifice trove while wearing an amulet of faith no longer causes the player to be excommunicated.</li>
<li>Hell beasts no longer slow down when hasted.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-27-october-2014/feed</wfw:commentRss>
<slash:comments>8</slash:comments>
</item>
<item>
<title>Trunk updates, 20 October 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-20-october-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-20-october-2014#comments</comments>
<pubDate>Tue, 21 Oct 2014 01:26:32 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2982</guid>
<description><![CDATA[Hi, crawlers! First, fair warning: a very large rewrite of monster spellcasting & special abilities landed in trunk this morning. This lets us do some very cool things (some of which are already in!), but it’s also a large amount of new code, which is going to have a corresponding number of new bugs. For [...]]]></description>
<content:encoded><![CDATA[<p>Hi, crawlers!</p>
<p>First, fair warning: a very large rewrite of monster spellcasting & special abilities landed in trunk this morning. This lets us do some very cool things (some of which are already in!), but it’s also a large amount of new code, which is going to have a corresponding number of new bugs. For the next day or two, trunk will be a little more unstable than usual.</p>
<p>One thing you can do to help, as always, is to report any bugs you find on <a href="https://crawl.develz.org/mantis/main_page.php">the official bugtracker</a>. We get notified whenever a new bug is filed, and while we can’t promise we’ll fix everything immediately, we do our best!</p>
<p>With all that said, let’s get to the week’s new features!</p>
<ul>
<li>Mennas can now occasionally be found wandering through Pandemonium. His Confusion ‘recitation’ has been replaced with Mass Confusion.</li>
<li>The Great Lords of Pandemonium – that is, Cerebov, Lom Lobon, etc – will reappear on later floors of Pandemonium once their rune is stolen, unless and until the player kills them.</li>
<li>Lom Lobon (and, to a lesser extent, Gloorx Vloq) are much more likely to spend their time casting spells rather than attacking in melee.</li>
<li>Player ghosts and spellforged servitors can now know more than six spells.</li>
<li>New items:
<ul>
<li>Shadow dragon armour. 10 AC and 15 ER, the same as Storm Dragon Armour, but instead of rElec, shadow dragon armour gives Stlth++++. (The weight of the armour naturally subtracts exactly Stlth+++, leaving players wearing this armour at Stlth+ above what they would have with no armour at all.)</li>
<li>Quicksilver dragon armour. 10 AC, 6 ER, and MR+; however, it cannot be enchanted with scrolls of enchant armour, and is always +0.</li>
</ul>
</li>
<li>Scale Mail now only has 10 ER, down from 11.</li>
<li>Dithmenos now specifically hates fire (owing to a <i>very</i> old divine grudge), rather than ‘fire and illuminating effects’. The glimmering light of a Corona will no longer bring down the dread wrath of Dithmenos upon worshippers.</li>
<li>A new malmutation: “MP-powered wands”, which increases the power of your wands, but makes them cost MP with every zap.</li>
<li>New tiles: Irradiate, Hydra Form, Octopode & Felid Blade Hands (if that’s the right word?), triple swords, and more.</li>
<li>Various skill titles have been rearranged or replaced; notably, Cheibriados’s invocations titles have been completely rewritten from scratch.</li>
<li>Hydra Form, like most forms, now has a special message when praying at altars.</li>
<li>The legendary serpent Jörmungandr is now selectable by tiles players. (“tile_player_tile=tile:mons_jormungandr”.) Beware his ophidian wrath!</li>
<li>Wumpuses can occasionally be heard roaring in the distance.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-20-october-2014/feed</wfw:commentRss>
<slash:comments>7</slash:comments>
</item>
<item>
<title>0.15.2 bugfix release</title>
<link>http://crawl.develz.org/wordpress/0-15-2-bugfix-release</link>
<comments>http://crawl.develz.org/wordpress/0-15-2-bugfix-release#comments</comments>
<pubDate>Sun, 19 Oct 2014 03:05:30 +0000</pubDate>
<dc:creator>Grunt</dc:creator>
<category><![CDATA[News]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2980</guid>
<description><![CDATA[Hi crawlers: We bring to you another bugfix release, featuring the following: Assorted crash fixes, bug fixes, and display cleanups. Always weight formicid weapon acquirement towards two-handed weapons. Allow in-game updates to the mon_glyph option to change the glyph. Allow the option syntax of mon_glyph = : in order to set the color/glyph of one [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers:</p>
<p>We bring to you another bugfix release, featuring the following:</p>
<ul>
<li>Assorted crash fixes, bug fixes, and display cleanups.</li>
<li>Always weight formicid weapon acquirement towards two-handed weapons.</li>
<li>Allow in-game updates to the mon_glyph option to change the glyph.</li>
<li>Allow the option syntax of mon_glyph = <mon1>:<mon2> in order to set the color/glyph of one monster using the base values of another monster.</li>
<li>In tiles, the tile_player_tile option allows you to specify an arbitrary monster tile to display for your character. The options tile_weapon_offsets and tile_shield_offsets can be used to adjust the player weapon and shield location when using these custom tiles.</li>
<li>For use with tile_player_tile: the old orb guardian tile, a new monster vampire tile, and weapon/shield offsets for various monster tiles.</li>
</ul>
<p>Builds for most platforms are now available over at the <a href="http://crawl.develz.org/wordpress/downloads">downloads page</a>.</p>
<p>Happy Crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/0-15-2-bugfix-release/feed</wfw:commentRss>
<slash:comments>2</slash:comments>
</item>
<item>
<title>Trunk updates, 13 October 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-13-october-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-13-october-2014#comments</comments>
<pubDate>Tue, 14 Oct 2014 04:04:51 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2973</guid>
<description><![CDATA[Hi crawlers! Fresh trunk changes, coming your way. Look out! New spell: Irradiate (L5 Conj/Tmut). Blasts adjacent foes with pure magical radiation, doing heavy damage and frequently malmutating the unfortunate victims. Also, contaminates the caster; 2-4 casts of the spell will put you into yellow (dangerous) contamination. Found in the Book of Transfigurations and the [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers! Fresh trunk changes, coming your way. Look out!</p>
<ul>
<li>New spell: Irradiate (L5 Conj/Tmut). Blasts adjacent foes with pure magical radiation, doing heavy damage and frequently malmutating the unfortunate victims. Also, contaminates the caster; 2-4 casts of the spell will put you into yellow (dangerous) contamination. Found in the Book of Transfigurations and the Book of Alchemy.</li>
<li>Monster malmutations are now temporary, but more significant. Good news for Beoghites…?</li>
<li>Ice Form has been moved from the Book of Transfigurations to the Book of Ice.</li>
<li>Ice, Dragon, Tree, and Fungus forms no longer meld octopode rings.</li>
<li>Instead of starting with a level 1 spell memorized, wanderers get a randart spellbook with a couple of low-level spells in it.</li>
<li>Wanderers can start with an elemental evoker or a box of beasts in place of a wand.</li>
<li>Jump attack (and the boots of jumping) are no more.</li>
<li>Magic immunity no longer confers confusion immunity to monsters.</li>
<li>Frederick has realized his true potential; he is now a Demigod. Grovel at his boots, pitiful god-havers!</li>
<li>Player ghosts now have their weapon brands displayed. Never again will you have to hunt down morgue files to check if that AK ghost has a distortion weapon!</li>
<li>Ghosts of characters that died while paralyzed no longer have 0 EV.</li>
<li>Corrosion resistance can now appear on randart armour.</li>
<li>Cloaks of darkness have been renamed to cloaks of invisibility.</li>
<li>Gold dragon armour has been reduced from 25 to 23 EVP, the same as crystal plate.</li>
<li>Unarmed combat delay penalties from armour have been substantially de-randomized; they’re now consistently around the average of the old values.</li>
<li>Monsters with drowning attacks (water nymphs, drowned souls, etc) can no longer kill players who are in Death’s Door. (However, falling into deep water still can.)</li>
<li>Chain Lightning can no longer arc out of LOS.</li>
<li>‘Monster spells’ (e.g. Ghostly Fireball) can now be displayed in the spell finder. (?/S)</li>
<li>New options for tiles players: tile_weapon_offsets and tile_shield_offsets, allowing players using custom tiles (with tile_player_tile) to precisely adjust the placement of their equipment.</li>
<li>New tiles for double and triple swords, among other things.</li>
<li>Players can no longer wear the Amulet of Vitality on their tentacles.</li>
<li>Major balance change: Abandon God is now available even when the player is silenced.</li>
<li>Octopode players are now properly informed when their tentacles begin to smoulder.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-13-october-2014/feed</wfw:commentRss>
<slash:comments>3</slash:comments>
</item>
<item>
<title>Trunk updates, 8 October 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-8-october-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-8-october-2014#comments</comments>
<pubDate>Wed, 08 Oct 2014 15:05:14 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2967</guid>
<description><![CDATA[Hi crawlers! Ready to devour some fresh trunk changes? (Ha ha! It is a Hydra Form joke.) All joking aside – if you are not ready, please do not read the below. Thanks. New spell: Hydra Form. Attacks all adjacent enemies and devours the slain for nutrition and healing. Found in the Book of Transfigurations [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers! Ready to <i>devour</i> some fresh trunk changes? (Ha ha! It is a Hydra Form joke.) All joking aside – if you are not ready, please do not read the below. Thanks.</p>
<ul>
<li>New spell: Hydra Form. Attacks all adjacent enemies and devours the slain for nutrition and healing. Found in the Book of Transfigurations and a new book, the Fen Folio.</li>
<li>Monster AC, EV, and MR are now displayed as bars in their description. (When examined, or through ?/M.)</li>
<li>Wand changes:
<ul>
<li>Wand type (not charge count) is auto-ID’d on pickup.</li>
<li>Zapping wands that don’t have their charge charge count identifies wastes several charges.</li>
<li>Many weak wands have had their max charge count increased.</li>
</ul>
</li>
<li>Claymores have been renamed to triple swords; bastard swords have been renamed to double swords. Mega excite.</li>
<li>Regeneration has been moved from rings to amulets; accordingly, the Ring of Vitality is now the Amulet of Vitality.</li>
<li>The Hat of the Alchemist is now -2 (rElec rPois rF rC rN MR rMut rCorr). Beware the AC cost…</li>
<li>Cleaving attacks (from axes and Hydra Form) try to hit all adjacent enemies, rather than being blocked by walls. (How many people reading this actually knew that axes cleaving could be blocked by walls…?)</li>
<li>Demigod tweaks: They now gain 2x stats every third level, rather than one stat on 2/3 levels. They also now have innate Sustain Abilities.</li>
<li>Iron devils have been upgraded to rust devils, which do less damage but corrode with their touch.</li>
<li>Derived undead (zombies, skeletons, &c) now have their full names displayed. (E.g., “orc warrior zombie”.)</li>
<li>More potion tiles & randart helmet & robe tiles should now show up in-game.</li>
<li>Formicids can no longer move in treeform by tunneling through rock; nor, similarly, can they shaft themselves while in treeform.</li>
<li>It is no longer possible to receive the message “you meow your recitation at the orc.”</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-8-october-2014/feed</wfw:commentRss>
<slash:comments>15</slash:comments>
</item>
<item>
<title>Trunk updates, 30 September 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-30-september-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-30-september-2014#comments</comments>
<pubDate>Tue, 30 Sep 2014 08:53:48 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2958</guid>
<description><![CDATA[Hi crawlers! It’s been a while, but now that the tournament is over, the 0.16 season has kicked off with a bang. Here’s what’s new so far in trunk! New god: Ru the Awakened, a new temple god, lord of sacrifice and power! Periodically offers the player a choice of three permanent sacrifices in exchange [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers! It’s been a while, but now that the tournament is over, the 0.16 season has kicked off with a bang. Here’s what’s new so far in trunk!</p>
<ul>
<li>New god: Ru the Awakened, a new temple god, lord of sacrifice and power!
<ul>
<li>Periodically offers the player a choice of three permanent sacrifices in exchange for piety. All abilities scale with piety; piety never decreases.</li>
<li>Leaving Ru incurs no wrath, but leaves all your sacrifices in place (permanently).</li>
<li>1*: Enemies may fail to attack you, or even attack each other or themselves instead.</li>
<li>2*: Enemies that hurt you may be punished with status effects.</li>
<li>3*: Draw Out Power: restore health and mana to yourself, break free of webs and constriction, and cure confusion and petrification. Inflicts minor self-drain and exhaustion.</li>
<li>4*: Power Leap: Blinks you three tiles and deals high AOE damage at your destination. Costs exhaustion.</li>
<li>5*: Apocalypse: Deals very high damage to all monsters in LOS and inflicts statuses. Costs heavy drain and exhaustion.</li>
</ul>
</li>
<li>Monster changes:
<ul>
<li>Mermaids have been renamed to sirens; sirens have been renamed to merfolk avatars.</li>
<li>Mimics now cackle and vanish (forever) when discovered. This optimizes their psychological damage potential (PDP).</li>
<li>The Serpent of Hell is considerably tougher; it now has three heads which can attack and/or breathe separately, and can also summon (dragon-shaped) backup.</li>
<li>Mnoleg now has a pair of tentacles, acting similarly to eldritch tentacles.</li>
<li>New monster: elemental wellsprings, appearing in Cocytus. They fire powerful waves of water which produce hostile water elementals – but deplete their own ‘health’ in the process.</li>
<li>New monster: bennu, the divine phoenix, appearing in Tomb. Attacks with fire, draining, and holy; when killed, explodes into ghostly flame and instantly returns to life (once).</li>
<li>Curse skulls now move – fast!</li>
</ul>
</li>
<li>Completing a ziggurat (by exiting from the top floor, zig:27) makes all subsequent zigs harder. Dare you face the terror of the Megazig?</li>
<li>Ziggurats now only require two runes to enter, instead of three.</li>
<li>A Hall of Blades area (not branch) is now guaranteed on Elf:2.</li>
<li>Demigods now gain one stat of their choice on 2/3 levels (2,3,5,6…26,27), instead of gaining one stat of their choice on every third level and one random stat on every other level.</li>
<li>All species can now choose ‘unarmed’ when playing backgrounds that allow a weapon choice.</li>
<li>Necromutated characters can now memorize spells normally, even ones that undead characters are unable to cast.</li>
<li>Dragon Form now provides a spell power & success chance enhancer for Dragon’s Call.</li>
<li>The captain’s cutlass is now +5 (was +10) and can disarm enemies.</li>
<li>TSO’s Divine Shield no longer benefits from Shields skill.</li>
<li>Zin’s Hell effect protection has been halved; it now caps out at a 50% chance to block the terrors of Hell at max piety, down from 100%.</li>
<li>Zin’s Recite is now more effective at very low Invocations.</li>
<li>A third page has been added to the god description (^) screen, listing causes and effects of divine wrath.</li>
<li>Some effects (Shatter, banishment, etc.) now display animations.</li>
<li>Stealth is now displayed as a bar in the % screen. (The old ‘stealth words’) are still visible with @.)</li>
<li>Monsters no longer appear on the minimap.</li>
<li>The init file now allows you to specify an arbitrary monster tile for your character to be displayed as. Play as the Royal Jelly you always knew you were!</li>
<li>Porcupine-shaped players now have blood.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-30-september-2014/feed</wfw:commentRss>
<slash:comments>5</slash:comments>
</item>
<item>
<title>More fanart!</title>
<link>http://crawl.develz.org/wordpress/more-fanart</link>
<comments>http://crawl.develz.org/wordpress/more-fanart#comments</comments>
<pubDate>Sat, 27 Sep 2014 00:49:21 +0000</pubDate>
<dc:creator>dpeg</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2949</guid>
<description><![CDATA[I have had the luck to receive some great contributions lately, which I immediately added to the Crawl Art page. This time we get one very busy minotaur, an overlord and, a novelty, miniatures! As usual, if you made some Crawl fanart yourself, or know someone who did, then do not hesitate to contact me [...]]]></description>
<content:encoded><![CDATA[<p>I have had the luck to receive some great contributions lately, which I immediately added to the <a href="http://arts.crawl.develz.org/">Crawl Art page</a>. This time we get one very busy minotaur, an overlord and, a novelty, miniatures!</p>
<p>As usual, if you made some Crawl fanart yourself, or know someone who did, then do not hesitate to contact me (either by email or by tavern message).</p>
<p>Many thanks to all the contributors, and may your inspirations run free! </p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/more-fanart/feed</wfw:commentRss>
<slash:comments>3</slash:comments>
</item>
<item>
<title>0.15 Tournament Results</title>
<link>http://crawl.develz.org/wordpress/0-15-tournament-results</link>
<comments>http://crawl.develz.org/wordpress/0-15-tournament-results#comments</comments>
<pubDate>Tue, 16 Sep 2014 17:33:55 +0000</pubDate>
<dc:creator>elliptic</dc:creator>
<category><![CDATA[News]]></category>
<category><![CDATA[Tournament]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2938</guid>
<description><![CDATA[The 0.15 tournament is over. For 16 days, players could compete for tournament points and banners by playing 0.15 games on the public servers. For the second tournament in a row, the winning player was Tolias, with 7940 points. Over the course of the tournament Tolias won an record-breaking 26 games, many of them with [...]]]></description>
<content:encoded><![CDATA[<p>The <a href="http://dobrazupa.org/tournament/0.15/overview.html" title="0.15 tournament">0.15 tournament</a> is over. For 16 days, players could compete for tournament points and banners by playing 0.15 games on the public servers.</p>
<p>For the second tournament in a row, the winning player was <strong>Tolias</strong>, with 7940 points. Over the course of the tournament Tolias won an record-breaking 26 games, many of them with Nemelex’s Choice species/background combinations. In second place was <strong>Yermak</strong>, with 7156 points and 17 wins. Yermak received 17 of the 20 Tier III banners, more than any other player. In third place was <strong>johnnyzero</strong>, with 6975 points and 17 wins, including the second-longest streak in the tournament (7 games).</p>
<p>The fastest wins in the tournament were achieved by <strong>Bloax</strong> (turncount, 13320 turns with a VSTm of Cheibriados) and <strong>perunasaurus</strong> (realtime, 1h 11m with a MiBe). <strong>tlatlagkaus</strong> had the highest score, 42M points with a VSBe. <strong>ebarrett</strong> had the longest streak, of 10 games. <strong>Snack</strong> was the only player to attain Tier III of Lugonu’s banner, The Heretic. Both the first victory of the tournament and the victory in the tournament with the latest start were claimed by <strong>perunasaurus</strong>.</p>
<p>The clan competition was won by <strong>knock knock knocking on holy pans door</strong> (28664 points). <strong>HuAs Priest</strong> (27291 points) and <strong>AWBW – SpannLords</strong> (18656 points) were second and third respectively. There were 127 clans in all.</p>
<p>The tournament ended with one more record: 106 wins on a single day! (Note that <a href="http://crawl.akrasiac.org/scoring/per-day.html">this page</a> only lists 100 wins due to time zones.) Here are some assorted statistics on the tournament games (with quits removed), compared with the 0.14 tournament (in parentheses):</p>
<pre>
Players with at least one game: 2326 (2318)
Players with at least one game to reach XL 9: 1527 (1589)
Players who got a rune: 743 (787)
Players who won a game: 370 (325)
Total wins: 992 (743)
Win %: 1.71% (1.31%)
Total player time: 33903 hrs (35858 hrs)
Avg player time: 14.6 hrs (15.5 hrs)
Proportion of players using webtiles: 85.1% (80.4%)
Proportion of winners using webtiles: 76.0% (70.6%)
</pre>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/0-15-tournament-results/feed</wfw:commentRss>
<slash:comments>10</slash:comments>
</item>
<item>
<title>0.15.1 bugfix release</title>
<link>http://crawl.develz.org/wordpress/0-15-1-bugfix-release</link>
<comments>http://crawl.develz.org/wordpress/0-15-1-bugfix-release#comments</comments>
<pubDate>Mon, 15 Sep 2014 23:42:14 +0000</pubDate>
<dc:creator>Grunt</dc:creator>
<category><![CDATA[News]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2933</guid>
<description><![CDATA[Hi crawlers: With the tournament now over comes another long-standing Crawl tradition – the release afterwards containing all of the bugs found and fixed during the tournament, 0.15.1: Assorted crash fixes. Monsters don’t benefit from player throwing skill. Monsters no longer flee at random on re-entering a level after a short time. Several messages correctly [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers:</p>
<p>With the tournament now over comes another long-standing Crawl tradition – the release afterwards containing all of the bugs found and fixed during the tournament, 0.15.1:</p>
<ul>
<li>Assorted crash fixes.</li>
<li>Monsters don’t benefit from player throwing skill.</li>
<li>Monsters no longer flee at random on re-entering a level after a short time.</li>
<li>Several messages correctly no longer appear for out-of-sight monster actions.</li>
<li>Dithmenos’ stealth bonus works properly again.</li>
<li>Several spell icons that missed the initial 0.15 release.</li>
</ul>
<p>Builds for most platforms are now available over at the <a href="http://crawl.develz.org/wordpress/downloads">downloads page</a>.</p>
<p>Happy Crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/0-15-1-bugfix-release/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Crawl 0.15: “Storm Over Zot”</title>
<link>http://crawl.develz.org/wordpress/crawl-0-15-storm-over-zot</link>
<comments>http://crawl.develz.org/wordpress/crawl-0-15-storm-over-zot#comments</comments>
<pubDate>Thu, 28 Aug 2014 04:04:21 +0000</pubDate>
<dc:creator>Grunt</dc:creator>
<category><![CDATA[News]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2914</guid>
<description><![CDATA[We are proud to announce the release of Dungeon Crawl Stone Soup 0.15: “Storm Over Zot”! 0.15 features a new deity and many, many tweaks to and streamlining of the general flow of gameplay. Download DCSS 0.15 here, or play it online on one of many servers across the world! The release tournament will begin [...]]]></description>
<content:encoded><![CDATA[<p>We are proud to announce the release of Dungeon Crawl Stone Soup 0.15: “Storm Over Zot”! 0.15 features a new deity and many, many tweaks to and streamlining of the general flow of gameplay.</p>
<p>Download DCSS 0.15 <a href="http://crawl.develz.org/wordpress/downloads">here</a>, or <a href="http://crawl.develz.org/wordpress/howto">play it online</a> on one of many servers across the world!</p>
<p>The release tournament will begin at 20:00 UTC on Friday 29 August, with all online 0.15 games counting towards your score. See the <a href="http://dobrazupa.org/tournament/0.15/">tournament website</a> for more details, including how to set up or join a clan.</p>
<p>0.15′s highlights include:</p>
<ul>
<li><strong>Characters:</strong> Characters are now unencumbered by carrying-weight limits.</li>
<li><strong>Combat:</strong> The system of ranged combat has been fundamentally redesigned: it now behaves more like melee combat in terms of accuracy and damage, and is generally more consistent.</li>
<li><strong>Gods:</strong> Qazlal Stormbringer makes a thunderous debut, bringing elemental destruction to those unfortunate enough to cross paths with worshippers. Nemelex Xobeh’s decks have been shuffled considerably and are granted on exploration rather than through sacrifice of items.</li>
<li><strong>Items:</strong> Items are no longer subject to destruction through fire or cold, and equipment corrosion is more severe but temporary.</li>
</ul>
<p>For a list of other major changes, see the <a href="https://gitorious.org/crawl/crawl/blobs/stone_soup-0.15/crawl-ref/docs/changelog.txt">changelog</a>. Many thanks to all those who have <a href="https://gitorious.org/crawl/crawl/blobs/stone_soup-0.15/crawl-ref/CREDITS.txt">contributed</a> to Dungeon Crawl Stone Soup. We hope you enjoy playing 0.15!</p>
<p>
<strong>Update 2014-08-30</strong>: OS X builds are now avaialable from the <a href="downloads/">downloads</a> page <cite>—<a href="author/neil">neil</a></cite></p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/crawl-0-15-storm-over-zot/feed</wfw:commentRss>
<slash:comments>22</slash:comments>
</item>
<item>
<title>0.15 Tournament</title>
<link>http://crawl.develz.org/wordpress/0-15-tournament</link>
<comments>http://crawl.develz.org/wordpress/0-15-tournament#comments</comments>
<pubDate>Sat, 23 Aug 2014 02:01:08 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[News]]></category>
<category><![CDATA[Tournament]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2906</guid>
<description><![CDATA[The 0.15 tournament will begin in just one week! From 20:00 UTC Friday 29 August through 20:00 UTC Sunday 14 September, any 0.15 game played on any of the online servers will count for the tournament. 0.15 will be officially released before the start of the tournament – at the moment, a 0.15 beta is [...]]]></description>
<content:encoded><![CDATA[<p>The 0.15 tournament will begin in just one week! From <strong>20:00 UTC Friday 29 August</strong> through <strong>20:00 UTC Sunday 14 September</strong>, any <strong>0.15 game</strong> played on any of the online servers will count for the tournament. 0.15 will be officially released before the start of the tournament – at the moment, a 0.15 beta is playable on all the online servers <del>except CDO</del>.</p>
<p>The <a href="http://dobrazupa.org/tournament/0.15/">rules page</a> contains all the details about how to score points and earn banners in the tournament. Only a few changes to the banners this tournament.</p>
<p>As usual, clans (teams of up to six players) can be formed and changed until one week into the tournament, so don’t panic if you aren’t on one yet! (Being on a clan isn’t necessary to participate in the tournament, but it can be a lot of fun.)</p>
<p>Once the tournament has started, the <a href="http://dobrazupa.org/tournament/0.15/overview.html">tournament leaderboard</a> will contain the current results. (Before tournament start, some scores might briefly appear on this page as we test the tournament scripts, but they are just for testing.)</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/0-15-tournament/feed</wfw:commentRss>
<slash:comments>5</slash:comments>
</item>
<item>
<title>Trunk updates, 11 August 2014</title>
<link>http://crawl.develz.org/wordpress/trunk-updates-11-august-2014</link>
<comments>http://crawl.develz.org/wordpress/trunk-updates-11-august-2014#comments</comments>
<pubDate>Tue, 12 Aug 2014 04:22:57 +0000</pubDate>
<dc:creator>PleasingFungus</dc:creator>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">http://crawl.develz.org/wordpress/?p=2897</guid>
<description><![CDATA[Hi crawlers! This week, I’ll write up the latest changes to trunk and 0.15. It’s pretty quiet, since there’s a feature freeze in preparation for 0.15′s release, but we still have a few things. Ugly things have gotten… a bit uglier. ( •_•) ( •_•)>⌐■-■ (⌐■_■) Ugly things now have the stats (hp, damage, etc) [...]]]></description>
<content:encoded><![CDATA[<p>Hi crawlers! This week, I’ll write up the latest changes to trunk and 0.15. It’s pretty quiet, since there’s a feature freeze in preparation for 0.15′s release, but we still have a few things.</p>
<ul>
<li>Ugly things have gotten… a bit uglier. ( •_•) ( •_•)>⌐■-■ (⌐■_■) Ugly things now have the stats (hp, damage, etc) that very ugly things used to have; very ugly things have been upgraded to be, well, a bit like miniature elemental dire elephants. To compensate, ugly things no longer spawn in bands before D:13.</li>
<li>Potions of resistance now grant acid/corrosion resistance.</li>
<li>A number of enemies have been upgraded (sidegraded?) with a new ‘corrosive bolt’ spell; Deep Elf Sorcerers, Tengu Reavers, and Liches.</li>
<li>A great number of new tiles have been added:</li>
<ul>
<li>All projectiles have been reworked to be more distinctive from melee weapons.</li>
<li>Hand crossbows have a new set of sprites, replacing some decade-old placeholder programming art.</li>
<li>Robes have a large set of new, varied sprites.</li>
<li>Various enemies have had their sprites upgraded; Frances, thrashing horrors, and torpor snails.</li>
<li>Nemelex invocation icons have been upgraded to the new style.</li>
<li>Various miscellaneous spells have new icons.</li>
</ul>
<li>Mutagenic clouds now give nontrivial levels of glow; they’ll now cause yellow contam within 2-4 turns, from the previous minimum of 5 turns and average of 9.</li>
<li>The Spectral Weapon description (for both spell & item) now actually mentions the injury bond effect.</li>
<li>Ranged weapons have been slightly tweaked; shortbows & hand crossbows are very slightly stronger, triple crossbows are very slightly weaker.</li>
<li>?/S no longer provides advice on warding off the evil eye.</li>
</ul>
<p>Happy crawling!</p>
]]></content:encoded>
<wfw:commentRss>http://crawl.develz.org/wordpress/trunk-updates-11-august-2014/feed</wfw:commentRss>
<slash:comments>6</slash:comments>
</item>
<item>
<title>Crawl 0.15 beta</title>
<link>http://crawl.develz.org/wordpress/crawl-0-15-beta</link>
<comments>http://crawl.develz.org/wordpress/crawl-0-15-beta#comments</comments>