-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathresults_ios.csv
We can make this file beautiful and searchable if this error is corrected: Unquoted fields do not allow new line <"\n"> in line 1.
1602 lines (1602 loc) · 353 KB
/
results_ios.csv
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
brave,browser-ios,https://github.com/brave/browser-ios/issues/1391,1391,"Each mobile device or computer will have the power to delete other devices in the sync chain.",pull_request
brave,browser-ios,https://github.com/brave/browser-ios/issues/555,555,">I love the browser, but the battery consumption is awful. The battery life of my iPhone SE drops significantly any time I use this browser.",pull_request
chrisballinger,BLEMeshChat,https://github.com/chrisballinger/BLEMeshChat/issues/3,3,"Telehash v2 was heavily DHT-oriented, and I eventually came to the conclusion that live mesh maintenance on a mobile device (e.g. over LTE) is just not practical from a battery usage standpoint. (See: http://cafbit.com/entry/battery_cost_of_periodic_mobile ) I think this became a point of discouragement for my Android-centric Java implementation of v2. A future v3 implementation may make a lot more sense.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/959,959,"It is because of your vision and skill that ChatSecure exists, regardless of the individual preexisting libraries included within the end product. While I and, I’m sure, others are absolutely grateful that such tools are available via solid copyleft licensing such as the Free Software Foundation provides through its sister-site `Gnu.org`, it is people such as @chrisballinger who are continuing to push the envelope to ensure that privacy remains a fundamental human right, regardless of any centralised powers’ attempts at seeing it wiped from our collective memories.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/782,782,but it's non-deterministic and depends on some secret iOS battery algorithm.,pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/770,770,"- IPhone SE with latest iOS. Low battery mode off, all is ON in General Settings > ChatSecure.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/740,740,"- I know so far only one reason: the iphone is in some energy saving mode. What else if it's not that?",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/727,727,"The pubsub server has been having some uptime issues, which may have been the problem you saw. At some point yesterday the server became unresponsive and then was power cycled.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/557,557,"Pushes are not 100% reliable because we rely on background fetch, which is throttled by the OS in low battery situations or when background fetch is turned off.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/538,538,(Gajim also support encrypted HTTP upload and download. And ChatSecure/Gajim/Conversations can and should be powerful allies),pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/533,533,"The push notification class we are using (content-available) are not entirely reliable 100% of the time because they are designed to be used with updating content in the background like download a podcast or whatnot, so they can be throttled or not delivered. IIRC they don't work in low power mode either.",pull_request
ChatSecure,ChatSecure-iOS,https://github.com/ChatSecure/ChatSecure-iOS/issues/487,487,"Because we rely on `content-available` there are circumstances where the push will never be received, or delayed/throttled for battery purposes. The only way to truly fix this is to add VoIP support so we can use PushKit's high priority background pushes like Signal/WhatsApp.",pull_request
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/b18902876e5b448023899f937b13d6269dc23cae,b18902876e5b448023899f937b13d6269dc23cae,Prevent idle sleep when plugged in to power.,commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/2054339fb1e5e0b6294230efb0a48d152c189f11,2054339fb1e5e0b6294230efb0a48d152c189f11,International URLs match now. Run Configure.command again to get the new AGRegex framework powered by PCRE 5.0.,commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/5476c9cb947978623f4f292bdf521820fa2bb9af,5476c9cb947978623f4f292bdf521820fa2bb9af,"Customization changes to have more power, allowing multiple CSS selectors and properties to be modified with one GUI change (groupings). Colors can be inserted in complex CSS properties, like ""border-bottom: 1px #ffeecc dotted"". Drawer now looks like other drawers. More style options added to built-in styles.",commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/c01bb0221837fe939ea2f427d88c90a002fe419d,c01bb0221837fe939ea2f427d88c90a002fe419d,the start... more can be done to make to more powerful. Only Colors and,commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/79cc367d2ea3acca430583cb85f08a37274b847a,79cc367d2ea3acca430583cb85f08a37274b847a,"""with great power, comes great responsibility""",commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/commit/36394573566acbf7f70d9186b1e4e27adb91f9bb,36394573566acbf7f70d9186b1e4e27adb91f9bb,Changes to MVTextView to be more powerful with less methods. Affected delegates.,commit_message
colloquy,colloquy,https://github.com/colloquy/colloquy/issues/835,835,"I see same behavior on a Dual G4 1.25GHz powermac desktop. Running on 10.4.5 and 10.4.6 (as upgraded last night). The console log for the IRC server shows the messages coming in, but they don't appear on the chat windows.",pull_request
colloquy,colloquy,https://github.com/colloquy/colloquy/issues/815,815,Maybe a more powerful version would also have the option of converting other IRC characters (eg. ctrl-b) into HTML compatible text (<b></b>),pull_request
colloquy,colloquy,https://github.com/colloquy/colloquy/issues/619,619,"I'm guessing that this wouldn't be too hard a thing to add, and might be an ineligant way of adding power with least effort - at least while better ways are being developed. I hope you can find a way to fit it into the general structure of your dictionary grammar and syntax.",pull_request
colloquy,colloquy,https://github.com/colloquy/colloquy/issues/535,535," [16:10] nightstalker: xenon: like the ""you are running out of battery"" dialog magically disappears as soon as i plugin the power connector, would it be possible to change the ""xy wants to send you a file"" dialog to something like ""HAA HAA xy wanted to send you all of his pr0n but you missed it"" when the other party cancelled the transmit?[[BR]]",pull_request
mumble-voip,mumble-iphoneos,https://github.com/mumble-voip/mumble-iphoneos/commit/dd84ea508f32684e1fb4d0b6fa552ca3ca6540f0,dd84ea508f32684e1fb4d0b6fa552ca3ca6540f0,Add LAN server list (Bonjour-powered).,commit_message
mumble-voip,mumble-iphoneos,https://github.com/mumble-voip/mumble-iphoneos/issues/76,76,"Unfortunately, it seems the mumble project is lacking in manpower for",pull_request
RocketChat,Rocket.Chat.iOS,https://github.com/RocketChat/Rocket.Chat.iOS/issues/1226,1226,"There is also [Macaw](https://github.com/exyte/Macaw) that supports SVG (and animations) but maybe it's too ""powerful"" just for loading SVG images? Although we could add some awesome animations with that to make Rocket.Chat (unless we do not want such ""eye catching features""?) - ie. could use [this](https://camo.githubusercontent.com/2b8539b723cd7c9135fa5e549c13ad5a1873622f/687474703a2f2f692e696d6775722e636f6d2f6f3674424b57362e676966) for brush settings in #825 ",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/commit/f171c564886f709f718c1561664c3c4849c952ca,f171c564886f709f718c1561664c3c4849c952ca,"(64bit && >=iOS9), should help performance (battery and rendering",commit_message
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/commit/e3eca4db7b6a4d70723d1e21b7c4ee4b2a46563e,e3eca4db7b6a4d70723d1e21b7c4ee4b2a46563e,stop videoCapture until video track is enabled to save some battery,commit_message
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/commit/f98e57e164e6470662e8b299afe785c1609a3107,f98e57e164e6470662e8b299afe785c1609a3107,"notifications (e.g. in order to save battery), we were waiting for push",commit_message
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/commit/c8a5f50763d57e40128419a2e4b037c3e3fecdcf,c8a5f50763d57e40128419a2e4b037c3e3fecdcf," a view mapping to power our devices view controller, and avoid any race",commit_message
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/2943,2943,"When opening/unlocking my phone at the same time as recieving a message in Signal, the phone continues to vibrate and will not stop until I fully power down the phone and reboot. Closing the app has no affect. As of writing this, I've had this happen 3 times.",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/2902,2902,"I suspect this might be triggered by performance problems with my iPhone 6, especially related to the recent revelations about battery problems triggering an underclocked mode. Regardless of this though, Signal works fine as long as the auto-lock isn't triggered during upload, so configuring Signal to not go to sleep during upload will likely improve the UX for a lot of users with older devices and/or depleted batteries (i.e. this is an accessibility/inclusion issue). ",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/2086,2086,"Lock with power button.",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/1984,1984,"^ the development guidelines also state that there is no such thing as a power user, and providing options with them in mind is often especially damaging. ",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/1453,1453,"I specifically chose not to update my fork for compatibility, as I didn't want end users relying on a half-baked implementation for something that cannot really afford to be anything less than ""done right"". Doing so tends to be sufficient incentive for non-developers/non-powerusers to try and figure out how to clone the fork and build to device themselves, which seems dangerous given the potential use cases of this app. Thankfully/Unfortunately, we are at the point where an up-to-date version is necessary for further progress. ",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/1342,1342,"- I did not have an open desktop session while this was occurring, in fact, the laptop was powered off completely.",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/1070,1070,@horsebatterystaple do you see this behavior with system default text size?,pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/937,937,"The argument, that Signal needs more people to contribute code should also not apply, because during the last year enormous improvements have been made - more than in other projects (like video calls). So there is quite a huge amount of ""coding power"".",pull_request
signalapp,Signal-iOS,https://github.com/signalapp/Signal-iOS/issues/739,739,"> 3. **There are no power users.** The idea that some users ""understand"" concepts better than others has proven to be, for the most part, false. If anything, ""power users"" are more dangerous than the rest, and we should avoid exposing dangerous functionality to them.",pull_request
peter-iakovlev,Telegram,https://github.com/peter-iakovlev/Telegram/issues/202,202,What about [battery drain](https://imgur.com/a/i4Qo6)?,pull_request
peter-iakovlev,Telegram,https://github.com/peter-iakovlev/Telegram/issues/31,31,"+1 I'd sugest and option to completely disable notifications from muted chats (badge numbers are also set by push notifications, if I'm not mistaken), so they won't drain my battery.",pull_request
mozilla-mobile,focus-ios,https://github.com/mozilla-mobile/focus-ios/issues/845,845,"We currently delete them at the end of a session, but it'd be better if we didn't save them to disk in the first place because they can be hard to clean up (e.g. device power loss)!",pull_request
mozilla-mobile,focus-ios,https://github.com/mozilla-mobile/focus-ios/issues/821,821,"Definitely a power user problem but having a simple UX enforced by default is one of the reasons I use Focus. ",pull_request
mozilla-mobile,focus-ios,https://github.com/mozilla-mobile/focus-ios/issues/677,677,"This is something I do for my Powerwall, i.e., I share a screenshot from the Powerwall App showing how I've saved the earth by using renewable energy to power my home. ",pull_request
mozilla-mobile,focus-ios,https://github.com/mozilla-mobile/focus-ios/issues/514,514,Definitely a power user problem. Let me know if there's a better place to give this feedback. Thanks!,pull_request
zgrossbart,bridges,https://github.com/zgrossbart/bridges/commit/9d7e83693850561662bddfff4f62be17ea638550,9d7e83693850561662bddfff4f62be17ea638550,image with dimensions of a power of 2.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b630132398178e7d83e5f108e61fe3219b3d2751,b630132398178e7d83e5f108e61fe3219b3d2751,Fix missing space in Dithmenos umbra power description.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d70a694e92dc6c158ebd1a718e51e8a461cd9cf7,d70a694e92dc6c158ebd1a718e51e8a461cd9cf7,"Enchantment down to +2, regen down to +7. It was a little too powerful.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/501c6074db9de4e8940687c22413d93229f62171,501c6074db9de4e8940687c22413d93229f62171,This may be overboard with the power curve adjustment - manipulating,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f8b1a133a1e306cacaef0772ad8361239125285d,f8b1a133a1e306cacaef0772ad8361239125285d,Flatten Gell's power curve.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e77a051a9308637442eb7c0f84028b52284e5a3e,e77a051a9308637442eb7c0f84028b52284e5a3e,"The spell did become more powerful in various ORB and rune portions of the game with the removal of -cTele. This is a reasonable adjustment for now. I don't think the spell is terribly problematic given a high XP cost at either L7 or L8, but we do have a number of higher-level translocation escape spells. May be worth revisiting the existance and effects of Dispersal/Disjunction/CBlink along with the lower-level Passage of Golubria at some point in 0.18.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/215faab85b56944b0d58164c24a16ff24192f4de,215faab85b56944b0d58164c24a16ff24192f4de,Adjust formatting of god_powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/75a41fec5b260e3405678e92336f8d186af7b559,75a41fec5b260e3405678e92336f8d186af7b559,has become much more powerful and abusable in endgame areas that were,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/78de33285ae52079f3091dc8b233310c3a94a2bb,78de33285ae52079f3091dc8b233310c3a94a2bb,I'm not entirely happy with the outcome -- god_power::rank does too many,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/daf50f858bb574147b72eb7ded726e102575d949,daf50f858bb574147b72eb7ded726e102575d949,"This replaces the old ""Gained the nth power of <god>"" notes, which are",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0050d11712bdf88ac8b0297d6f85c39053093ffa,0050d11712bdf88ac8b0297d6f85c39053093ffa,"no less powerful and has other advantages.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cb1435c3823363a931a967384a02cc7124a5e255,cb1435c3823363a931a967384a02cc7124a5e255,completely enclosed. But demanding a lucky teleport or high-power LRD,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cb87171553a7e66c5419b7edc45d790f00d83571,cb87171553a7e66c5419b7edc45d790f00d83571,Inherit energy modifiers in derived undead (Lasty).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6f51edd3a3200fb94b01fa9687cea1557dc41d69,6f51edd3a3200fb94b01fa9687cea1557dc41d69,"Use ""power"" instead of ""spellpower"" in spell descriptions",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/495263577fd96e4ca6e582a0f2f9762f1158e7a6,495263577fd96e4ca6e582a0f2f9762f1158e7a6,Don't autopickup multiple crystal balls of energy (#9849),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7e641dc5a96560c34f506fd5bb825346da39e513,7e641dc5a96560c34f506fd5bb825346da39e513,a powerful secret tech).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a046a472fbc3163d9265f829d2164288d9c908cb,a046a472fbc3163d9265f829d2164288d9c908cb,"Storm cloud is arguably not more powerful than even mid-tier clouds",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/24042e097f3f558e3cd10acd4c82422f9680ddf6,24042e097f3f558e3cd10acd4c82422f9680ddf6,The power multiplier could be increased if the nerf is undesired.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8a4e7f54fa8b285ce39b12c00cd345ffc9d52935,8a4e7f54fa8b285ce39b12c00cd345ffc9d52935,as a power level adjustment.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fc16dad4d35d06b8f29b5703ab0d2c0e7f05f95e,fc16dad4d35d06b8f29b5703ab0d2c0e7f05f95e,Tweak new powered by death a bit,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1cc541b22a808b635d25792be699b0ac277ae0f1,1cc541b22a808b635d25792be699b0ac277ae0f1,Refactor powered by death code,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/97eef23fd888cce2a2696bd17c87e74f968a1f5f,97eef23fd888cce2a2696bd17c87e74f968a1f5f,uninterestingly powerful on players).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/741a2a3bce43e091e5e0679daf0e32f387c8bd5f,741a2a3bce43e091e5e0679daf0e32f387c8bd5f,"Gods can be more powerful than items, and it seems silly that putting on",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d8b69f4bc4e69707502b308963935762dd79c982,d8b69f4bc4e69707502b308963935762dd79c982,"Base it on power, rather than the previous clouds' durations.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/43ba276a6ec2fa5800bdac5ed5310825e90d0473,43ba276a6ec2fa5800bdac5ed5310825e90d0473,"damage (increasing with spellpower), depending on degree. Doesn't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5cd8c6c3f7bc419d865c54a5aa68040b1644a452,5cd8c6c3f7bc419d865c54a5aa68040b1644a452,Also cap power at 100 (formerly 200).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e239088b6c3343ad196543f8d56343a172d8fca4,e239088b6c3343ad196543f8d56343a172d8fca4,We already make players completely immune to negative energy damage at,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/87edefa621c97b5013f55740420663d9c09d2bc1,87edefa621c97b5013f55740420663d9c09d2bc1,"Winning (aka ""winscumming"") is often considered an overpowered",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/87b32ff0065713e5101a2df2fd5adb24062fc9d2,87b32ff0065713e5101a2df2fd5adb24062fc9d2,Stunning monsters by decrementing their energy is a fairly unintuitive and,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0a147b9ce3867da12863ae9edeeea218f5cb69c3,0a147b9ce3867da12863ae9edeeea218f5cb69c3,is said to have studied the power of magical crystal with single-minded,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7904a774474ecb951ac2da62a3719a7abd917fde,7904a774474ecb951ac2da62a3719a7abd917fde,Give Tukima's Dance a power multiplier,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/14aae0eebc5c9379bd93ad9d231a703375763c0d,14aae0eebc5c9379bd93ad9d231a703375763c0d,than dramatically more powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3c5ba68713890bc9dec9d7275aa7f3227e9f7bfe,3c5ba68713890bc9dec9d7275aa7f3227e9f7bfe,Make MP-powered wands a single level mutation,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a5db0519ae8e841b0753dc712230998506799cba,a5db0519ae8e841b0753dc712230998506799cba,Change staff of power to a flat mp bonus,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e95019c67fd560dcd0f17c043feda5b7eab433fe,e95019c67fd560dcd0f17c043feda5b7eab433fe,"considered overpowered, so limiting them doesn't seem necessary.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a594528b74066783cf4dfbb8c6302d3c13ef14cd,a594528b74066783cf4dfbb8c6302d3c13ef14cd,"Evocations is very good right now, maybe overpowered; as such, it no longer",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/63f6ae18200c39cf4de5aa180092b57bd89575f5,63f6ae18200c39cf4de5aa180092b57bd89575f5,Remove the staff of power's MP cache.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/63baae8fa0f5f97f21436f9dfd908ae3e212642d,63baae8fa0f5f97f21436f9dfd908ae3e212642d,An extremely powerful prize will be awarded to the first person,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3d13fd628b1f398073d39b40c37c6853fb4b4e95,3d13fd628b1f398073d39b40c37c6853fb4b4e95,"likely to only be around 5 turns at reasonable power, could possibly be",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/492871e959956bc6d07145685840e6f8ca2504b7,492871e959956bc6d07145685840e6f8ca2504b7,Give Ru the power to make you actually stop training something,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/548cc014c2a157e64093f319242462c14d0744c2,548cc014c2a157e64093f319242462c14d0744c2,Make Death Rattle only create negative energy clouds,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2215ba773e33742a179398ba3b39cedfe4323f8d,2215ba773e33742a179398ba3b39cedfe4323f8d,Adjust some uses of negative energy resistance,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a569fcc1630c62b40ef10b1afa0df967879dbe3d,a569fcc1630c62b40ef10b1afa0df967879dbe3d,Remove negative energy vulnerability,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/94f4af0d2a03bbd7b0c7cd386f534090df5512a3,94f4af0d2a03bbd7b0c7cd386f534090df5512a3,same value as =magical power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64f94fbda671988ddb6505d0717260d682a4084e,64f94fbda671988ddb6505d0717260d682a4084e,spell power:,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/401194c74f6957667cb33db23c53d79b87949837,401194c74f6957667cb33db23c53d79b87949837,<doy> The bolt of negative energy hits you! You resist. You partially,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/009bb2c74a962842e075ee7c2ec843aae0d23fd6,009bb2c74a962842e075ee7c2ec843aae0d23fd6,Step down scattershot pellet count at high power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/33892799f99cca361f546f97cb4bbeac0193b044,33892799f99cca361f546f97cb4bbeac0193b044,Grant the arc blade its intended discharge power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a434e1b5443da4236eace79ed01ed77a2a8bfab4,a434e1b5443da4236eace79ed01ed77a2a8bfab4,Pull most monster spellpowers into mons_power_hd_factor(),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/20e6238a5580829426407cec76f11de6c45054b0,20e6238a5580829426407cec76f11de6c45054b0,Factor out more spellpowers,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/61e3a8d7c1ce43c5c8c20cc62ba599408cf742de,61e3a8d7c1ce43c5c8c20cc62ba599408cf742de,Fix monster spellpower (wheals),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/562718103ee52fd399f2d1002843b1525a9d5434,562718103ee52fd399f2d1002843b1525a9d5434,"and spellpower as factors. One of these, monster MR, is fully visible",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d1cc993324d235f6b55e8b23e9b608a29312edbf,d1cc993324d235f6b55e8b23e9b608a29312edbf,"Now gives (power / 100 + 0.5) AC+SH per corpse. (So at power 0,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c14e2fc85d8fa25ebdf750c3cf677a5d9910fc8b,c14e2fc85d8fa25ebdf750c3cf677a5d9910fc8b,"Rather than a complex formula based on spellpower & # of corpses,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0614c1b1eb3e3a3ad336061e7089dc38a29437e6,0614c1b1eb3e3a3ad336061e7089dc38a29437e6,It's far too powerful otherwise.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4b4efb81a0e2530e448b82053b074ce151fba7c7,4b4efb81a0e2530e448b82053b074ce151fba7c7,"books for, not to mention making some extremely powerful spells possibly",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f4e8d38841afd18b4bdf348fd448ae90d8f2ad15,f4e8d38841afd18b4bdf348fd448ae90d8f2ad15,fixed the spell proved to be underpowered.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/dec789e24264380ab2c7e29710f4f2242267996b,dec789e24264380ab2c7e29710f4f2242267996b,"on the low end of the power scale, so now the size of a damage dice is",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fd4149476d07e3f6de11a512aeaf98149c79192f,fd4149476d07e3f6de11a512aeaf98149c79192f,"Fix Agony, etc. enchantment power modifiers (#9273).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ada22b11b464bbb8bf3d000aaec9fd20bec32486,ada22b11b464bbb8bf3d000aaec9fd20bec32486,Change dependence of Singularity radius / strength on power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/94d3aa48cef97d2f970714904662148493e26c04,94d3aa48cef97d2f970714904662148493e26c04,So you can get an idea of how the power varies with radius.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d75f5fbaba19526c2fdf886d6fb67901c92d3892,d75f5fbaba19526c2fdf886d6fb67901c92d3892,"In my own testing, it was significantly more powerful than other level 9",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/beb5d18a4e4957f10813592ef3acf429fca78d0e,beb5d18a4e4957f10813592ef3acf429fca78d0e,Fix zappy ench_power assignment.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/07511012412da6ae64388399c869c745c53de9c4,07511012412da6ae64388399c869c745c53de9c4,Init ench_power properly for monster beams.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/932b14c53c622aad7be0a4a0a7c4b60eb3a35487,932b14c53c622aad7be0a4a0a7c4b60eb3a35487,four tiles at max power (50% chance). It's also more likely to push,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/144e84685d028548d757541e7788aafda522e702,144e84685d028548d757541e7788aafda522e702,dependent on power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0f6eec68213baf3993085d19209712bdbd9e7da1,0f6eec68213baf3993085d19209712bdbd9e7da1,spellpower. Incompatible with Stoneskin/Ozo's. Does not decay,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bb731574e7e1b603b162ac47d273fd4765e0d3ee,bb731574e7e1b603b162ac47d273fd4765e0d3ee,"Affect a wider area (up to radius 4 at full spellpower, which might need",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1eca9a74a905b7b92016ecbd0b9d290785626955,1eca9a74a905b7b92016ecbd0b9d290785626955,roughly half the damage of an iron shot; thus it is quite powerful at,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ad6c6b887ad964fb2e421939dee0fcf57ccf6a72,ad6c6b887ad964fb2e421939dee0fcf57ccf6a72,Add disjunction to Solitude card at high card power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d197b7dc6b2bc8f6de0aab1beeadd4e18a150a7c,d197b7dc6b2bc8f6de0aab1beeadd4e18a150a7c,Make high-power Orb cards try to aim (Hangedman),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f7686950310751e1d7cde0456b1439255476877d,f7686950310751e1d7cde0456b1439255476877d,"""There is the same power also in the serpent called the basilisk.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/18b3a99424f4ff22f2ffa510fd0f8cbc52fa601d,18b3a99424f4ff22f2ffa510fd0f8cbc52fa601d,"Amplify some Dowsing power numbers, since it's locked off in Wonders now.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/61fc4d5272ed727de4d6eba8f607a7e5cb8301ac,61fc4d5272ed727de4d6eba8f607a7e5cb8301ac,"Double-edge Venom card: remove Sting, add low-power brief -rPois",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7d9feff5cb5cd74d396cf6a1dc982b9633c5670f,7d9feff5cb5cd74d396cf6a1dc982b9633c5670f,With card power:,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b6d0ebcd1363858b477be6974973094a7f6b45c6,b6d0ebcd1363858b477be6974973094a7f6b45c6,The low power weapon is slightly less pathetic and tier 2 is either a,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ef87a51fe5aaccb7852a39802124bd79e3db06a4,ef87a51fe5aaccb7852a39802124bd79e3db06a4,Add a free ugly thing to power level 2 Repulsiveness.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3c7b0dfcc83fc979c15274f522cbcc43b5cbfe29,3c7b0dfcc83fc979c15274f522cbcc43b5cbfe29,"Power 0 gives a low tier effect, power 1 gives low with a chance of a high",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/36f5e726154690cf18b1b98541d16d43fbea6af5,36f5e726154690cf18b1b98541d16d43fbea6af5,make the dead monster lose extra energy caused a crash.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4db28210f57eb0e1b8d3d0155c182e77fa27b93c,4db28210f57eb0e1b8d3d0155c182e77fa27b93c,Fix ugly thing move energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/92c33983b59d053a96be98685e22bd79d93e7194,92c33983b59d053a96be98685e22bd79d93e7194,Fixup unitialised move_energys better.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a804f3c83858097f465d90ada79bb97c139f7cb4,a804f3c83858097f465d90ada79bb97c139f7cb4,initialize move_energy for non-ghost ghost_demons (wheals),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/83d1d28874efe5d587f101e742ca489fbdde6b74,83d1d28874efe5d587f101e742ca489fbdde6b74,Single-use and stackable; it checks your evocation power against the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/842f547a2fb5f3b609f83c7faa387dd2e2cd3b04,842f547a2fb5f3b609f83c7faa387dd2e2cd3b04,Increase base damage & decrease power scaling; about 10% more,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b05332bf588dc399f70ab51acbbf38af2d08b98d,b05332bf588dc399f70ab51acbbf38af2d08b98d,more powerful ones is only going to be useful if it has a vastly greater,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/caa8d4fddc532dc37178b87b0953628a8966c1ab,caa8d4fddc532dc37178b87b0953628a8966c1ab," effect (""Shape-changing energy floods out from your body and enlargens",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b2fc2e3d728892e3bd35361176e34ad314ee14aa,b2fc2e3d728892e3bd35361176e34ad314ee14aa,negative energy at you.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/748b4756fdd52ca6760475ba0d928c3bdc95530c,748b4756fdd52ca6760475ba0d928c3bdc95530c,"The unborn offers itself to nameless, and fills with unholy energy.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c690f0411f96ddb59a6c3faef576207973a2c6d1,c690f0411f96ddb59a6c3faef576207973a2c6d1,Restore Malign Offering's level and spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/480f9ae3bbaa678a67358812dad730a54190a896,480f9ae3bbaa678a67358812dad730a54190a896,Negative energy clouds should be more like bolts of negative energy,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c235d9a2c90a415d60007989161cb37df42bbca7,c235d9a2c90a415d60007989161cb37df42bbca7,"Add a mutation that powers up wands, but makes them use MP.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/292f5e2e18953b6c0847da9d391274e80bba4a65,292f5e2e18953b6c0847da9d391274e80bba4a65,"It's somewhat abusable, and there was already a hidden power hit if it",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/95fd2cd922920c07e83960fa52bee6cd2aa01a73,95fd2cd922920c07e83960fa52bee6cd2aa01a73,recite too powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3cebfc1d9e22b882f894932b5587901909df21b8,3cebfc1d9e22b882f894932b5587901909df21b8,a tool to ensure the repositioning wasn't brokenly powerful rather,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a56124e751cdf3e01851086e22add7294238aba1,a56124e751cdf3e01851086e22add7294238aba1,astonishing power; turning him into a demigod fits pretty well.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a708c5f5b7aa67168a0a1c223be90d091547c54f,a708c5f5b7aa67168a0a1c223be90d091547c54f,"Revert ""Increase /fireball power considerably""",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/333fec7a03388b112fb7f4eb83e0158e9a3a747d,333fec7a03388b112fb7f4eb83e0158e9a3a747d,"limited charges, which should balance out any extra power. The new",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/54a1dc874041e0ee9ed4fd75ff6e026a0beec46a,54a1dc874041e0ee9ed4fd75ff6e026a0beec46a,Increase /fireball power considerably,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e98a28f5822cd5d2b1f6cd1a1a3734e240ef1dc4,e98a28f5822cd5d2b1f6cd1a1a3734e240ef1dc4,Give Dragon's Call the empowered colour when in Dragon Form.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/739c61c5a0b4cccc3e78683a3b99a24f20c67c09,739c61c5a0b4cccc3e78683a3b99a24f20c67c09,Restore full Zin piety contribution to Recite power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8aea26c63a0ae5e2856926b9ef9142405f9ad6e8,8aea26c63a0ae5e2856926b9ef9142405f9ad6e8,Make Zin's Recite a little more powerful at very low invo,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9ce75517f627c74a8382f7750de19d623b00cb2b,9ce75517f627c74a8382f7750de19d623b00cb2b,Update transformation power on re-cast (Kvaak),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b8ca9bff51bd73c8806176a5b5e0ac89eb3e1f73,b8ca9bff51bd73c8806176a5b5e0ac89eb3e1f73,Draw Out Power was consistently the weakest/least used of Ru's powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7db326cb1c9e808bf81c00dcae7d42f614c301fd,7db326cb1c9e808bf81c00dcae7d42f614c301fd,"can use the power you've gained through sacrifice, so you don't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d17bf937c492a63bd12380dd64d2aaceae9394a9,d17bf937c492a63bd12380dd64d2aaceae9394a9,"amounts of loot, and the high plateau of player power / xp in its position,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/275c35f9b851c934cd2011018f18a5cafe310ee9,275c35f9b851c934cd2011018f18a5cafe310ee9,in the first place. Those who want to continue to relish the raw top power a,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b262963186641055bdc7562861312c57b80173aa,b262963186641055bdc7562861312c57b80173aa,"could power leap to any tile in LOS, ignoring the range of 3.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bbba03e2ef5a588a1122f13a82b4e88afe15dd3b,bbba03e2ef5a588a1122f13a82b4e88afe15dd3b,"colours; spells.hunger(), in bars; spells.power(), in bars;",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/63fd307b25d57b879f9a44d39a81013940e1ab87,63fd307b25d57b879f9a44d39a81013940e1ab87,Allow hangedman_elf_power_crystal to place.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/540d9af89a044788f805e1cf0e0eed3b14bb6781,540d9af89a044788f805e1cf0e0eed3b14bb6781,"Set the Horror status to affect spellpower instead of spell success,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/65d117d0c71acc14723c837e5c7a68edb1f0ee0b,65d117d0c71acc14723c837e5c7a68edb1f0ee0b,"While we're at it, also correct a few power calculations to to take",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a3f1385589b0d26b0b6d8d6f6e21915c165367f6,a3f1385589b0d26b0b6d8d6f6e21915c165367f6,Tidy up spellpower props on effect expiration,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f054a6457fa0f54580893607c794b7356a9fa5f8,f054a6457fa0f54580893607c794b7356a9fa5f8,preventing powerful /invis secret tech. rip :(,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fd414227e92efc1912e826b4cdceef9eb51cbd40,fd414227e92efc1912e826b4cdceef9eb51cbd40,Mention the effects of spellpower in DDoor description,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d54d80d0058b7467c579a32e31c67a17ae467146,d54d80d0058b7467c579a32e31c67a17ae467146,Door - all the spells which referenced being powered by skill in,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cc8d6ef1a9a08f1e3ddb6d5f29ab5323a9f79d0d,cc8d6ef1a9a08f1e3ddb6d5f29ab5323a9f79d0d,Make Ice/Statue Form use spellpower instead of Ice/Earth,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f11e77305c2c7c242be67821183def72ec7b1b90,f11e77305c2c7c242be67821183def72ec7b1b90,Reduce the spellpower cap to 100 (closely approximating the old,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7aee86ca5a559ee8a56e65d14f2413970e82796e,7aee86ca5a559ee8a56e65d14f2413970e82796e,Make Ozocubu's Armour use spellpower instead of Ice,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/12b3f55b39605ca45e6907769421712446f91852,12b3f55b39605ca45e6907769421712446f91852,Make Stoneskin use spellpower instead of Earth,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/069fef24265adf10b09dbb667e4a44455704a559,069fef24265adf10b09dbb667e4a44455704a559,Make Condensation Shield use spellpower instead of Ice,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/756d4b8fc9261ebc6f76252947bb274a59c4a1ed,756d4b8fc9261ebc6f76252947bb274a59c4a1ed,Make Sticks to Snakes use spellpower instead of Transmutations,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/230892da5a0135f7873b42c1cffff939ef61a83c,230892da5a0135f7873b42c1cffff939ef61a83c,Make Shatter use spellpower instead of Earth,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/50cd98db082d718c1eaec9f46818ebca4d9bc309,50cd98db082d718c1eaec9f46818ebca4d9bc309,Make Passwall check spellpower instead of Earth,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4662642c6b3fc9eb32ecc2b4d799078b2ccab2f6,4662642c6b3fc9eb32ecc2b4d799078b2ccab2f6,Make Death's Door check spellpower instead of Necromancy,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cfb61905c56eeeb599c04d43f7be9efdaad15e89,cfb61905c56eeeb599c04d43f7be9efdaad15e89,"m&f; better return on skill investment & a higher power cap,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2744e81ddbcce133bca18baee0e58e2da8c90d8c,2744e81ddbcce133bca18baee0e58e2da8c90d8c,"interesting interactions, and the powerful active abilities. Allowing a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9fff7c9c4521aa49231fdc29fdc806a0138a6f95,9fff7c9c4521aa49231fdc29fdc806a0138a6f95,Mistakes in implementing Ru's * power meant that melee attacking monsters,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8234afa0721cc3fbc4edf68b38f7dc37f59676f3,8234afa0721cc3fbc4edf68b38f7dc37f59676f3,but a limited peak power & subpar returns on XP investment.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b938532f5e844c74ce70ae9282c10cf00cbb8666,b938532f5e844c74ce70ae9282c10cf00cbb8666,"for xp investment, but a limited power cap, especially if you",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5ee61df6f7698356e09055e3fc15fd96d867a250,5ee61df6f7698356e09055e3fc15fd96d867a250,should not still be dominatingly powerful through endgame,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/52da494bbcaee71c74bf962e8ed96d8e39535e04,52da494bbcaee71c74bf962e8ed96d8e39535e04,"protection"" to ""negative energy resistance"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1137a02fa7c1675c1248b5ae20f10b8970c92166,1137a02fa7c1675c1248b5ae20f10b8970c92166,"Make profane servitors ignore holy wrath, like holy energy (#7089).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0b91c844a1fc16397b15cdcfffa70edd29ed9329,0b91c844a1fc16397b15cdcfffa70edd29ed9329,Iashol ***** power: Cataclysm,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b86edef8df8a75c2a5d3bfdedf7a6c1a2721216f,b86edef8df8a75c2a5d3bfdedf7a6c1a2721216f,Iashol **** power: Power Leap,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4e24ed678dd3e57bcdc5abfd789cfb89df78a909,4e24ed678dd3e57bcdc5abfd789cfb89df78a909,"Iashol's *** power, which restores HP and MP in exchange for drain and exhaustion.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/83fb20e3757a8297b5241974435f2c4ff045708e,83fb20e3757a8297b5241974435f2c4ff045708e,"Setting up Iashol's ** power, which automatically retaliates with status",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ae39b6fc6dd05dc5ef2ad6093b41827412f7494d,ae39b6fc6dd05dc5ef2ad6093b41827412f7494d,"Makes spells easier to cast, but with lower power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2c662eed7b2d717c127cb4d1e0606f5663526cd3,2c662eed7b2d717c127cb4d1e0606f5663526cd3,cloud's agent (rather than NULL) to res_holy_energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c95cc8db36bdf7730dbbc3739bc658c05f9dafc2,c95cc8db36bdf7730dbbc3739bc658c05f9dafc2,"Mostly this just merges res_holy_energy and res_holy_flames, keeping",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a0303cb041ea7abab89b2af5912d55776e1cb99f,a0303cb041ea7abab89b2af5912d55776e1cb99f,location). Also restore the restriction of yellow wasps to power level,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1c26d996b4be436285edc2092e1282da8cf0ec13,1c26d996b4be436285edc2092e1282da8cf0ec13,we were computing power using the spell schools rather than Evocations.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7a813ab0ddbdd5081f0dd3561dcf7643e3ee8b82,7a813ab0ddbdd5081f0dd3561dcf7643e3ee8b82,kind of overpowered. So:,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b48a7715b0e091bc71e57ee3a37fd1cc09587c2a,b48a7715b0e091bc71e57ee3a37fd1cc09587c2a,"It hastes the slow and slows the hasty, with higher power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a2954550f67acdb7cdc7145f059a242a27b9da28,a2954550f67acdb7cdc7145f059a242a27b9da28,"Rain (shallow water), swiftness and a short lived tornado at high power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5d578cf1fbba9286d1b334168093ea050fe201b9,5d578cf1fbba9286d1b334168093ea050fe201b9,With higher power it is more likely to place clouds under hostiles.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6f959b73ab6b07a742e45870b540a2038e405253,6f959b73ab6b07a742e45870b540a2038e405253,"Add the Majin-Bo, a new fixedart that offers power at",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/702813b56bf57072c8d3de9b557c1997fccdd8c2,702813b56bf57072c8d3de9b557c1997fccdd8c2,"Since Gr are already fairly powerful, their high aptitudes were nerfed",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4815abfa339352fac0619c5411fb8e421c1bb4d0,4815abfa339352fac0619c5411fb8e421c1bb4d0,Make Qazlal's Upheaval AUTOMATIC_HIT and reduce damage slightly at low power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5f4c38d67a61b9ac2c9eef99dcee94b507b00502,5f4c38d67a61b9ac2c9eef99dcee94b507b00502,Use the most powerful applicable Recitation against enemies.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/29266000b18b3dcb05aa4c91de20ece9ac754bbf,29266000b18b3dcb05aa4c91de20ece9ac754bbf,can't grow into anything yet since the effects/power of the nonbase,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a82c57f8d186f6149b1b60cf70b62e5bf6f8db59,a82c57f8d186f6149b1b60cf70b62e5bf6f8db59,too overpowered (it's free antimagic without any drawbacks) and treads,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64f0e6ef8afa5d38b99351a6346e47b553adcc76,64f0e6ef8afa5d38b99351a6346e47b553adcc76,very powerful and game-changing for Enchanters - more so than was,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/82e4a9b1b9aa46d120cf07e31f2c117517a9928e,82e4a9b1b9aa46d120cf07e31f2c117517a9928e,"Give the ""powerless spirit"" message again.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f9857336ce9090af585e8845d7e3d7235ed97de3,f9857336ce9090af585e8845d7e3d7235ed97de3,Make gods care about negative energy clouds properly (Lasty).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b05c47ca704ebbd0a835eb0ff4c52f69e65923b5,b05c47ca704ebbd0a835eb0ff4c52f69e65923b5,"where vapours were, put insubstantial wisps as lower-power summons",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f56ece6c5f981cc67d2f4f492cb5395e5f08c444,f56ece6c5f981cc67d2f4f492cb5395e5f08c444,Make rakshasa defense cloning a fineff and take energy (elliptic).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c144fa5b392b3c6a2e8756b93aea3a7aba54344c,c144fa5b392b3c6a2e8756b93aea3a7aba54344c,Don't increase holy word power when worshipping a good god,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/52d274e0595491b4dd965030d1effe266ec2295f,52d274e0595491b4dd965030d1effe266ec2295f,"This allows negative energy and acid clouds to show up earlier,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/21463cad35aa657b33c466cc8e0d3ee9e51e7a96,21463cad35aa657b33c466cc8e0d3ee9e51e7a96,Lower Call Imp power cap to 100,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/55f82b9fce15960c5476bf553e65034b07193364,55f82b9fce15960c5476bf553e65034b07193364,The old limit was being hit for maximum power Glaciate.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/290746a59a811ec36197083ed73a75297bcb468a,290746a59a811ec36197083ed73a75297bcb468a,Make the Wraith card cause draining based on card power instead of,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/06ca5bf28751d98bbc56bdbd68173f3effae9640,06ca5bf28751d98bbc56bdbd68173f3effae9640,Don't let Nemelex's piety/penance levels affect card power from Punishment draws,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3595075b7f7d5ca02ca847fc988a454fcd4f2e61,3595075b7f7d5ca02ca847fc988a454fcd4f2e61,"will ALWAYS attempt to cast a spell, but the energy cost of this",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/115e4bb162654b4d1fa4f9b723cf3cd0664c067e,115e4bb162654b4d1fa4f9b723cf3cd0664c067e,blinding/confusing things!). This lowers its power considerably,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/eec2bc8ca4b01422f4acec8bba481d4c9330b029,eec2bc8ca4b01422f4acec8bba481d4c9330b029,"interruptibility without being overpowered, since stranding yourself",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/66f9e36f75d6980a8fe005888ad34791fca8c87c,66f9e36f75d6980a8fe005888ad34791fca8c87c,"depth than they used to be, I felt that a very minor power reduction",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/06cfa3b5d85c0a9268ad7ed1f6a3ab3114b216e6,06cfa3b5d85c0a9268ad7ed1f6a3ab3114b216e6,...since it gives negative energy clouds and clouds of flame.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/66d9578d9604425dc09ee5409bb9adc27a0be235,66d9578d9604425dc09ee5409bb9adc27a0be235,a few other changes to reduce power level instead:,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/eb0b70cff52e6c5ed6fca3083a51215cf5d9bef6,eb0b70cff52e6c5ed6fca3083a51215cf5d9bef6, * gifts crystal ball of energy with chance (evocations *,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/aacd29fda767324443dde60537122b0ac5dce8ce,aacd29fda767324443dde60537122b0ac5dce8ce,[Committer's note: replaced the grossly overpowered enemy set with the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/90c8bdd2ab93d0ffddaed583e2b4238c93a3a166,90c8bdd2ab93d0ffddaed583e2b4238c93a3a166,"Reduce mermaid/siren mesmerisation power, increase base duration,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0b45604d16f72d3a575a965a73d510ae7f1faf11,0b45604d16f72d3a575a965a73d510ae7f1faf11,"already multiple exceptions to such things) or power reasons, but to",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/897aba9ef8c545917d58a6032113f101b2fffad3,897aba9ef8c545917d58a6032113f101b2fffad3,Make Spriggan Druids empower nearby beasts upon death,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/28bf7662ad0eb8c58b266714dacd499540c35b7d,28bf7662ad0eb8c58b266714dacd499540c35b7d,power. This removes the card-specific DUR_SLAYING and moves the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1fb6f520de2f96f11a0c2582ce4eac4c2ae6856d,1fb6f520de2f96f11a0c2582ce4eac4c2ae6856d, subvaulting related to the old overpowered enemy set.],commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64060d9ddb113ae029b828f1aa10c80b673d7ff2,64060d9ddb113ae029b828f1aa10c80b673d7ff2,"Reduced the formula to 7 + power / 9, which is 3d27 for HD 15.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5a102a04c5b39f33ebbe846f20f302ec80e34798,5a102a04c5b39f33ebbe846f20f302ec80e34798,I've also moved the enchant power setting bits for teleport self and,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2fa5e73222c77b54000e8b79438a096ded95af3,c2fa5e73222c77b54000e8b79438a096ded95af3,venom-brand power (where it is quite good and I would like to see,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d0b4e9bb1097c7e353263c3a630c6a04eb3542d4,d0b4e9bb1097c7e353263c3a630c6a04eb3542d4,that lategame poisoning could use a power boost (and plan to give it,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ddf16dbc89deb131721b4c9735e818f3cc35aea0,ddf16dbc89deb131721b4c9735e818f3cc35aea0,powerful in many contexts. Mana vipers do provide stronger disabling,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3b8d1aeae3aa457bc07e1dcb93ccdda05c9c4e9c,3b8d1aeae3aa457bc07e1dcb93ccdda05c9c4e9c,Make wolves and wargs require more spellpower from CCF,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e3a50e016654ef1290a2374bf9da6b3bb1138aa4,e3a50e016654ef1290a2374bf9da6b3bb1138aa4,Reduce Lightning Spire power and spellpower scaling,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/08098647c742b4731605eed4780f5763604468e8,08098647c742b4731605eed4780f5763604468e8,"was an extremely powerful spell that tons of characters wanted, and",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e8428e0f7598243559ba29fa8eabd33f22628876,e8428e0f7598243559ba29fa8eabd33f22628876,"a cap of 2) whose antimagic effect scales noticably with spellpower,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/34a32a6a3c3a11f4de864cafc2bb119bfb207be1,34a32a6a3c3a11f4de864cafc2bb119bfb207be1,The explosion damage is based both on spellpower as well as the HD of,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2a0814e80e4265e48f4a64bdc9eff03199f80c2f,2a0814e80e4265e48f4a64bdc9eff03199f80c2f,"roughly in order of level and power, with the player's higher spell",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5112a529f80abc0ff50deb9ed1cb59b1f15397f6,5112a529f80abc0ff50deb9ed1cb59b1f15397f6,Scale Summon Lightning Spire with spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/482083a76010ee9212fb7aba7fc09d445f298679,482083a76010ee9212fb7aba7fc09d445f298679,Scale chance of 3s over 4s from Summon Demon by spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/af7676b698eea389a56e0232e12d3db2e2adfd63,af7676b698eea389a56e0232e12d3db2e2adfd63,"at higher power), or a sphinx (much rarer except at high power), which",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f26fde6e9db971d06053ca1ca46445848bd3fee4,f26fde6e9db971d06053ca1ca46445848bd3fee4,lower power version of Mass Abjuration each turn for a reasonably,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/319cca669da9fa102192cb827878b74eecad1ee3,319cca669da9fa102192cb827878b74eecad1ee3,Reducing abjuration power by 20% is pretty underwhelming when the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d66ee650df7563678a65b72f74ec9a6e148fad29,d66ee650df7563678a65b72f74ec9a6e148fad29,Abjuration power used to downscale with each monster affected and then,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3813bf075242519dac1e256daebaa9b143d01bcc,3813bf075242519dac1e256daebaa9b143d01bcc,This was neither a popular nor powerful nor especially interesting,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b69413d9fdc355ab0a9fd244e8869fbfa8f5a627,b69413d9fdc355ab0a9fd244e8869fbfa8f5a627,other level 9 spells do. It is distinctly less powerful against massed,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8775c94ab80febb6c3c4fa3c967e77e82993b02f,8775c94ab80febb6c3c4fa3c967e77e82993b02f, by spellpower),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c60085f66cc3fa0e7dd44289e96877a76c277196,c60085f66cc3fa0e7dd44289e96877a76c277196,Scale Call Canine Familiar better with spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/257c1ba7c9d9ba868705cf9481fbe59fce056d87,257c1ba7c9d9ba868705cf9481fbe59fce056d87,"for Call Canine Familiar (to help with power scaling), but adding",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6898a1edec237ad7a9879132f1c95a8121cfe9cb,6898a1edec237ad7a9879132f1c95a8121cfe9cb,Scale summoned Ice Beasts' HD with spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2b973d98b09fe4cbee21e8ec805ab5df301b1f28,2b973d98b09fe4cbee21e8ec805ab5df301b1f28,monstrosity (but making it more spellpower-dependent) and generally,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/157743cf2e604e5c0212c1a3c642fe899e5662d8,157743cf2e604e5c0212c1a3c642fe899e5662d8,"The difference in power level between these two results was extreme,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b6a43b45fbb775cf8ed0747e278c2a472a064ed3,b6a43b45fbb775cf8ed0747e278c2a472a064ed3,"The power was a lot lower than intended, and the player always benefited",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/61501322e2aed0835ac262123df2bf3314795150,61501322e2aed0835ac262123df2bf3314795150,Explain effects of spellpower in battlesphere description.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/359569f0a7cc005214ae84427511059f71db10ad,359569f0a7cc005214ae84427511059f71db10ad,Weaves shadow creatures roughly from D:<evocations power> (including,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/75deb85f6e81443628063de806a368df0c3b08a3,75deb85f6e81443628063de806a368df0c3b08a3,"power it gives rain, mist, or noxious fumes; mid-tier gives flames,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bfda3da51aaee884b17f1828b9c3c30042064e90,bfda3da51aaee884b17f1828b9c3c30042064e90,maximum is LOS at maximum spellpower; damage within a minimum-range cone,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5a7a5f31150788f31a69f98aa4ab3149b8dfab78,5a7a5f31150788f31a69f98aa4ab3149b8dfab78,"Hopefully this will bring the spell back from ""overwhelmingly powerful""",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/59b0af933f2f1d0ffca26c9dc7a889e44ed321f8,59b0af933f2f1d0ffca26c9dc7a889e44ed321f8,It may still be too powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7bb2d9cc7836f2801166a53ab5447280cc8411ce,7bb2d9cc7836f2801166a53ab5447280cc8411ce,Add effects of spellpower to some summon spell descriptions,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/464c487c3a5de97647ca8a7eb6fd8f4d5bd6d824,464c487c3a5de97647ca8a7eb6fd8f4d5bd6d824,overly powerful at the moment and I doubt this will change that,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/448cdef6552125beca6daf06ad6a078afef763bd,448cdef6552125beca6daf06ad6a078afef763bd,"If this is too low, it can be upped to flame cloud power (from 4 to 7).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/230ef3e62244bdff6adcb585676b0469e80f8b10,230ef3e62244bdff6adcb585676b0469e80f8b10,"(and makes it scale more strongly with power), while nerfing",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/28b0058d480bfe2d6c6150d0cf28ea1e0297c481,28b0058d480bfe2d6c6150d0cf28ea1e0297c481,"spellpower, and possibly they should (as the number of trees do),",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/74a666722cce3ac5c022eab9228938887cc34816,74a666722cce3ac5c022eab9228938887cc34816,"Improve guardian golem defenses, scale hp with spell power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5f9f4c61098c323c0ecdf8bff998a5802183fc92,5f9f4c61098c323c0ecdf8bff998a5802183fc92,Fix some typos in monster energy descriptions (#8150).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/52af45fe57cb4f084ca9bd99cf0845a04b225397,52af45fe57cb4f084ca9bd99cf0845a04b225397,"Note that the spell is heavily power-based, so this doesn't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9b0eb917c769f635581c9024509ddf9700e1a6ad,9b0eb917c769f635581c9024509ddf9700e1a6ad,you do get will be somewhat more powerful (and lowers per-HD hp,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4c9fca9d67b18123b499bbd9243002647fcb260a,4c9fca9d67b18123b499bbd9243002647fcb260a,salamander firebrand movement energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/af2634a3aa6d7c286d35d2680d74359c8b01dd45,af2634a3aa6d7c286d35d2680d74359c8b01dd45,Describe monster energy usage in xv and ?/M screens.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/63a4c57a0e2add125bb261ff04f52467251c6c07,63a4c57a0e2add125bb261ff04f52467251c6c07,Base RMsl/DMsl expiry on current power rather than power at cast time,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f995b71d0459b021b7b447bda3dfb9febddcac1f,f995b71d0459b021b7b447bda3dfb9febddcac1f,"The guardian golem is an ally with little attack power, but it can cast",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/56b5fcd115a95667dd3483ca911e1ab0deab6fef,56b5fcd115a95667dd3483ca911e1ab0deab6fef,Add a player version of the Demonspawn Black Mark spell to the negative energy facet,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/dc1dc17bbad6579e7821be58ee49164135786185,dc1dc17bbad6579e7821be58ee49164135786185,"Slight adjustments to power, timeouts and messages for RMsl/DMsl",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c8a42037c7aa9beac96c59aebe5000cff6cf8f37,c8a42037c7aa9beac96c59aebe5000cff6cf8f37,Improve explosive bolt damage and scaling with power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/45efeda4196edc9dddb1ff5f6370485dad9c4866,45efeda4196edc9dddb1ff5f6370485dad9c4866,is bad in light of the power of some of Dith's abilities.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4d98f7e0bfbb79b818ef99b26a319ebee8857e61,4d98f7e0bfbb79b818ef99b26a319ebee8857e61,(variable) AC increase should modestly extend his staying power as well.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f745ed05d17bff1e14494cdf2219c725966edb13,f745ed05d17bff1e14494cdf2219c725966edb13,Fix ridiculous salamander firebrand energy entry.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1c17fde8945367f4584cf21bb62ba9d03730bfa3,1c17fde8945367f4584cf21bb62ba9d03730bfa3,energy immunity inherent in being anything but MH_NATURAL.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7677c09424bd5d95e54c7bd31ea454623784830f,7677c09424bd5d95e54c7bd31ea454623784830f,0.2 AUT makes it closer to the power of the old dig.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/67a49ddb5e539114859bc6e5d09a567d1dff5601,67a49ddb5e539114859bc6e5d09a567d1dff5601,New Zig Set: negative energy!,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b2eb5936f1518af7632c04434a4d174deab9dcc9,b2eb5936f1518af7632c04434a4d174deab9dcc9,damage inflicted is greater at the same power compared to normal,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/74110c2ed729d31551db9e75c030e4147c9f78da,74110c2ed729d31551db9e75c030e4147c9f78da,(the power argument was used in two different fashions in the merged,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/10a3214abc2bedc287c85227ec6b315bcf871c76,10a3214abc2bedc287c85227ec6b315bcf871c76,The difference in power between salamanders and the next-strongest,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/494c5fece274f39ea1875407b6632be2f55d10f3,494c5fece274f39ea1875407b6632be2f55d10f3,charge rate and the power of lightning torrent itself.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1df55a26386c252583a27030b63ec684747ca781,1df55a26386c252583a27030b63ec684747ca781,Don't deduct energy twice when monsters cast portal projectile,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a4782071bdf70dfeeed85eebd00e3361c265a500,a4782071bdf70dfeeed85eebd00e3361c265a500,"It previously had flat power, regardless who was using it. The net",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4a95513685cd52e08a0870072e977854e10af435,4a95513685cd52e08a0870072e977854e10af435,mesmerisation can be powerful and relevant when supported by dangerous,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/df4788baaa0839bc2f5ada2494950d4c7c0516b9,df4788baaa0839bc2f5ada2494950d4c7c0516b9,more powerful).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ca45539f9be5e410f04aa8a6d9f26379353b47c8,ca45539f9be5e410f04aa8a6d9f26379353b47c8,Fix failed siren/mermaid mesmerisation attempts consuming no energy,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/61e05370bc7496d70a91b32e74a85f0818189899,61e05370bc7496d70a91b32e74a85f0818189899,This power performs some of the same functions as waterport touch,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4077693112024357f5550f539bef18a45e9210fe,4077693112024357f5550f539bef18a45e9210fe,from a much earlier floor and aren't even major powerhouses then.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c3013328026260f61aee00a63df90dac971c872e,c3013328026260f61aee00a63df90dac971c872e,"Generally this is an overall power reduction, with a few other tweaks.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5637cb1e08c5adaeb6073b8b35e56f3b57a7db43,5637cb1e08c5adaeb6073b8b35e56f3b57a7db43,"land, but their movement slowing and EV-reducing effects are reduced in power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ce1a58ae8dce12c0b8a8361a584c8a5646a87d02,ce1a58ae8dce12c0b8a8361a584c8a5646a87d02,"backgrounds, and somewhat less powerful with melee backgrounds.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/321c037b6790e6ad2649caee2c20d13a850b72f2,321c037b6790e6ad2649caee2c20d13a850b72f2,Change 'magic' to 'power' for non-spellcaster manadrain message.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7c294fe32e8a85773b2a44e391f9b3bb3ade8051,7c294fe32e8a85773b2a44e391f9b3bb3ade8051,Fix shadow mimic spellcasting power (#8026).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/22cd082389fbd3437612cea433027f4c809c1b01,22cd082389fbd3437612cea433027f4c809c1b01,"and powered by pain, but that seems quite difficult to fit in.)",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/889f32d1afad941cdf3a3fa9d877aee8947f1f02,889f32d1afad941cdf3a3fa9d877aee8947f1f02,"This spell empowers the caster and its allies to randomly drain speed,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f2c9da4351876ec2e5158080711c2bcc1fd70c0f,f2c9da4351876ec2e5158080711c2bcc1fd70c0f,...now that there's an ENCH_AGILE to power it.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e7b4354f359aec135423db64aa75feceb33e6454,e7b4354f359aec135423db64aa75feceb33e6454,the spell power a little in compensation anyway).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/256b2eebc52ee8d94616601aba0909beacd2895e,256b2eebc52ee8d94616601aba0909beacd2895e,which is a pretty backwards assumption of difficulty versus player power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bad0f68e464bf2ee85f13be75d4b5535d44d101f,bad0f68e464bf2ee85f13be75d4b5535d44d101f," * Evokables stack: one elemental evoker or rod, crystal ball or staff of energy,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9db5db5078c7d47dc4db81bef724508f26a35f02,9db5db5078c7d47dc4db81bef724508f26a35f02,"It's weird magical toxic energy, not light.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/74961bfa77b7e862025f62474f7cdacad4ae3cda,74961bfa77b7e862025f62474f7cdacad4ae3cda,The transformation power has been halved; on average now it lasts around,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6e63e72083bd508ce7b2934b9f9e4944e1713210,6e63e72083bd508ce7b2934b9f9e4944e1713210,possible ring/staff of power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8169e4e5bd8e73a8e1e60d7cf77360613b3d99a9,8169e4e5bd8e73a8e1e60d7cf77360613b3d99a9,"Really, how powerful or not it is is something which will be determined",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c961fcdee648c1d4480faa3625dd4e7946c9a1ed,c961fcdee648c1d4480faa3625dd4e7946c9a1ed,Having the full-powered version of the spell get cast here probably,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8f19928e55d6101126649978129211e30a3bc92b,8f19928e55d6101126649978129211e30a3bc92b,"""Knowledge is power, hide it well.""",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4fabb49d17ce554c9a36a969162dece087771df8,4fabb49d17ce554c9a36a969162dece087771df8,to describe Mara's power as illusions when they can cast and fight.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9d082e1e3572ccec114e975ef062d3be825c8631,9d082e1e3572ccec114e975ef062d3be825c8631,"overpowered but rarely-used because of tedium. Let's reduce the tedium,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a30516ea31f9e2a7f63617a19fa4361a50f0ab2b,a30516ea31f9e2a7f63617a19fa4361a50f0ab2b,"adjust the weights further, since at higher power it's easy but tedious",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4c3d7924ca2c02338b3695c0cc544bac4a3b3428,4c3d7924ca2c02338b3695c0cc544bac4a3b3428,A L2 buff that could easily be kept up permanently and gave a very powerful,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/96fe80a0866f61c716ddd348fcb0e7b5a50733f3,96fe80a0866f61c716ddd348fcb0e7b5a50733f3,generates too many rods to balance their power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e43bbd017f1d416ca9f92dc6be0e09c2050ca04a,e43bbd017f1d416ca9f92dc6be0e09c2050ca04a,"rate, and even then power was only of very marginal use and more than a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/752d673ba7d8b477c9f077dc0868bfda3f372214,752d673ba7d8b477c9f077dc0868bfda3f372214,Neither of these gods is overpowered within our pantheon. I,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9632486ad523e75abc46ff16724c23f0999de4f4,9632486ad523e75abc46ff16724c23f0999de4f4,"If it ends up being too powerful after this, I may play with its",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1920e206283180c58ab8b6055076ab3e91989eda,1920e206283180c58ab8b6055076ab3e91989eda,"power boost (ie, the main reason to use such staves) but its awesome",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ada9c99c822350021ec3722e75a21883b3c84dec,ada9c99c822350021ec3722e75a21883b3c84dec,"Its base damage enchantment is now +6; +9 is probably too overpowered,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fc043ae552193f8c65b0a2afb4028d372292c7e7,fc043ae552193f8c65b0a2afb4028d372292c7e7,Use existing spellpower breakpoints for LRD wall destruction,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/32aaa6d603b185c9e3b76996738a43a6fc07de6b,32aaa6d603b185c9e3b76996738a43a6fc07de6b,"Randomise (and increase on average) the duration, reduce the power cap",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a2f7d0d50f62b156f3c9103cbfa9502ce2319637,a2f7d0d50f62b156f3c9103cbfa9502ce2319637,"Still fully restores HP and MP at power 2, but over 10 turns instead of",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3ffea203fb1ca12ed0eae38d99a53e3d8417930c,3ffea203fb1ca12ed0eae38d99a53e3d8417930c,unrelated to power level... so let's find out.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/518382ad0725020687c4c34cacb63acbcf2b4234,518382ad0725020687c4c34cacb63acbcf2b4234,accidentally destroying things. As a level 2 spell its power level is fine,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d6c3d1bc1c0a8978a88e7a4011cf2da0352ae525,d6c3d1bc1c0a8978a88e7a4011cf2da0352ae525,LIGHTCYAN - crystal ball of energy (was LIGHTGREY),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bb6b2d10dd37bdc8f91ac81ee6396fa5021b3bac,bb6b2d10dd37bdc8f91ac81ee6396fa5021b3bac,All it protects against is save corruption during power loss.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/063c240a11baefbfb1d64e7d8baf6af67c6f2250,063c240a11baefbfb1d64e7d8baf6af67c6f2250,It will still be very powerful at 3/5.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/388d670c250b25dcf88b5f54042bb083f48a9a51,388d670c250b25dcf88b5f54042bb083f48a9a51,"original, by granting a potentially powerful and useful effect that also has a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c25e8eee38eeec6c86826b19444429eed4310fb7,c25e8eee38eeec6c86826b19444429eed4310fb7,Reduce elemental evoker power (especially at low evocations),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c56f7848c24e60f938bec429afc467bfb06599a6,c56f7848c24e60f938bec429afc467bfb06599a6,"invisibility even at max power. Although, in theory, it has a slight chance",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/39f7220e9aee8108bf0144565e46f1f2a399105e,39f7220e9aee8108bf0144565e46f1f2a399105e,Drop some randart power_level oddities.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2a47cada239f9010fa100985f52ec141dc02e31,c2a47cada239f9010fa100985f52ec141dc02e31,"""power_level"" as well, even if its behaviour for demon items and",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4bf294a597d913870418d90b395e951eff319011,4bf294a597d913870418d90b395e951eff319011,Cap Fulminant Prism at 200 power instead of 100,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f70f79a1d8745b29295fbea164f509df43a99d40,f70f79a1d8745b29295fbea164f509df43a99d40,"For many characters, by the time you would have enough mp and spellpower",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/94e50615ac3d9f5ddd4698157c6811c50b97fb9e,94e50615ac3d9f5ddd4698157c6811c50b97fb9e,"Reduce the power with which OTR and Venom Bolt are cast, and make",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2f50191aff02d3c26e319ab2e97a564acf1ba49,c2f50191aff02d3c26e319ab2e97a564acf1ba49,increased power) but also synergizes more nicely with cure poison.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b991b93f2e2b7f7929cf3b86b3bbc169e9bba93f,b991b93f2e2b7f7929cf3b86b3bbc169e9bba93f,"level between mages and annihilators, by improving their spellpower",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/842e249095e5fd8fd218c952d9e989acfd83ff2d,842e249095e5fd8fd218c952d9e989acfd83ff2d,"powerful spells than most of them (including, say, crystal spear",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/72a859c9098ab4d14aa69ac6368238dda2b0b0a8,72a859c9098ab4d14aa69ac6368238dda2b0b0a8,"Instead of rN granting 33/66/100% resistance to negative energy damage,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f54e3ca8c7a706449d143d9c9b8ccfc674668e1c,f54e3ca8c7a706449d143d9c9b8ccfc674668e1c,As a second facet of the attempt to reduce player power growth into,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4a2d53dfabeb82a7589201220067779cad5f1ee5,4a2d53dfabeb82a7589201220067779cad5f1ee5,"the growth in average player power by simply pruning them. Moreover, it also",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9f123c134f7edff7ea92ae8722f5c6f5d361c707,9f123c134f7edff7ea92ae8722f5c6f5d361c707,somehow they are mostly modest powered conjurers. I did keep those,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/eee27dd686020553452471a13a951e1ce7d9fb9a,eee27dd686020553452471a13a951e1ce7d9fb9a,Give monster Agony a little power boost,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/11ebcbd3e752e9f1e05bce57224a86483bd79a93,11ebcbd3e752e9f1e05bce57224a86483bd79a93,Don't talk about losing power when the guardian spirit can't work.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fb912d7d03be3e805e924e217f7ed73a80b69d70,fb912d7d03be3e805e924e217f7ed73a80b69d70,"power, it now has 2-12AC, 10-20EV over that range.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/81e2a4a95aeed5ff1b55ce9fd78b80db432dce82,81e2a4a95aeed5ff1b55ce9fd78b80db432dce82,reduced by spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bfd7fd8dd3d879e079e8c9a7656348346cc59084,bfd7fd8dd3d879e079e8c9a7656348346cc59084,Fix overflow in curse skull monster energy pickup_percent.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/32214089a7f2ad95def87bbb73bb7299b19a37fc,32214089a7f2ad95def87bbb73bb7299b19a37fc,"based on speed/energy instead of consecutively based on index), monster",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/01b5d9323cdcb4879525d0b4379d48ed6f075808,01b5d9323cdcb4879525d0b4379d48ed6f075808,have been made available at lower power levels.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6cfaa0000909120bef45dbf5f124dabb93cda4e4,6cfaa0000909120bef45dbf5f124dabb93cda4e4,"appropriate stats, as if the spell had been cast at max power and max",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f0fb5c9c8bf10878af3cf2fb4486aec9aaf41d6e,f0fb5c9c8bf10878af3cf2fb4486aec9aaf41d6e,monster can get without funny energy usage tweaks.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7ee24ace8f817f49ff91b9470748d152dea12c5a,7ee24ace8f817f49ff91b9470748d152dea12c5a,end up with just the big ones at higher power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a1e108d6b5d38e0e2b3a77641ad5d180c1128c9c,a1e108d6b5d38e0e2b3a77641ad5d180c1128c9c,"""Certain powerful named artifacts possess too strong a spirit for this spell",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9d38e2d9f815b3c5e1a5b24636cfaf2d5ad29505,9d38e2d9f815b3c5e1a5b24636cfaf2d5ad29505,keeping its overall power from being too high. Of particular notice,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7cd8c6fcfb60bbfc5095bdc4fe8cc394b6e3ee63,7cd8c6fcfb60bbfc5095bdc4fe8cc394b6e3ee63,elsewhere that I felt both sufficiently 'forest-y' and powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/80ca3a2ed5e300a15fef6e022bd5eb658ded1e90,80ca3a2ed5e300a15fef6e022bd5eb658ded1e90,"and also decreases the overall power multiplier of the spell, which",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2977a1b820c0956e120d64da5b30acfe75de73f7,2977a1b820c0956e120d64da5b30acfe75de73f7, he gains a couple HD for higher spell power. His MR is also raised,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/990aba02076bdcbcd3bfcd3771c9f6b3067ae369,990aba02076bdcbcd3bfcd3771c9f6b3067ae369,from the treant (this costs no energy on the part of the treant,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1896d8223e30f4b49cb88e68a40db3c404eb9d14,1896d8223e30f4b49cb88e68a40db3c404eb9d14,This one is pretty much what it says on the tin: a powerful,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2f115a6965eb2ae8d15f05cfb1972065d2625bbe,2f115a6965eb2ae8d15f05cfb1972065d2625bbe,"immunity to poison and negative energy, though they otherwise",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/748aa1f30b79943a9b531eae2906e6a0bbc57c9c,748aa1f30b79943a9b531eae2906e6a0bbc57c9c,greatly reducing message spam when the player has spines. The power of,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/51ba545f18d7788cb1641bebd674037dd6f8c0fc,51ba545f18d7788cb1641bebd674037dd6f8c0fc,"depends on power, so probably this formula makes no sense and is almost",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e3678806b64130754ffbe5eb19b2d0d58c918995,e3678806b64130754ffbe5eb19b2d0d58c918995,hopefully it will no longer be as underpowered as our expert players,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/49bb25104d9406fe9e775ceef59e8bb51353a87d,49bb25104d9406fe9e775ceef59e8bb51353a87d,"Don't mark Vehumet-supported spells as ""empowered"" - their power isn't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2eaf69b2033644353abf07594dc06b28ccd0eb0,c2eaf69b2033644353abf07594dc06b28ccd0eb0,"this is intended to limit the damage shared by the spectral weapon when it is hit by powerful conjurations like fireball --- the summon now has rf++, rc++, re, rp.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/07492eb4010e7dbb151374374188252bcd7a98b6,07492eb4010e7dbb151374374188252bcd7a98b6,"let spectral weapon HD go up to 27, base its HP on spellpower",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ab488f68054ffa4ea30565582c19333149da5270,ab488f68054ffa4ea30565582c19333149da5270,"reduce and randomize spectral weapon duration, reduce spectral weapon ac/ev/hp and base ac/ev on spell power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/47a6cdf9bfa3986d15a503d095b45d70702bccc6,47a6cdf9bfa3986d15a503d095b45d70702bccc6,Fix power 1 warp card being unaffected by -cTele,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d1f02a81ad101ed5ce49f42279d6024b4419254c,d1f02a81ad101ed5ce49f42279d6024b4419254c,These feature the other two major power groups in Forest besides,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/94a9522cc81dbadb37597f8bb5fb11859e1caab5,94a9522cc81dbadb37597f8bb5fb11859e1caab5,spectral weapon might be powerful enough for this kind of nerf --- 1/2 of the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0ad17fda8f1a69898f01400b3355e94ffaef2b02,0ad17fda8f1a69898f01400b3355e94ffaef2b02,Fix totally conflated and wrong changelog entries for staves of energy and power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ba5d05562109a1f46f304aa919c34e9de90c5147,ba5d05562109a1f46f304aa919c34e9de90c5147,Fix staves of power not handling Dj power correctly.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ad821610bdf1788b574d5560883be529ce43d6c8,ad821610bdf1788b574d5560883be529ce43d6c8,"adjust a message for sos ending when silenced, change spectral weapon duration, spellpower, and monster damage",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6fa51c35965bead887a3559d509b6fa5848b9f2a,6fa51c35965bead887a3559d509b6fa5848b9f2a,this makes the infusion spell properly scale with spell power instead of only being stronger at pow = 25 and 50.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3cbb59b6da239998766febccebcfab5f95d978dc,3cbb59b6da239998766febccebcfab5f95d978dc,and powering through the effect more viable and allow the active threats,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b1d49dd0dfda48a6b581c55c7054f68023a7537f,b1d49dd0dfda48a6b581c55c7054f68023a7537f,These are wandering confluxes of necromantic power that have no offense,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/584eef6395ded50e5cad81eb660ef7192d17871d,584eef6395ded50e5cad81eb660ef7192d17871d,"These are powerful undead beings, able to manipulate the ghostly flames of",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/afa19f28531478484d32c4232f8280c96bb5345d,afa19f28531478484d32c4232f8280c96bb5345d,"into miasma when standing next to them, to say nothing of the power of the",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3baeb6b9514fcdad023b8fc0b0f29c963e62459d,3baeb6b9514fcdad023b8fc0b0f29c963e62459d,"Improve monster vampiric draining power, make it heal more",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0c63efffb3317c19cf361ada418193326f800ae0,0c63efffb3317c19cf361ada418193326f800ae0,"Since the buffs to various ghostlies have pushed the power of haunt upward,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/02c522304cdac0ec46f4933ff0510fb7e2bbc86e,02c522304cdac0ec46f4933ff0510fb7e2bbc86e,only the same power as a common wraith. Now they do appreciably more,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4633ff2116be2c30a050a04192246eabc0f90bb9,4633ff2116be2c30a050a04192246eabc0f90bb9,Evoking the fan produces a powerful gust of air around the player which,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2c19994089c5c2dbd7330f8aed6674e7f1ac6fd,c2c19994089c5c2dbd7330f8aed6674e7f1ac6fd,"other words, they are powerful tools that can be used only ocassionally.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1be999748c10756b42716ce141681a791e2d7c60,1be999748c10756b42716ce141681a791e2d7c60,"Plus, it's strange for the skill to use a fist to make you powerful as a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/01f445fad4b83cc6915a747ecac7eff7dc36aba3,01f445fad4b83cc6915a747ecac7eff7dc36aba3,"Without these changes, bad_forms were powerful early on but were a death",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d7550033e45bf1f3ee1537d8ecaf5419f27c47a1,d7550033e45bf1f3ee1537d8ecaf5419f27c47a1,"Claws, Fangs, Talons. These probably overpower the race.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/78df991bbd0c0df9cd2f867054fceec4888f8000,78df991bbd0c0df9cd2f867054fceec4888f8000,This power gets a duration bump at level 7 and again at level 13.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ef70f21f573cc66fde5a32562b9eb5859b2e36dd,ef70f21f573cc66fde5a32562b9eb5859b2e36dd,Make staff of power's effect increase with your maxmp.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2b24be0e273f41ddb068e3f381bf2510cc580575,2b24be0e273f41ddb068e3f381bf2510cc580575,Don't let mutations and vigour affect staff/rings of power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/208c673cc16e583dadec46e64356c0275a4792b3,208c673cc16e583dadec46e64356c0275a4792b3,Merge staves of energy and channeling.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2f452a7ff4410d9408bbd6078a609982474da27f,2f452a7ff4410d9408bbd6078a609982474da27f,Reduce staff of energy hunger to zero once again.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b76263150febd915e9b65a8a114a5a0773182acd,b76263150febd915e9b65a8a114a5a0773182acd,it doesn't really need to suddenly double in efficiency at max power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/06b75d460e7ac6686d073d63ef72ff41d00b2f84,06b75d460e7ac6686d073d63ef72ff41d00b2f84,"Djinn: for now, give balls of energy an informative fail message.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/50cf8057cd7773e87b555f30b94f02213590a932,50cf8057cd7773e87b555f30b94f02213590a932,that overpowered resistance -- the writeup called for something to make up,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/36f3665044689f6d938d43cbbdbb7ea1a07b5069,36f3665044689f6d938d43cbbdbb7ea1a07b5069,"MP draining tends to be way powerful when applied to HP, thus we instead",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c89513845bb184228f03884b0ef384f4b2927b2a,c89513845bb184228f03884b0ef384f4b2927b2a,"Add a spell power # for 200 power, remove the one for 5 power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1bf6f2f353d4c004d7cad8ff283e2409bd5adcf5,1bf6f2f353d4c004d7cad8ff283e2409bd5adcf5,Low on energy?,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0333ab8a14891c4819bf295e0b79c7cdeb73a952,0333ab8a14891c4819bf295e0b79c7cdeb73a952,to the shop vaults to reduce the likelihood of too-powerful items and to,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8b2b6b6a42387a48c808348270b445e0543661da,8b2b6b6a42387a48c808348270b445e0543661da,Disable energy randomization for allies following the player.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7c889ac88c35c57549f5db26e2f8012d01289a32,7c889ac88c35c57549f5db26e2f8012d01289a32,"Who's been feeding energy drinks, Red Bull in particular, to trees again?",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4b23b186e5964e62ff52877e7d6ca1a9a8ad0a4a,4b23b186e5964e62ff52877e7d6ca1a9a8ad0a4a,Reduce Staff of Olgreb venom bolt power to compensate for the venom bolt buff.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/95ccd477dd8f31978710dae50c2b9e20094f9249,95ccd477dd8f31978710dae50c2b9e20094f9249,"the permanent cost isn't so necessary. It's still hugely powerful, but already",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0ba792384c15a445cb09aa7f429c0021ddf0b360,0ba792384c15a445cb09aa7f429c0021ddf0b360,Properly use article_a() in spell-power-modifier messages when possible.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b33e7bd34dfc26375645994c7c5d9b57cd839bcb,b33e7bd34dfc26375645994c7c5d9b57cd839bcb,been scaled to compensate for this powerful effect. While the formula is,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a0b0f0243cfe5971f50184ad2688034fc2c8f2ab,a0b0f0243cfe5971f50184ad2688034fc2c8f2ab,"the prison if there is any room for them to go. Also, Zins' divine power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4bf3e34638f76458d700f1ccb80cb851c7a5e3bb,4bf3e34638f76458d700f1ccb80cb851c7a5e3bb,"worshipper's effective recall power noticeably weaker, for example,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1bd74f58a62e72d0ffebc7184334b0d6b5a7fdac,1bd74f58a62e72d0ffebc7184334b0d6b5a7fdac,make these gods much more playable (and if their power level is now more,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0863da95cf40000854374c2964932ef131583df2,0863da95cf40000854374c2964932ef131583df2,Fix inconsistent wrath effect ordering: all powers are removed before allies abandon.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/debef781334ad1fec81251fe206e594dddbc39e4,debef781334ad1fec81251fe206e594dddbc39e4,Spiked flails are being replaced on the power curve with morningstars.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fd9c0071f2e32a187a66e9173fca2d3ce0fc9de4,fd9c0071f2e32a187a66e9173fca2d3ce0fc9de4,"in being able to anticipate regular crawl power curves, and should use",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/be59592fee4b615e1281005eb0102ee4096dd369,be59592fee4b615e1281005eb0102ee4096dd369,Reduce monster LRD power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9f02e94207a4bbade7f002d6944c9d8494bc006c,9f02e94207a4bbade7f002d6944c9d8494bc006c,"Done up to ""tutorial4 ring_power"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9f6505e592567b90d38f81d44d6667a9783dd502,9f6505e592567b90d38f81d44d6667a9783dd502,"Fix cacodemon/eye of devastation ""energy bolt"" also dispelling monster buffs",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c2065e0a14d3df175359a63ee1efc2486c058c08,c2065e0a14d3df175359a63ee1efc2486c058c08,"as purple draconian breath (""bolt of energy"") they were unintentially dispelling",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/93bcce2036f0c02650fb22c2a8b3538b96fa49cb,93bcce2036f0c02650fb22c2a8b3538b96fa49cb,"and a short polymorph, or just polymorph with max power (and thus likely max",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d10959727c3d52a3bdba9b7db74ccd99f0c02701,d10959727c3d52a3bdba9b7db74ccd99f0c02701,Both explosion damage and prism durability scale with spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/615aaf3c9b1947adbd6dba094ecfc8da3d128ae5,615aaf3c9b1947adbd6dba094ecfc8da3d128ae5,follows the caster around and fires blasts of energy at its creator's target whenever,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/db6086fdba9aee81633db7e60795e77e864407cc,db6086fdba9aee81633db7e60795e77e864407cc,Up monster LRD power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ad68f12d7b358d0a48077d305001eba6c9bc5cb4,ad68f12d7b358d0a48077d305001eba6c9bc5cb4,"Also, there's a minimum now so near-zero power has at least some duration.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5f745de82bdf2942f17afde0d4d6849e30e45855,5f745de82bdf2942f17afde0d4d6849e30e45855,This is in response to complaints that the enemies are too powerful for,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7464318261bdd179e28de2b43340359b6ca611d2,7464318261bdd179e28de2b43340359b6ca611d2,Let powered by pain sometimes give might or agility effects,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/031c4a2eb38a724e9210b995da8f1ecdca3dc9c2,031c4a2eb38a724e9210b995da8f1ecdca3dc9c2,"All visible masses will shriek in your mind at once, the power of the effect depending",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1777037409118e679f2b96b3456d5337bf11167b,1777037409118e679f2b96b3456d5337bf11167b,Relatively low-power abyssal monsters which inflict disease (and possible,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7d8d19e75fcf857981fbe788fa7219d5fa99d3e6,7d8d19e75fcf857981fbe788fa7219d5fa99d3e6,powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ec789bf41987afbd554b3554ea931239541c79a1,ec789bf41987afbd554b3554ea931239541c79a1,It turns out that the reduced non-movement energy cost didn't do what I,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ad6ccffd172ea1a731f772da8fc336d15c6d220d,ad6ccffd172ea1a731f772da8fc336d15c6d220d,It now gives slaying and spell power boosts at high HP rather than low HP.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b53d8402ee0dd9b00864cc6e99055a970e377b52,b53d8402ee0dd9b00864cc6e99055a970e377b52,Give Teleport Other a bonus to power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1b8fbb792b9dfcd106648f19283ab563f0c72573,1b8fbb792b9dfcd106648f19283ab563f0c72573,"When we had separate power/monster_level and place, the code redundantly",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/177cfa8d1158dd7c2ed8c995cf1ee706f1492f80,177cfa8d1158dd7c2ed8c995cf1ee706f1492f80,"Get rid of mgen_data.power, use place for that.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/80cc127a6a577954cb47a2cbf93455b39c265144,80cc127a6a577954cb47a2cbf93455b39c265144,Don't overload mgen_data.power for Tukima's power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c690a418b99b67f366802e9b2d833533750d87bc,c690a418b99b67f366802e9b2d833533750d87bc,"Zin works 100% of his usual power, as hating wretched stars is as Zinnish as",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cbc41225cb4bc876ba076005ec66e0dd0b7f45db,cbc41225cb4bc876ba076005ec66e0dd0b7f45db,Give them low-ish power mystic blast.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6d822633cb7f162447dd4d4f0820ee5c174f8179,6d822633cb7f162447dd4d4f0820ee5c174f8179,"Increase Tukima's Dance to level 5, scale the weapons up to max power faster",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/25521f459b32631e2ef493cd7f6c37a3e0cbc042,25521f459b32631e2ef493cd7f6c37a3e0cbc042,"She still lacks direct killing power, but these changes should make her a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/48b89efee1e8f62fd3536250a057accdf924cd99,48b89efee1e8f62fd3536250a057accdf924cd99,"In the process, fix some inaccuracies: your healing powers aren't the",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3ec267da4257aa3254b93922b15bf0669897e2a8,3ec267da4257aa3254b93922b15bf0669897e2a8,Don't special-case pan lord power in zotdef.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/04b0d18f90d0ee95af0143a6a58923141dd08d4c,04b0d18f90d0ee95af0143a6a58923141dd08d4c,"leisure... the idea of the spell is neat, but it is hugely overpowered in",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a76cb289bf18e67353fbb9625cef7a496b81272b,a76cb289bf18e67353fbb9625cef7a496b81272b,"power_level like most other summon cards do, or to generate random",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f8cda37ea69e90538020949cd4be421b1097f8bc,f8cda37ea69e90538020949cd4be421b1097f8bc,Boulder beetles now spend energy when hitting something in boulder form.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e55869e34c76522a3636710030a0d759a5c06ed8,e55869e34c76522a3636710030a0d759a5c06ed8,"energy"" or ""Shot themself with an ice storm""; this fixes those messages.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0c56e2b2b887fef69f0262973962c0df522b375a,0c56e2b2b887fef69f0262973962c0df522b375a,"to display ""spoilers"" (like GDR or spell power). They are hidden only for",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/219e77322d4a0223e52079cf53077d9240da7b1c,219e77322d4a0223e52079cf53077d9240da7b1c,"If the power is 100 or greater (maximum power for Mephitic Cloud,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/706addd4fb79da7e41531f5d62e4e220905f4609,706addd4fb79da7e41531f5d62e4e220905f4609,the fuzz for high power in the case of Ice Storm).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0e5e9a83b70b40b0979e836aea0f0ba5d6b085a0,0e5e9a83b70b40b0979e836aea0f0ba5d6b085a0,"powerful"", which suggests it might be actually ok.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/62cb7de5ac324c4438784bf0454c41373cdc1f69,62cb7de5ac324c4438784bf0454c41373cdc1f69,Monsters lose energy when failing to escape constriction.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7b0006a4835709cf8a5a96feb42714f33a43c540,7b0006a4835709cf8a5a96feb42714f33a43c540,The formula is basically: f(power) * used mana / (arc_length + 2),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1958f978b7adac3c591ee1bd94e34e973256598b,1958f978b7adac3c591ee1bd94e34e973256598b,This could happen if you used Yred's Enslave power on Fannar. He'd follow,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/36999645c5953b41628eb4f928418ea1616d238c,36999645c5953b41628eb4f928418ea1616d238c,to tear through webs (seems fitting for a freakishly large and powerful,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/13f14d0f7d75f1164c1ba97fc38272f8dc6b441a,13f14d0f7d75f1164c1ba97fc38272f8dc6b441a,Make staff of energy decrease spell hunger to 1/3 instead of 1/2.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d77cb243f5623fbf56f812bf28467babc040d948,d77cb243f5623fbf56f812bf28467babc040d948,"The power or ""mass"" of the incoming attack doesn't matter (and spells don't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d49aba625a0c11d06a3481de24c62ace85e24d5a,d49aba625a0c11d06a3481de24c62ace85e24d5a,the powers of jewellery or misc items well.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8bf75c2071d40c67b90bcf7417812ec5198945c7,8bf75c2071d40c67b90bcf7417812ec5198945c7,Display spell hunger as a spellpower-style bar instead of as food types,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/09c327fa2af25cad1fbaa60ccd9ec7da812cddc3,09c327fa2af25cad1fbaa60ccd9ec7da812cddc3,they are already quite powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b71ee2903504d82b0ab4224f8b216dc9d484263c,b71ee2903504d82b0ab4224f8b216dc9d484263c,invocation is a powerful stick against anything tough you fail to stab.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/43f3de661a9e6cc3a34024df007abf53b08843a7,43f3de661a9e6cc3a34024df007abf53b08843a7,"Fix Xom acquirement chance: the maximum power value is 200, not 255.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8e60e9e12218c03020e66c912f2a54fe0546aec3,8e60e9e12218c03020e66c912f2a54fe0546aec3,"randomly from a list, with higher card power allowing stronger allies.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f63e3e493e7ff2c09e985895e69f8809daf54e4d,f63e3e493e7ff2c09e985895e69f8809daf54e4d,"negative energy immunity, and add a message for when it fails due to",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/730e42a672bea62d592fe84e0e27dd539c579d4f,730e42a672bea62d592fe84e0e27dd539c579d4f,"power cap for low level spells anyway, it's still mostly bad.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b8566880d304938ee511f3f16722b5b97eb8c1df,b8566880d304938ee511f3f16722b5b97eb8c1df,A different wording for rods with big battery.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/23770cd32bacfed3216d624cfed1e222ee6d78d0,23770cd32bacfed3216d624cfed1e222ee6d78d0,"Blocking an unstable sphere of energy isn't going to be a very good idea, so",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64e714e54be29f77fb7fc456214b98ee03e6b239,64e714e54be29f77fb7fc456214b98ee03e6b239,"Increase rod of striking damage with power, up to 1d18 at power 50.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0a8b6c4e821ab2f70abb8557e95f63a1947ee71e,0a8b6c4e821ab2f70abb8557e95f63a1947ee71e,Make the staff of energy not eliminate rod spell hunger either (if you manage to wield both at once),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2b68be28b4fbfd4ea5cfe69a7b41168f5e313cc4,2b68be28b4fbfd4ea5cfe69a7b41168f5e313cc4,Make staff of energy halve spell hunger instead of eliminating it,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/257bbb5413a4765ee7176bf451a0fcc091a7576a,257bbb5413a4765ee7176bf451a0fcc091a7576a,Make spell power useful for Warp Weapon,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5f489ad4e0fdd21b0eabdecfefd60e40e3915bad,5f489ad4e0fdd21b0eabdecfefd60e40e3915bad,Give Warpwright teleport traps a limited number of charges depending on power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/51d2b46e94183685f5dcabfef3937193ba56a8fa,51d2b46e94183685f5dcabfef3937193ba56a8fa,"Make walls from the Tomb card expire after a while, depending on power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/17a8c5ec310b50a48822bc79a15eb82cf3fa7ba7,17a8c5ec310b50a48822bc79a15eb82cf3fa7ba7,Make warded-off attacks take full energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/680fe5cc11199e23042108a72b63274e73ec0385,680fe5cc11199e23042108a72b63274e73ec0385,Blade: always friendly (power 0 summons are really weak anyway).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6b21642aa4e1370371f8a45cec84ac27e3cbeb38,6b21642aa4e1370371f8a45cec84ac27e3cbeb38,Lugonu's power does.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ee20cc89b8b5001e2d00e17966bd7b0115bdeb92,ee20cc89b8b5001e2d00e17966bd7b0115bdeb92,Fix staves of power blocking training.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/97cd5d75c001f7b4029962776af97664832f3d47,97cd5d75c001f7b4029962776af97664832f3d47,"right for monsters. It doesn't check the actual energy used, just the base",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1cf541c3db3dda55a625aff61e56edd43f2916e9,1cf541c3db3dda55a625aff61e56edd43f2916e9,"* It's another big boost to something already thoroughly overpowered, both",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/082138512ec1a483208606d2aede6c48543db72e,082138512ec1a483208606d2aede6c48543db72e,This solves a problem where the vault could be used to power-level early,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/24100b94a1c3f12ad6f31be2584c5de3a5a0c9d4,24100b94a1c3f12ad6f31be2584c5de3a5a0c9d4,mon-data: eliminate static initialization calls for mon_energy_usage,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/66fc04c8f1a2e860b6f9f99078348f1be1579008,66fc04c8f1a2e860b6f9f99078348f1be1579008,"and giving out free reaching leads to rather high-powered weapons,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/73458b7474f8f07abbd78bcae2ada295aadf06b4,73458b7474f8f07abbd78bcae2ada295aadf06b4,"For one, use an outlandish spell power to get a very high efficiency",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b438b77489bdf288300303b2d1428781f964b8c3,b438b77489bdf288300303b2d1428781f964b8c3,function as an instant teleport... a very powerful trick that isn't really,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8c68072f61607d743a67b98c95cb2b84b7f26a7f,8c68072f61607d743a67b98c95cb2b84b7f26a7f,if freshly cast with decent power -- or recast multiple times with any).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1cf9e1114801bb78cd467087c1a3447e7f3e2a29,1cf9e1114801bb78cd467087c1a3447e7f3e2a29,Having unique items of this high a power level (significantly better than a,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/decbcea97450d2ea63552e25264e1be9c8aec967,decbcea97450d2ea63552e25264e1be9c8aec967,"Boost the power of mass enchantments (Control Undead, Mass Confusion, Cause Fear)",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/07f21c91862c51c91c75875bf2fe46df065f5e86,07f21c91862c51c91c75875bf2fe46df065f5e86,Make Olgreb's Toxic Radiance depend on power for levels of poison inflicted,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/30f7d65bbb649bfc5c44d9519fb2afe4d025eb8c,30f7d65bbb649bfc5c44d9519fb2afe4d025eb8c,"Unless cast with a very high power, it'd affect only the place you're",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8e5f6d66520394e84b89ec830d8f357eea3fdca0,8e5f6d66520394e84b89ec830d8f357eea3fdca0,Adjust the power modifiers for a few hexes,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ff54ebec12a2ce2ac15176031a4f56cd94c217a1,ff54ebec12a2ce2ac15176031a4f56cd94c217a1,"Apparently, having enough spell power makes it work on corpses you're",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2c51fb75609193fd0eb28d3dabf09a7195f8a886,2c51fb75609193fd0eb28d3dabf09a7195f8a886,Twisted Abomination now turns corpses in a (power-dependent) radius into,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1566f8ed044f2605080fcc524fb3d33647080586,1566f8ed044f2605080fcc524fb3d33647080586,"Make jiyva's ""remove harmful mutation"" power not depend on inovcations.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e0a4a6a24cbd03b2096357dc4e856ad1b6b7cddc,e0a4a6a24cbd03b2096357dc4e856ad1b6b7cddc,"A staff of power, ring of magical power, or amulet of the gourmand",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d4d74e6adc0b8ad82813c64ec26962ad389bc8e5,d4d74e6adc0b8ad82813c64ec26962ad389bc8e5,swap from a short blade to a staff of power. This disables both,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/71b738e8b44d6dad14c29bc898eff2ac700e9e1e,71b738e8b44d6dad14c29bc898eff2ac700e9e1e,"Get basic melee combat working, fix monster energy usage",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a98d9d6f109c12ccd4c59343403f2f78d15b552f,a98d9d6f109c12ccd4c59343403f2f78d15b552f,"Properly change Makhleb's ""gain power"" message to ""gain health"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bf697eba8e653e4dc5d9d3ac340513a4024a218d,bf697eba8e653e4dc5d9d3ac340513a4024a218d,kills with no conducts or restrictions makes him absurdly powerful for,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a045af5444c9b3b8528ff5ae25ef9086633e7edd,a045af5444c9b3b8528ff5ae25ef9086633e7edd,Wild magic mutation: each level decreases spell success but increases spellpower,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/90728519baca998d5ee6ff95013bbcffb2aaa9b5,90728519baca998d5ee6ff95013bbcffb2aaa9b5,- Can specify size and power multipliers per trap trap,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cc2ed790632e4ad49799ba4c25c49718d59abcf6,cc2ed790632e4ad49799ba4c25c49718d59abcf6,At XL 1 you have around 0.000001 spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/79a7ee3e29fda70353ebd8cd640b8f08b0cebbf6,79a7ee3e29fda70353ebd8cd640b8f08b0cebbf6,with relative powers of appendages not the overall strength.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c593da7485c79805a13e706cc6b647be5da82b1a,c593da7485c79805a13e706cc6b647be5da82b1a,Fix Tukima's Ball not passing the spell power to dancing weapons.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/344cfaf5c0e9c9d886f4e7e13a4d3214d6b676a8,344cfaf5c0e9c9d886f4e7e13a4d3214d6b676a8,Adjust the Blade card's effects - different sets of brands for power levels 0 and 1,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/da42bcd28637cab0f11e92559ad58b47a98b75fd,da42bcd28637cab0f11e92559ad58b47a98b75fd,* Duration fixed at 60 aut (what you had at power 120).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3a533adeb52d2e3d23018019ff49f8708f91c7ce,3a533adeb52d2e3d23018019ff49f8708f91c7ce,"Add another overpowered fixedart, a ring this time.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/33a3bd5551be4f145301cfebcad49a9749b2fe23,33a3bd5551be4f145301cfebcad49a9749b2fe23,The power caps for Mephitic Cloud and Evaporate are now 100 and 50,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2ba57c33cc65a501f225e7f0ee5d0d5cb9063814,2ba57c33cc65a501f225e7f0ee5d0d5cb9063814,This should hopefully encourage players without high-power abjuration,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6cbf000d1f6bff1ef93b497930a13120bf4e8f36,6cbf000d1f6bff1ef93b497930a13120bf4e8f36,Give enough energy to mimics so they can attack immediately when revealed.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/859b0f8af464114f916c4c9a6bd34fadf4b0776c,859b0f8af464114f916c4c9a6bd34fadf4b0776c,Make Alistair's Intoxication depend on power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5afa6402f74d27912b65e13c2fba79ac61c1c53c,5afa6402f74d27912b65e13c2fba79ac61c1c53c,"Fix a bug causing power to have no effect on holy word scrolls, rebalance damage (rwbarton)",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fd92a8574cec107c92006b31521880e659e6315b,fd92a8574cec107c92006b31521880e659e6315b,"moccasin at 40 power, instead of to a viper.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/173e5d18706852780a2654c52fa4b9f6c01bd440,173e5d18706852780a2654c52fa4b9f6c01bd440,"Reduce the MP restored by balls of energy, tone down failure effects",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/98982a9246302c49b5c07de29f4750a781bdceb0,98982a9246302c49b5c07de29f4750a781bdceb0,powerful all game long.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5926e4fc06ac182b65cb98501007b44a3847187d,5926e4fc06ac182b65cb98501007b44a3847187d,"""Grows in power"" was a little misleading, as it's just the duration",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/55d03ce7ad9b5c870a59846ed8ec892f96e63214,55d03ce7ad9b5c870a59846ed8ec892f96e63214,"I think it's still ridiculously overpowered in general, so we need to",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/33066b2b57659a68ee5261b5fe854b26d200597d,33066b2b57659a68ee5261b5fe854b26d200597d,"1) Less EV than a death yak, but slightly more AC and attack power (unlike",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/496808241db30245c355bf54eb6773d87ad543cc,496808241db30245c355bf54eb6773d87ad543cc,"I'm aware that it's still Trog's power under a different name, but you",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/98a1758cbab2e1f3a239bdce0682365e405918da,98a1758cbab2e1f3a239bdce0682365e405918da,"Makhleb's powers are still the same as before; even in his new position,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3851c8c07136c58363d341792d0b660621e892c3,3851c8c07136c58363d341792d0b660621e892c3,"It seems comparable in power to Summon Scorpions, so let's try level 4.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/356434995f2f5247e3de15c101aeed540489751b,356434995f2f5247e3de15c101aeed540489751b,Make Sublimation of Blood depend on spellpower when cast on chunks/blood potions,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/28b7f70794d9e3b99fd8f7c6023099e7c16b6e38,28b7f70794d9e3b99fd8f7c6023099e7c16b6e38,Also increased the power of the scroll of silence slightly (25 -> 30).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/085b0f8f26e273b914e7e84c49f372d6bb42665b,085b0f8f26e273b914e7e84c49f372d6bb42665b,"Staves of energy are useless for mummies, and (temp) liches and hungry Vp.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/aaa807d2b9904c5b13beb0b5f0013d98cc14f5e9,aaa807d2b9904c5b13beb0b5f0013d98cc14f5e9,"energy -vs- seeing, cost the same.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1a07c3ae992aecd8fcb477dcf3a4385df0be8b31,1a07c3ae992aecd8fcb477dcf3a4385df0be8b31,Give potions of brilliance an extra boost to spellpower again,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b2863370756347e77937887aad081db2be864d27,b2863370756347e77937887aad081db2be864d27,Fix a rounding error for 3 school spells in the spell power formula (#4107).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9f146a1465b30d6173d5d61a35a9b16c6e79cc0f,9f146a1465b30d6173d5d61a35a9b16c6e79cc0f,"Since they're powerful in the right hands, they're as rare as throwing nets.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1ba19e687c186fc7cae17dda4125efe9a7f45a8d,1ba19e687c186fc7cae17dda4125efe9a7f45a8d,"Tweak the Undeadhunter melee message to ""disruptive energy"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4a7ccd8de6bcfb890a208f15a9cb6bbb66b70efb,4a7ccd8de6bcfb890a208f15a9cb6bbb66b70efb,random2(power/4) meant the power was often zerp or almost zero. It's already,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ba70dfab3530770ee21b11f10fa46c5e4d039312,ba70dfab3530770ee21b11f10fa46c5e4d039312,Fix insane power of level 1 and 2 Orb cards.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/705ce3da545e3674390ba3f9ad1b26190599fea0,705ce3da545e3674390ba3f9ad1b26190599fea0,Limit power 2 Orb card to 7 orbs to work around immediate explosion.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5b833ac5a18acfe75f5069ff6223abdaf3f96cb7,5b833ac5a18acfe75f5069ff6223abdaf3f96cb7,Power 0: orb of energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/06c34b9bf992bb6fe744f7307701816271ce9afd,06c34b9bf992bb6fe744f7307701816271ce9afd,"roughly the same as before the rod power change at max evocations,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b275677f0ebaa83648920b1848a12071463078ce,b275677f0ebaa83648920b1848a12071463078ce,No more randomized power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b93f427612a7c175d528dc1bd8fad1214240c1ea,b93f427612a7c175d528dc1bd8fad1214240c1ea,"success, and the small bonus to spell power given by wizardry equipment.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/aeca3d3fb22c5de6cb117a6b15e02acf7444f623,aeca3d3fb22c5de6cb117a6b15e02acf7444f623,combat in forms. Most forms are already quite powerful and adding a,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d1598c524e724f92c551489ff0ced03cc429be9c,d1598c524e724f92c551489ff0ced03cc429be9c,Fix Ash's skill boost not working on rod power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/89db920d41cfcfe2c4f0fed97f8ed3ad055922b9,89db920d41cfcfe2c4f0fed97f8ed3ad055922b9,"Make apportation distance of all items depend on spellpower, not just the orb",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4379f2f2957dcc131e0a522fccbbe591f90956b1,4379f2f2957dcc131e0a522fccbbe591f90956b1,"Boost Summon Dragon duration, allow two low-tier dragons at high power",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4edf8e8c1faf9081211985a9c3215e091f8fb097,4edf8e8c1faf9081211985a9c3215e091f8fb097,This commit also in-lines mons_lose_attack_energy since it was only,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/326ab1fdeb96842566989f550c302d80569a3228,326ab1fdeb96842566989f550c302d80569a3228,"This makes it quite a powerful weapon, creating friendly zombies for",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/41023b32dfdc8d4d5da3e74ef9062c364769288b,41023b32dfdc8d4d5da3e74ef9062c364769288b,reduced by spell_power * 3. Those numbers probably need to be adjusted.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1532df5ea89e175e51f08598066cd00609b7c98c,1532df5ea89e175e51f08598066cd00609b7c98c,"Cap Static Discharge power at 100, adjust fire and air elemental books.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/084875d14c32853fe086900434f596ca5e4e6868,084875d14c32853fe086900434f596ca5e4e6868,Don't let high-power common/rare Experience card be better than legendary.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bdb70b7b5e00509415db6b7539134480edcba44a,bdb70b7b5e00509415db6b7539134480edcba44a," If wielding a staff or a rod, boost evocations, except for staves of power,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fbdad0bb0c811afb9d18e8a5c97904b0f6d68a4d,fbdad0bb0c811afb9d18e8a5c97904b0f6d68a4d,Clarify an Ashenzari's power desc (ekiM),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b06ab47ec7ba75d71e86d250229024cbf0a3c72b,b06ab47ec7ba75d71e86d250229024cbf0a3c72b,a bat to have powerful lungs.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3cdd907899ecb8ac16e9906a553ebb64db1362ce,3cdd907899ecb8ac16e9906a553ebb64db1362ce,"usually spending more gold at higher power, as well as having a more",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d8c66fcf3266282e83dd74d3a9d3796ef64d07fe,d8c66fcf3266282e83dd74d3a9d3796ef64d07fe,Tweak the weapons created by the Dance card at low power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/59a83246ade718890b253eb5e938093a09e40666,59a83246ade718890b253eb5e938093a09e40666,Improve the Hammer card at low power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a5fbdc77bbe5d998f263c722de9cca7a3dc63a3b,a5fbdc77bbe5d998f263c722de9cca7a3dc63a3b,"(even at higher power levels), as well as adding vampire mosquitoes as a",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fd6c2c91d3a31bbd09cefbe0e73c527fcb0ce1bd,fd6c2c91d3a31bbd09cefbe0e73c527fcb0ce1bd,summonings check (the abjuration power is much lower than the spell's,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/714192de90a4cf88a64e85d1c12988c95b477f0f,714192de90a4cf88a64e85d1c12988c95b477f0f,"of power comes from legs and hips, unlike boxing where legs are used solely",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9f1b6d0f17468ce6534bc2a2d5d70fbf44a86e32,9f1b6d0f17468ce6534bc2a2d5d70fbf44a86e32,"were not overpowered, 20 headed viable hydras would be.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/65e521efc5bfb2ad74fe75dc8f9fefab350bfd1b,65e521efc5bfb2ad74fe75dc8f9fefab350bfd1b,Fix Tukima's Dance ignoring spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bbe56985e342f3fe918d825af2fdf87872d86914,bbe56985e342f3fe918d825af2fdf87872d86914,Don't allow negative card power under Nemelex penance,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c68df13d33e169982ac04540958b39a5a57fae27,c68df13d33e169982ac04540958b39a5a57fae27,Make Summon Butterflies require spell power for effectiveness,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bd743f5f51882aa70d4e51c43f27c24b4275ed66,bd743f5f51882aa70d4e51c43f27c24b4275ed66,Most likely still overpowered.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ad7b41c261ec3da69eba9ef4881d6b173a77e687,ad7b41c261ec3da69eba9ef4881d6b173a77e687,Since they have so much stronger spell power than liches...,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/897ebf5882e626052f977403309f0da24a88705f,897ebf5882e626052f977403309f0da24a88705f,"If you're in the corner in a big rectangular room, the power will now",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a711d94a2f479904d7565f4ec01dde608838e86f,a711d94a2f479904d7565f4ec01dde608838e86f,"Previously, and with low spell power, you could have a ""successful""",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/11b3842d5c57c26cd131a16b3b5fbf9d1042151d,11b3842d5c57c26cd131a16b3b5fbf9d1042151d,1. The distance the orb travel depends on your spell power and the,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9cd352c194129738a45b5decf67e5542ec625420,9cd352c194129738a45b5decf67e5542ec625420,"It is very short (as I intended), but also long enough for e.g. four high-powered hydras take down a suitable pandemonium lord.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3ab1b1557425c7967188232e8b0f7f7ae14f2a14,3ab1b1557425c7967188232e8b0f7f7ae14f2a14,"Summons a 4-12 headed hydra, dependant on power/chance. Anything over 8 heads requires significant power and luck.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4c7d83c80d8f932542d6dc9d7fdc3da9dc450b9f,4c7d83c80d8f932542d6dc9d7fdc3da9dc450b9f,"weak. However, Dowan and Duvessa are quite powerful, so this is not",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a9ce00c51c2a026afe85bbcd781be31fb7afcf8d,a9ce00c51c2a026afe85bbcd781be31fb7afcf8d,"After several attempts to balance it, it was always either overpowered or",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f80e627b19b50b47a5b4d220b434d8a6a43f531b,f80e627b19b50b47a5b4d220b434d8a6a43f531b,"Yes, it's pretty powerful: it's also as rare as gold dragon armour, and",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5c17f22620a356fb8f730f8b5f9a55ad36d5a305,5c17f22620a356fb8f730f8b5f9a55ad36d5a305,Assign a power to monster Tornado.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6e6ab619dd639b1966fcead7ffc721c8594059e5,6e6ab619dd639b1966fcead7ffc721c8594059e5,"diminishing power. It might be a good idea to relax the formula, as",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/40d06d4e0f47e8aa5754002833a68859c8ab57c9,40d06d4e0f47e8aa5754002833a68859c8ab57c9,The random monster choosing could be tweaked to use the power scale;,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8868fa58c897b157db3a16c30d6e9191b0814b01,8868fa58c897b157db3a16c30d6e9191b0814b01,Boost Stone Arrow damage from 2d12 at 50 power to 3d11.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/517c2516e82fe0a40d124943f890453c9b05f698,517c2516e82fe0a40d124943f890453c9b05f698,"Modeled after 6d17f6c1b, but less overpowered. That seemed fun and enjoyable, even if broken.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/410610483bd2cd65c57fce916d76adb148aa9314,410610483bd2cd65c57fce916d76adb148aa9314,Make high-powered Recite try to find an effect that applies to the monster.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d9df4b1b2d4b8aaac83683b300f060a5f50af032,d9df4b1b2d4b8aaac83683b300f060a5f50af032,"It makes no sense for one side on the Arena to be disadvantaged, and power 1",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/65cf2bb0693c4f1b46e68108407d50a858330c20,65cf2bb0693c4f1b46e68108407d50a858330c20,"power crashes, as long as the underlying fsync() implementation isn't",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64cee1c08b1ed32dd305ea15e0b9a517f3849c55,64cee1c08b1ed32dd305ea15e0b9a517f3849c55,It's such an overpowered thing already...,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9578c10dbeea1a08e79da469502c11404f5bab3f,9578c10dbeea1a08e79da469502c11404f5bab3f,Move monster Evocations from _generate_rod_power() to monster::skill().,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fcb605bcf55f71c9a0a69baabe27b3b7ca123c72,fcb605bcf55f71c9a0a69baabe27b3b7ca123c72,Fix false positives in _foe_should_res_negative_energy().,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6c26a20339c202111d1d636893109e648e92e4fd,6c26a20339c202111d1d636893109e648e92e4fd,"On the monster side, non-natural holiness means full negative energy",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/eb8645b7faedfdb9c58b492755dce98d9cb55b8f,eb8645b7faedfdb9c58b492755dce98d9cb55b8f,Tornado: try to visualize regions where the power is very low.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4e8b42c8697892d18474e48b64c2e4ba94908905,4e8b42c8697892d18474e48b64c2e4ba94908905,Reduce Tornado durations at high power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0cf59cb33f4dcbc09c5f93c91659a611a5084c53,0cf59cb33f4dcbc09c5f93c91659a611a5084c53,underpowered.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/00b4dbbe8fc3b368d45885dfb1d7d9edbe65c207,00b4dbbe8fc3b368d45885dfb1d7d9edbe65c207,Ash reskilling power UI,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6c736f6c16b68d6026c032acc15b5f6c42fd877a,6c736f6c16b68d6026c032acc15b5f6c42fd877a,"Also, to avoid confusion, describe orcs' Beogh-powered water walking as",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/45a56ab7e4bf299ea1a2a6469643292ba15db5f0,45a56ab7e4bf299ea1a2a6469643292ba15db5f0,"This may be badly overpowered, which is good as the god is currently totally",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f3c5144c60b30c6ba66c278c1dd41ce5873e8bc2,f3c5144c60b30c6ba66c278c1dd41ce5873e8bc2,"Undead servants are now sorted by power, and the threshold increases",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6f0750b3c48a48df039a0643ff9b5736e82b9a4e,6f0750b3c48a48df039a0643ff9b5736e82b9a4e,"Also, a fully ided staff shows as ""an uncursed staff of power"". How can",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0f52a983a170f0b35d9b1dc46699d764ea7b120f,0f52a983a170f0b35d9b1dc46699d764ea7b120f,"Malign Gateway tentacles chaotic, friendliness tied to spell power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/00824734f62dcb254b07bade924c50ca1ece70a1,00824734f62dcb254b07bade924c50ca1ece70a1, translocational energy before the tentacle appears.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/820b7ca5be58857ff70ca77f1151d23632930b9c,820b7ca5be58857ff70ca77f1151d23632930b9c,"* Animate Dead (spell and Yred power), Simulacrum, Death Channel,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f1034e17b6feecd10013692585cc82c320b269f2,f1034e17b6feecd10013692585cc82c320b269f2,Average power is displayed (5+2*evoc) but real power is still randomized,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ce0bcc04d02cae3e056953cf2c2b2446183e9ff1,ce0bcc04d02cae3e056953cf2c2b2446183e9ff1,they don't build up a big energy pool. (#2199),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e604e6fcf1acf36f17bd2cc0131e02319cbf25c2,e604e6fcf1acf36f17bd2cc0131e02319cbf25c2,Fix ball of energy paralysis ignoring stasis.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b61f9f001cca173e0aeb801f40abd8f6e28b3ba0,b61f9f001cca173e0aeb801f40abd8f6e28b3ba0,Give the ball of energy a bit of paralysis in return.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6a2d32f22db1af2c125b550c5b4902640e06d73b,6a2d32f22db1af2c125b550c5b4902640e06d73b,Change ball of seeing/energy confusion to be resistible with clarity.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e13f9dae32830391c3e94688bf831128989c84bd,e13f9dae32830391c3e94688bf831128989c84bd,Fix monster-vs-rock worm messaging and energy use. (#1352),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fbebf62b957ee6f807722320710e80db11b61671,fbebf62b957ee6f807722320710e80db11b61671,"Fix power 1 Dance card producing long swords of reaching, dragon slaying, etc.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/288ec85d763ae698bbb7e3523c80ef2c048384c2,288ec85d763ae698bbb7e3523c80ef2c048384c2,"Overpoweredness of MD should be adressed through AC, and right now they're certainly not OP. Low MR is an interesting drawback, but probably this is not the spot. Manual will be edited in the wiki.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2e50897d49b089abfe52676370cca101c2b729f4,2e50897d49b089abfe52676370cca101c2b729f4,"They don't spawn in the abyss or by TSO's power, but many vaults use them, and",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1dcaa4d508012fcc0555f46bb4474ae688acd00a,1dcaa4d508012fcc0555f46bb4474ae688acd00a,"they are the second most powerful class after seraphim. Also, their shape",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7885266968a04fd657991e58cb8a04929f4c49c1,7885266968a04fd657991e58cb8a04929f4c49c1,Toned down golem wave power,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/52e50efc4364787caaffb9987fb7905b71a0abc2,52e50efc4364787caaffb9987fb7905b71a0abc2,Make crystal ball power-draining messages consistent.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7c0e45b8a98793d5afc454cf73d8ba3be173b2a9,7c0e45b8a98793d5afc454cf73d8ba3be173b2a9,Make ball of energy stat loss matter a bit.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/19152e8ed09fb6ffea556bd0a909158b0ef20c66,19152e8ed09fb6ffea556bd0a909158b0ef20c66,"Make the monster spells SPELL_BLINK_AWAY, SPELL_BLINK_RANGE and SPELL_BLINK_CLOSE consume energy.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f255340e226f2981a1b690abf14b4ee4bf2d2616,f255340e226f2981a1b690abf14b4ee4bf2d2616,[1908] Fix staff of power tile randomly changing.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cca98e36f55f37abee53f4eb557969f98fa0434e,cca98e36f55f37abee53f4eb557969f98fa0434e,[1868] Fix converting to Lugonu not giving access to first power in Sprint.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b73fffc66e151131f57c8f33f6e34c47c978057a,b73fffc66e151131f57c8f33f6e34c47c978057a,Empowered is still there (good for Vehumet); empowered colouring,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/aea6ad91d9d2654059db994b82d33013c9165fa3,aea6ad91d9d2654059db994b82d33013c9165fa3,Disallow power 1 Warp cards when under stasis/-TELE.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/035a96aadae354d07b8003cd6f69121644332bdc,035a96aadae354d07b8003cd6f69121644332bdc,Allow powered by death to be triggered by pets,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4022adc8ff9473b7b66fbf7a7c6ef0269ec090b3,4022adc8ff9473b7b66fbf7a7c6ef0269ec090b3,"For Doroklohe, only lose spell energy if the monster stays in the tomb.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3045b999025412edb402c5c4ba646bf258cfcb22,3045b999025412edb402c5c4ba646bf258cfcb22,* energy loss or recite effect after dropping tomb;,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8dd0b671f30b8bd66243f72de7ab2fa5b0cc0f90,8dd0b671f30b8bd66243f72de7ab2fa5b0cc0f90,Reorder the Recite parameters so that it can calculate its own power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/554a3b4959d21cfa623e1e0ba539577c2b9f6e0c,554a3b4959d21cfa623e1e0ba539577c2b9f6e0c,"The bulk of DS power is gained via mutations, which are gained as the player",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/16c20add396bc741c799b998b32bdcc2e74e7004,16c20add396bc741c799b998b32bdcc2e74e7004,"as vastly overpowered and boring, and thus is to be removed completely.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f65f5b4a6509df47eb5665ad9169fafb0138aaa4,f65f5b4a6509df47eb5665ad9169fafb0138aaa4,Remove unused power parameter from zin_sanctuary().,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cb14027732bd657bb56d7f692cc3c10768fc9d5d,cb14027732bd657bb56d7f692cc3c10768fc9d5d,"Per Mantis 1447, scale the power of Ely's Divine Vigour a bit better.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/55b7e8e4b513fc9091086a728d56c0669e1742f4,55b7e8e4b513fc9091086a728d56c0669e1742f4,Fix missing message when losing Zin's Imprison power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c3729202129ab4750843db4a41ae0f68664a7d63,c3729202129ab4750843db4a41ae0f68664a7d63,Ensure that only self-entombed monsters lose energy when unentombed.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2673c50a117a2ed71df96e2dd3ab504be538cf3c,2673c50a117a2ed71df96e2dd3ab504be538cf3c,Document Zin's new power in the 0.7 changelog.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/66353504e0d7d62734d7127ba393b9f2e2137acc,66353504e0d7d62734d7127ba393b9f2e2137acc," I don't think this is overpowered, but it would be easy to reimplement",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/48f4e9825740452ce711652a96feb3aad726e3b3,48f4e9825740452ce711652a96feb3aad726e3b3,Fix off-by-one error in summoning power for imps/ugly things.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0d62f77f42f629d7b8fb6da751201d822b64f1b5,0d62f77f42f629d7b8fb6da751201d822b64f1b5,"Leave the power nerf for very ugly things in. Even with it, their HD is",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c58281770b8f50873dec2b9957bffe4da98224d7,c58281770b8f50873dec2b9957bffe4da98224d7,Make the kinds of imps summoned by Call Imp dependent on spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e49daf5b5ff6fbcb71038529d595e425225c1b6e,e49daf5b5ff6fbcb71038529d595e425225c1b6e,Make staves of power store some of excess power; it dissipates quickly.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2ade68e9e913e1458ad5482c0b5da6dea8635f70,2ade68e9e913e1458ad5482c0b5da6dea8635f70,The most significant difference compared to the plain statue monster is the attack power (1 vs 20). That made the statue a little uncomfortable to use in the tutorial.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a841f4f11388c75ba8d061d42b237c0083e23166,a841f4f11388c75ba8d061d42b237c0083e23166,Fix power by death rotting code being called almost always.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/060c5662636b0636642beb377fca8d4734978c34,060c5662636b0636642beb377fca8d4734978c34,Demonspawn_add_powered_by_death,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b010a0238de77dad9d2558dcc17ff3ee6e1179d5,b010a0238de77dad9d2558dcc17ff3ee6e1179d5,Restore TSO healing power gain from killing demons.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/597654f496b8c50a728d83e9ad97dc35425aa4f2,597654f496b8c50a728d83e9ad97dc35425aa4f2,Restore TSO healing power gain from killing demons.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/267dc185c114683c31a9cd28ab60db1e12976000,267dc185c114683c31a9cd28ab60db1e12976000,energy. Fixes issue #1024.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6a06d3829f557bab4b69e228c59104856e696082,6a06d3829f557bab4b69e228c59104856e696082,energy. Fixes issue #1024.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e38f0ff0c3ffece3a8be5ed91dab99716f61ae8d,e38f0ff0c3ffece3a8be5ed91dab99716f61ae8d,message spam about the monster not using energy on the canceled attack.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/682379d6cc162ee4ac5435ae9f5555203ca587d1,682379d6cc162ee4ac5435ae9f5555203ca587d1,message spam about the monster not using energy on the canceled attack.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cb9423810340ce15733955c704535b10152c1819,cb9423810340ce15733955c704535b10152c1819,Comment on spell_desc::power_cap.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6329d2645238df80e87372d36f4019555d70b92a,6329d2645238df80e87372d36f4019555d70b92a,Bring zap power cap into spell_power_cap.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/472a009b4b1d8b7759f30d7f4c79c15ec3ad551a,472a009b4b1d8b7759f30d7f4c79c15ec3ad551a,Comment on ZAP_HIBERNATION power cap.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/76809b1cc0fcb9fc4f8217adaa457d1ab6be1a62,76809b1cc0fcb9fc4f8217adaa457d1ab6be1a62,spell_zap_power_cap: Translates zap power cap to spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ee5e51cb93c3ffe789aa636f25ebf079cef55a46,ee5e51cb93c3ffe789aa636f25ebf079cef55a46,Add zap_power_cap.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3d124b5ced56d1cca0a531bc4f0413a39e6f7bfb,3d124b5ced56d1cca0a531bc4f0413a39e6f7bfb,Empowered is still there (good for Vehumet); empowered colouring,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/833ad49c2e54ba50692f6206a17f34feb0aeac46,833ad49c2e54ba50692f6206a17f34feb0aeac46,Don't treat necromantic spells as empowered by Kiku.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/10b257d1e02ceaa8aab0c9db0216ddde0944213c,10b257d1e02ceaa8aab0c9db0216ddde0944213c,Don't treat necromantic spells as empowered by Kiku.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f569ca1926a7beecac262fb26a432494b9fb3145,f569ca1926a7beecac262fb26a432494b9fb3145,"Show power, range and food cost when browsing spell descriptions.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/acaa8616ccc83d51381a4af59ad02cf7f5b7a879,acaa8616ccc83d51381a4af59ad02cf7f5b7a879,"Show power, range and food cost when browsing spell descriptions.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d38662cd25aa8c9d6503181771bffa6ac2af1047,d38662cd25aa8c9d6503181771bffa6ac2af1047,Show numeric spell power only if wizard mode is active.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/16cc3bb6a07a6148c853fa18561cb2bb363913c8,16cc3bb6a07a6148c853fa18561cb2bb363913c8,"slaying power, but this is not quite accurate (in particular,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e78771d288ba9999e3e0c98c0124ae69c085a524,e78771d288ba9999e3e0c98c0124ae69c085a524,Account for Kiku's Ne miscast protection to spell_is_empowered,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/47202cd8c3183d42119cada32c8162012fcc9531,47202cd8c3183d42119cada32c8162012fcc9531,Show numeric spell power only if wizard mode is active.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5ff36bdc1425aa836bdc5f7463781e5e424f7549,5ff36bdc1425aa836bdc5f7463781e5e424f7549,"slaying power, but this is not quite accurate (in particular,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/232cad6ecab766d7081c3cc83fcd40879787dc7d,232cad6ecab766d7081c3cc83fcd40879787dc7d,Account for Kiku's Ne miscast protection to spell_is_empowered,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7d521cb945a66a6a099c45a17c86386e800ab374,7d521cb945a66a6a099c45a17c86386e800ab374,Decrease IOOD damage at close range. Tie the accuracy to spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7fe3da2fb72451c279e811049c25e224d2cb583c,7fe3da2fb72451c279e811049c25e224d2cb583c,Decrease IOOD damage at close range. Tie the accuracy to spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/14620b1994b936f972279d5ad8479523c6ebc8d7,14620b1994b936f972279d5ad8479523c6ebc8d7,"magical energy"", it can be added to messages.txt, where it makes",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7c0e01a38b678b386d2906ea17a5000a54da4171,7c0e01a38b678b386d2906ea17a5000a54da4171,"magical energy"", it can be added to messages.txt, where it makes",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5d84dcd71edac512b71621c849e255ea4d7a4981,5d84dcd71edac512b71621c849e255ea4d7a4981, mon.energy,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8b6aae3ff255048302268867c6ab48690614f3dd,8b6aae3ff255048302268867c6ab48690614f3dd,control of the demon's realm and powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bbe2c87d4f016c3a09bc6acbdf0de6f0807b1ab8,bbe2c87d4f016c3a09bc6acbdf0de6f0807b1ab8,control of the demon's realm and powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0f3c49dcf2242e3822669bf3d4beb0de1a167724,0f3c49dcf2242e3822669bf3d4beb0de1a167724,"putting spell power into the formula), and this change makes hitting or",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/79218e3c9e5868a3a9a50f0b35f697da91ed1149,79218e3c9e5868a3a9a50f0b35f697da91ed1149,"That's at least 10 turns, at most 100. At 50 power (mid-game enchanter)",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6f3ab2f18713d81b732dbd8a54ff3733bd1a889e,6f3ab2f18713d81b732dbd8a54ff3733bd1a889e,Show actual power in wizard mode spell-casting screen.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b4307e0d2168313dc5c4c3f5290a1b4ac54c9e7b,b4307e0d2168313dc5c4c3f5290a1b4ac54c9e7b,Randomize movement energy loss.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b5f40eae11706033a98914b0eccd19d026899728,b5f40eae11706033a98914b0eccd19d026899728,"Revert ""Randomise monster energy slightly.""",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/78d78651f0be33a7ec51905503dd5187b88bb67f,78d78651f0be33a7ec51905503dd5187b88bb67f,Randomise monster energy slightly.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d619ec97ac10020896ccecbb5a7fd12556c37638,d619ec97ac10020896ccecbb5a7fd12556c37638,"adjusted movement energy, but it looked odd.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e7cb82bc02da41a55828594c24cba957207cc113,e7cb82bc02da41a55828594c24cba957207cc113,Fix bad display of Chei's powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/dccba09075e44f8219fafe9cef1d1025ee937400,dccba09075e44f8219fafe9cef1d1025ee937400,that he's too powerful at his assigned depth.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/10cf7d676b89f57422dac9d90c4464b66f95cff1,10cf7d676b89f57422dac9d90c4464b66f95cff1,"With haste, this makes it slightly overpowered. It's a great theme and I",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/65df1b1f5ffe872e5baa3eb8611c0335f944b4cf,65df1b1f5ffe872e5baa3eb8611c0335f944b4cf,The current needle brands are overpowered in the fact that you can,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a84fefbc093f35a098b4e6fd94eaa798ed3072e0,a84fefbc093f35a098b4e6fd94eaa798ed3072e0,"Fix javelineers and master archers producing warnings about not using attack energy when they attack in melee (due, kilobyte).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/337f1de1f6a09d7b72a74a9fb6d8365ba9566d4e,337f1de1f6a09d7b72a74a9fb6d8365ba9566d4e,don't need the confusing power disparity.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7a822175439041ecec75bb45240ab5e80396da46,7a822175439041ecec75bb45240ab5e80396da46,"build, and using stones is too underpowered.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9939a9514e001f19dc384d8ae8b27940327afbe8,9939a9514e001f19dc384d8ae8b27940327afbe8,Apply a stepdown on power to make damage more constant.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bdef58ca99e4b4239bbd98b7057218231625e378,bdef58ca99e4b4239bbd98b7057218231625e378,"may be overpowered, but I didn't want to change the code here too much.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7bf522535b9a6f90f8272043cb7af97b7c7cc2bf,7bf522535b9a6f90f8272043cb7af97b7c7cc2bf,Fulsome no longer uses power; the chance for self-affliction is removed.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cc6a658772e7c26cf2dedceb7028601c9863268f,cc6a658772e7c26cf2dedceb7028601c9863268f,"2. ""Self affliction at low power"" means less than 1dN-1 where N",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5b9916a319a570598c8cd54e916eb10dab0eb916,5b9916a319a570598c8cd54e916eb10dab0eb916,Fixing power-of-two image loading issue.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7512f07d9a371554721dfb59ae9993fed1128ac8,7512f07d9a371554721dfb59ae9993fed1128ac8,Actually use spell power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/df67479383393d0585994f3f08ab0d23094d2679,df67479383393d0585994f3f08ab0d23094d2679,resistance. player::put_to_sleep with a power of fifty is congruent with,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b4339d19739c54798ce6bc97a3f02384f25aa53f,b4339d19739c54798ce6bc97a3f02384f25aa53f,"Don't autopickup known amulets of guardian spirit, but do rings whose power stacks.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/20889107ee4ef5e7f61b1facfdf4da4bc97935b6,20889107ee4ef5e7f61b1facfdf4da4bc97935b6," depending on whether you failed the power check,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c7857e47b91bbdd3f33379100df02fdff420337a,c7857e47b91bbdd3f33379100df02fdff420337a,"This is visually identical to translocational energy, but will have uses",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2fc79a6d0d709878025fa1f06cf2a5344098f333,2fc79a6d0d709878025fa1f06cf2a5344098f333, powerful monster.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ab3ea04380fd89fb89f061ca6611b6a7cf4f11e1,ab3ea04380fd89fb89f061ca6611b6a7cf4f11e1,"crystal balls, staffs of channeling, and other God powers (Makhleb,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/01c2c98a5a6afe23c1bbbb1165b0c41dba2ddef2,01c2c98a5a6afe23c1bbbb1165b0c41dba2ddef2,"They'll do less damage, but their great speed and healing powers mean",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3593fbb549ba5b991b92994c94b529ac99045d46,3593fbb549ba5b991b92994c94b529ac99045d46,"negative energy resistance no longer provides rotting resistance, this",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/077bd451d313220fa8d7c1134fa905d924666e38,077bd451d313220fa8d7c1134fa905d924666e38,Miasma is no longer tied to negative energy; don't mark it necromantic.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/282c4c46c0b2e413e1ad3b0bfb62db6fd1802d00,282c4c46c0b2e413e1ad3b0bfb62db6fd1802d00,Tweak the power of Beogh's dancing weapons again to match the maximum.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cdd501fcf0c5bcf14744e6c8cc6ad9b13e30bcc8,cdd501fcf0c5bcf14744e6c8cc6ad9b13e30bcc8,Scale up the power of Beogh's dancing weapons.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9e7d6a830a8eec62cbf329acbb9e1cc69d56a75e,9e7d6a830a8eec62cbf329acbb9e1cc69d56a75e,"""Tloc energy"" -> ""Translocational energy"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/25262bdbcec856c4b99b72b86a3ccb7c363ee9e0,25262bdbcec856c4b99b72b86a3ccb7c363ee9e0,Rename purple smoke to clouds of translocational energy,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0f01338ab32de5c6477718d1887d11611af6addb,0f01338ab32de5c6477718d1887d11611af6addb,Properly mark Tukima as a 150 max power spell,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/dbdfb48c0639aa101f25d210496e66bd6326873b,dbdfb48c0639aa101f25d210496e66bd6326873b,Reduce Tukima power requirement,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1587373bced888a35c938e32bdaf1a3de7e48bae,1587373bced888a35c938e32bdaf1a3de7e48bae,Simplify player::res_holy_energy() a bit.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/808d95388e8d845c5e5b7f416231c1fc9a8aca97,808d95388e8d845c5e5b7f416231c1fc9a8aca97,And propagate power from Tukima / the Dance.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ebce0ae5a24d6af41ebb888c50cb14b770d22f89,ebce0ae5a24d6af41ebb888c50cb14b770d22f89,damage done or the beam's power. Beam-ish spells generates a seperate,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9b4674477db54f4d807bc0c0a2525fd987e1d7f5,9b4674477db54f4d807bc0c0a2525fd987e1d7f5,Make Time Bend use Invocations for power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e14a242819bafa92d2edf0425729a0485f78f591,e14a242819bafa92d2edf0425729a0485f78f591,Make Ponderousify available from day 1. Announce newly available powers when piety changes.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8420352d20a25c155bc1f00c022f72aee2eadf44,8420352d20a25c155bc1f00c022f72aee2eadf44,Don't cap spell power for failure rate calculations.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/058c0c7d7a6f5bb5a7370a1cf051f4d0aa9931c1,058c0c7d7a6f5bb5a7370a1cf051f4d0aa9931c1,"Reduce the threat in Elf arrival vaults as per FR#2854879. They were too powerful, blocking off the branch instead of warning about the threat. Might still be, so playtesting and feedback is welcome.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/acd46386203be8791b5b9acd040f0e6a581a781f,acd46386203be8791b5b9acd040f0e6a581a781f,"Since miasma is no longer associated with negative energy, remove death",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9cc9c1350516b56581c8bf86aafa695677d819f9,9cc9c1350516b56581c8bf86aafa695677d819f9,Slimify power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9c3c901527ab5fa7da28fb2888cde44a48310d11,9c3c901527ab5fa7da28fb2888cde44a48310d11,"Since miasma is no longer tied to negative energy, death drakes",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/45001d37f21bc2b39c616d313d01b0039a78734e,45001d37f21bc2b39c616d313d01b0039a78734e,"on negative energy resistance, but on rotting resistance.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1b6bfb7856cb5590e9e10c1e7317eba775409b21,1b6bfb7856cb5590e9e10c1e7317eba775409b21,Rapid Deconstruction having no effect at low power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/af7fe6ad37f466a8e926cc29765197f5b0e7224f,af7fe6ad37f466a8e926cc29765197f5b0e7224f,"Display spell cost, success chance, schools, power, range, and hunger in",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c037773236312cc930035ee49f50fe765a7874ad,c037773236312cc930035ee49f50fe765a7874ad,The scrolls cast the spell with a power of 25 which means it has a,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c4263fdd9aedbf0e51e65b84b1b5c630a3cf3643,c4263fdd9aedbf0e51e65b84b1b5c630a3cf3643, so this shouldn't be too powerful.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/41f78a696154902ae7baa22e116d39b6d321fc62,41f78a696154902ae7baa22e116d39b6d321fc62,Make fish on dry land (due to Feawn's Sunlight power) flop about and,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7b1eb1adab5b8e3b6a93150202b47407dc1e62c9,7b1eb1adab5b8e3b6a93150202b47407dc1e62c9,Put the messages about the power ruling the Slime Pits' vanishing in the ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a283c61f57a70c5190c3ba803d95951333dfb177,a283c61f57a70c5190c3ba803d95951333dfb177,"Some weapons stat tweaks as per FR#2793567 by Megane (with suggestions from Lemuel). Whips are now faster, eveningstars are more powerful, blessed blades are always better than basic versions, giant maces and clubs are much improved.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/873c564dcda878d3fed808a616ce55b19fba13bf,873c564dcda878d3fed808a616ce55b19fba13bf,"* Summon Small Mammals gives maximum of 2 mammals per casting. The possibility of getting two begins at power 32, where it used to be guaranteed. At maximum power (80), you should be getting about 1.75 per casting.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/37caba740f1bfdcea1f77d44db393ae9714b2410,37caba740f1bfdcea1f77d44db393ae9714b2410,Mention halo and extending summons/charms in the TSO powers description.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2c2a0304ec8308f912860f05dc1099b86f71773c,2c2a0304ec8308f912860f05dc1099b86f71773c,* Fix decks granting permanent summons at low power (and only at low,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/37bed710897dc75714b7dc761da4c6524eb95b66,37bed710897dc75714b7dc761da4c6524eb95b66,negative energy and lightning.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d5c46b944d92e3b36aaccb50135d8132e26a2228,d5c46b944d92e3b36aaccb50135d8132e26a2228," ""some of the more powerful grimoires are not to be toyed with"" warning",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d60673a651ffd703f50e5e6bd7968d41a5909991,d60673a651ffd703f50e5e6bd7968d41a5909991,the healing powers can keep them alive.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/13c65c10e5210cccabf6113fea6ac543cc8c69f3,13c65c10e5210cccabf6113fea6ac543cc8c69f3,Also update the Trog powers entry to be read with ^!.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/12096345ed3ac56efc5e8bb238786b43c6f1e033,12096345ed3ac56efc5e8bb238786b43c6f1e033,"When destroying weapons with Elyvilon's power, gain piety after ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c8abbb6f1236d147674c8d88065b8400756ce686,c8abbb6f1236d147674c8d88065b8400756ce686, that also includes neutral monsters) for Ely's Heal Other powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2772e5117bba390bc735af3dd9e0853f93a8306d,2772e5117bba390bc735af3dd9e0853f93a8306d,from a ring of magical power) is available. [2664906],commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2365944fa63c720b97904bf9d9c9263693a86063,2365944fa63c720b97904bf9d9c9263693a86063, really powerful and getting a weapon to poison is not that hard.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3b2fb36c1525c83fa8141449708aad3845d3e01e,3b2fb36c1525c83fa8141449708aad3845d3e01e,Use up some of a monster's energy when it eats a corpse.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/263a61728d25f53837389fcf1c333eebd78c535b,263a61728d25f53837389fcf1c333eebd78c535b,Use up some of a monster's energy if it does nothing because there's nowhere,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fc433497ef1d9017f279b039af57b815669c427f,fc433497ef1d9017f279b039af57b815669c427f,Tweak Zin's and TSO's descriptions and power descriptions.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/66a5899fafcf34e1e473b4cbac42938ce90300bb,66a5899fafcf34e1e473b4cbac42938ce90300bb,Fix negative energy always being known even if it hits something,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/44125ccb3573b67221fa49e3cdeef9020ea7c2b6,44125ccb3573b67221fa49e3cdeef9020ea7c2b6,"Add a power parameter to monsters::drain_exp(), and use it for the mass ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/20a096b93dc52950e35ff6d5323f0c00e0ac701b,20a096b93dc52950e35ff6d5323f0c00e0ac701b,as I figure out how to scale the power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/11ac9d188a1203a9f62e01a1c87be26961fa8fcb,11ac9d188a1203a9f62e01a1c87be26961fa8fcb,Modified description of Elyvilon powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2a68b06b2f6273af90a14d8e201b883060da8805,2a68b06b2f6273af90a14d8e201b883060da8805,Explicitly mention that Yredelemnul's Drain Life power has a healing ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b0afcc8dd38ff00d80b4955bdc2f12c3a843c594,b0afcc8dd38ff00d80b4955bdc2f12c3a843c594,then speeding up from Zin's Recitation power) don't give a confusing,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/942a2a13a9bbe4672247b37e58a53abfc4ca4db5,942a2a13a9bbe4672247b37e58a53abfc4ca4db5,"Clean up potion effects as per [2544231]; get rid of the ""power == 40 means",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/50d4d026d2cf6e6787e7060a6c76e9aaf8791d82,50d4d026d2cf6e6787e7060a6c76e9aaf8791d82,"energy"" necromancy miscast.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1ed77e6ef01e014bec657b6dfea403a29e20c8fa,1ed77e6ef01e014bec657b6dfea403a29e20c8fa,"Actually display the ""engulfed in negative energy"" miscast messages.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f2e1abc584a801b0ebf3c595d63752f5eda7708b,f2e1abc584a801b0ebf3c595d63752f5eda7708b,"a power parameter to immolation, so that it can be reused for an ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/436078067b93a484213ed2a2bc212e7127f75e49,436078067b93a484213ed2a2bc212e7127f75e49,"Rename cleansing flame resistance to holy energy resistance, and clean ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/990084e0bd9bc3863b0a3a75307367ef6c745624,990084e0bd9bc3863b0a3a75307367ef6c745624,Make draining beams properly take full negative energy resistance into ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/48e6d3f0a10c226f6c22b108b74ef3b9b5c39de2,48e6d3f0a10c226f6c22b108b74ef3b9b5c39de2,Simplify check for negative energy resistance.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a8b134e880670b0dbd21df0c79ffbabc1a7911ae,a8b134e880670b0dbd21df0c79ffbabc1a7911ae,Make draining from spell miscasts take full negative energy resistance ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b0656caf08f04934c2012515fa6260be0e234e24,b0656caf08f04934c2012515fa6260be0e234e24,energy resistance into account.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f4435f65071c667729e13ccde226b120113a5742,f4435f65071c667729e13ccde226b120113a5742,Fix check for monsters' negative energy resistance with regard to ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a6d89fbabb631ecbdcbb86c59aa70c28fd7da696,a6d89fbabb631ecbdcbb86c59aa70c28fd7da696,monster draining take multiple levels of negative energy resistance into ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c189cc37d4a2e1b018059965189cbcef3b00e444,c189cc37d4a2e1b018059965189cbcef3b00e444,Make Flame Tongue have range 1-4. This might be overpowered. [2470382],commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7b1cca057edbb02b16b0eca2a020982fd6376a68,7b1cca057edbb02b16b0eca2a020982fd6376a68,"On second thought, remove monsters' glowing on the ""distortional energy"" ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b174cc45ae14a2bbf69000d2f1293b1eec4b4952,b174cc45ae14a2bbf69000d2f1293b1eec4b4952,Fix spell power caps not being respected (looks like a long-standing bug.),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f65b0e512e9ebabc93aa35224228a39e1c3d5a88,f65b0e512e9ebabc93aa35224228a39e1c3d5a88,"Remove Vampires being ""in touch with the powers of death"".",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5e333ce7bdf88c826dfc0a8a8fa0cbba8b110167,5e333ce7bdf88c826dfc0a8a8fa0cbba8b110167,"the various chaos effects, to make chaos brand less powerful.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/02f86de3ea70d559869c6b37446d7e6134fade3f,02f86de3ea70d559869c6b37446d7e6134fade3f,"because (a) all of his other destructive powers are aimed at monsters, ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8ab4abaf147cd83736d27c874d39989afa1b2c0a,8ab4abaf147cd83736d27c874d39989afa1b2c0a,"Monsters submerging now consume some energy, except for air elementals",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/24635b5b6b18919e6c5ffbfc456a607598327177,24635b5b6b18919e6c5ffbfc456a607598327177,"access to servants at piety 75 (enough for power 3, ""Animate Dead"", but ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/10f1867a5da2568fd82e20e2936541750b30ab1c,10f1867a5da2568fd82e20e2936541750b30ab1c,"Undead"" power is no longer available, it doesn't seem to fit anymore. ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fcd2f73d85997682a9c89c897348ae8e32432589,fcd2f73d85997682a9c89c897348ae8e32432589,"Replace Yred's ""Control Undead"" power with ""Enslave Soul"", as proposed ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6e66d99e08a498b6277b3fbc2d5a141b9a3c4df7,6e66d99e08a498b6277b3fbc2d5a141b9a3c4df7,third power) rather than 81.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c98da4f51cec16b498acc6f9e4b52a225dfd61c4,c98da4f51cec16b498acc6f9e4b52a225dfd61c4,Uncolour power string.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bbddaa28b4d5221142ce49db6aca94691f2c6054,bbddaa28b4d5221142ce49db6aca94691f2c6054,Spell power coloured red/green/yellow/white. (This might have been there,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e18be9c249daa49488b6f8c8937425a4d3056075,e18be9c249daa49488b6f8c8937425a4d3056075,the amount required to get his second power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/756243bbee28fdd9ed0327dee41f6a0f1563f11a,756243bbee28fdd9ed0327dee41f6a0f1563f11a,[2053689] Fixed bad ench_power for the monster Pain spell.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/487e54d8bfa380b66b3534376b34325c179cfca1,487e54d8bfa380b66b3534376b34325c179cfca1,"[2094133] All friendlies check for collateral damage for ranged attacks, not just smart monsters. Also add friend and foe power to tracer debug.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7349eedd00eabe85d7e76e457011d48522b97593,7349eedd00eabe85d7e76e457011d48522b97593,"hostile, including any zombies you've raised using his power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a7260191bfe7a52d60a139bae417404d298bb3a5,a7260191bfe7a52d60a139bae417404d298bb3a5," use his power to hurt helpless creatures, even willingly.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0a39339616bebe698ef054e55db8a8e6f16c4483,0a39339616bebe698ef054e55db8a8e6f16c4483,Add short duration freezing cloud for high-damage cold beams (bolt of cold at reasonable power).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6622dd9e4820835af7bd93903346a6282db61cf3,6622dd9e4820835af7bd93903346a6282db61cf3,Add short descriptions of Makhleb's powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d9ea814e81198a9f8165255fe7fb5960726cec1e,d9ea814e81198a9f8165255fe7fb5960726cec1e,The only ones missing now are Makhleb's powers. Never having played ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a6ed54f4d646157c90186c4d423fa0820c5748c0,a6ed54f4d646157c90186c4d423fa0820c5748c0,right in that should not be too powerful for this comparatively weak,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3d81bd7a6b61c60f49995ad85787afa7452a7965,3d81bd7a6b61c60f49995ad85787afa7452a7965,Outsource the description of Xom's powers (so to speak) instead of ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0e65534b50e40a32611842551af39a089eff48af,0e65534b50e40a32611842551af39a089eff48af,first power) char_direction is properly set to GDT_DESCENDING and from,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0f92b7e64d8df14c6fa9072fdf23457ed830af01,0f92b7e64d8df14c6fa9072fdf23457ed830af01,Improve the god power descriptions a bit.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/fff74acfa80407ef325f0857ef538ad31bd6371b,fff74acfa80407ef325f0857ef538ad31bd6371b,"powers) and has linebreaks at 72 columns, whereas the rest of the screen",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d1a6e695915d4d649f3517f4c131f940c7aacc8f,d1a6e695915d4d649f3517f4c131f940c7aacc8f,Enable healing of allies using Elyvilon's power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/00af579c24de8cec2ed28065c30164f30ccac64e,00af579c24de8cec2ed28065c30164f30ccac64e,"Add gods' powers and abilities to their descriptions, viewable via ^!",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/68219010289d1bbfc2c31be65fa187e9ed7a61f5,68219010289d1bbfc2c31be65fa187e9ed7a61f5,"pacification gives such monsters the power to move, for the sake of ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f13fb6fd227d1bf21cbef7542c487271a178a77c,f13fb6fd227d1bf21cbef7542c487271a178a77c,weapons power to use it.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cb7ec291357aacf3f20b29b1971e64adbf93c476,cb7ec291357aacf3f20b29b1971e64adbf93c476,Mark daevas summoned by TSO's power as god gifts from TSO.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5f025c63e5bdba6322e7be02a00bb4e0ca1d71ae,5f025c63e5bdba6322e7be02a00bb4e0ca1d71ae,"Revert some uses of MAX_PIETY; xom_acts() takes a power value, not a ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1bff3c05ddd42eda0d5310b4d1f2671aae52815d,1bff3c05ddd42eda0d5310b4d1f2671aae52815d,of the first for powerful monsters. The numbers are more or less made,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/4100f35810ffbfbf4d566d8d589ee278ad039bac,4100f35810ffbfbf4d566d8d589ee278ad039bac,Add power adjustments.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/e15cb03057e1f57801e01fdc3c6271e0736f4c79,e15cb03057e1f57801e01fdc3c6271e0736f4c79,Convert the shadow- and spatial vortex-summoning routines to use power ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/14752e5f2cfddc5b99a104afe1c8d42a74aff22b,14752e5f2cfddc5b99a104afe1c8d42a74aff22b,monsters::lose_energy() now takes optional paramaters to multiply and/or,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8f675841ee07a21138fe098204f46018d28ea3b5,8f675841ee07a21138fe098204f46018d28ea3b5,Dial down the power of monsters' Dispel Undead a bit.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b9e92fede7b9f7727e49f31050eae9cf31430492,b9e92fede7b9f7727e49f31050eae9cf31430492,"same power level, and random polymorphing may not have that restriction.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/be08d7778eaea2418d499c0b9c7ea195d011fff7,be08d7778eaea2418d499c0b9c7ea195d011fff7,Have Xom check directly for negative energy and torment resistance when ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/33ada2dff303fba46452dfb652a3901344af20d0,33ada2dff303fba46452dfb652a3901344af20d0,Remove the single level of negative energy resistance on blessed blade ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6ca45199e87459ed3c457a6205f3f8994a0d6987,6ca45199e87459ed3c457a6205f3f8994a0d6987,"energy, and Beogh can now brand a monster's weapon with electrocution.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8ca11ca1abfafae094983a6445cf7ac2b8013835,8ca11ca1abfafae094983a6445cf7ac2b8013835,"When under penance from TSO, you don't get his negative energy ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d6a092ee4b99bd2ca8f221e57d8049b36761e050,d6a092ee4b99bd2ca8f221e57d8049b36761e050,"Adjust the power of the ""Summon Ugly Thing"" spell again.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b79c592eaecb4703b0aa03c5b12c502aaa284788,b79c592eaecb4703b0aa03c5b12c502aaa284788,"More Divine Shield adjustments. The maximum power is now back at 8, but ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/655e25c2693b8e02b37ee650e0fd74a8baf4d837,655e25c2693b8e02b37ee650e0fd74a8baf4d837,Make Zin's Revitalisation easier to adjust in terms of power by making ,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/02604af1abe748b59b886c61e0bec324ce3bc7c2,02604af1abe748b59b886c61e0bec324ce3bc7c2,"properly goes up with spell power for players, or with hit dice for ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0a22591e3b05f479def2d67dc5c935aaddf072d1,0a22591e3b05f479def2d67dc5c935aaddf072d1,"Let TSO's ""holy attack power"" blessing for followers turn demon blades ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/74061dc6c48cf08a48485d0a7ab4074188c75d0a,74061dc6c48cf08a48485d0a7ab4074188c75d0a,"50% chance of adding a mutation. If power is low, this added mutation is",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6227494d3fee44608ba466d38a4e893e25a7d634,6227494d3fee44608ba466d38a4e893e25a7d634,"monsters 1/3 of the time, instead of gaining power as they normally ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/3353d8ee56f3110b406697f5d6a03729d5240319,3353d8ee56f3110b406697f5d6a03729d5240319,"flame or bolt of draining in that slot, which are more powerful. Still, ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8a2dfbcb11bd09dab998a6b81e8c7407a3c4c42a,8a2dfbcb11bd09dab998a6b81e8c7407a3c4c42a, (recite power + hp at beginning of recite + x_pos + y_pos),commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8668a39cff8fdd8efae4705cf91781ab0223654a,8668a39cff8fdd8efae4705cf91781ab0223654a,"Adjust TSO's ""power from killing"" messages again.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9a795ed3df54209245dadd39fa98f48e15209e55,9a795ed3df54209245dadd39fa98f48e15209e55,"Adjust the ""power from killing"" god power messages to be more accurate.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f01463de3abf61a8c3057b7aa70841e000cf55f4,f01463de3abf61a8c3057b7aa70841e000cf55f4,"As suggested in FR 191314, !blood are a now an additional power source for ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/486cd86756c320e2eb9bca015477e7e82a626b7c,486cd86756c320e2eb9bca015477e7e82a626b7c,"Another TSO update: add ""gaining power from killing evil in his name"" to ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/0073de23aefbc5bd21d6e5471bc830654fb07b33,0073de23aefbc5bd21d6e5471bc830654fb07b33,"Reduce the ""in touch with the powers of death"" effect to one boost at xl 6,",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ecf486f921ceaa06af4252191b97f3017057f74a,ecf486f921ceaa06af4252191b97f3017057f74a,"This needs flavour messages, and looks odd for large power because",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ab0485a9c1fe6dde6bc11d7655ed92fc57a0177b,ab0485a9c1fe6dde6bc11d7655ed92fc57a0177b,"Change calculation of power, so high values are easier to ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8584fe07d8171983ab8a51d0f85e096a2565d4f2,8584fe07d8171983ab8a51d0f85e096a2565d4f2,summoned by your god's power are also included.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/160795e120184775ee58bdb01a12b42895c3f62a,160795e120184775ee58bdb01a12b42895c3f62a,Improved recite. It now directly compares power (calculated using Invocations,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/54022e5775e364b6be880373b9603f9094f20525,54022e5775e364b6be880373b9603f9094f20525,I think the power formula will have to be tweaked.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b8ba267261e0586c01fad1c5f280d1fd16cd44ca,b8ba267261e0586c01fad1c5f280d1fd16cd44ca,"Implement 1829910: Make Daevas fully resist negative energy, with the",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/ea74f11cfb8f8ff1bc47473447b9ee76419c36e9,ea74f11cfb8f8ff1bc47473447b9ee76419c36e9,"Zin's is, so that it doesn't overwrite his fourth power.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/7351857a9a93080e85cc0fc6a87a5571cb1dadcc,7351857a9a93080e85cc0fc6a87a5571cb1dadcc,"about the ""You are blasted by holy energy!"" bit in the commit below.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6bc2ed8d726d40e06198a96719d0b7457c53a284,6bc2ed8d726d40e06198a96719d0b7457c53a284,"Like Makhleb, TSO now gets returning power (arguable) and hp from ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/eb4256db695f6930f160b5bf6cedfaaff712963f,eb4256db695f6930f160b5bf6cedfaaff712963f,Removed most instances of direct access to monsterentry for monster energy updates.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6af0738c8730e4a831f10259ebb9a24e8beea48d,6af0738c8730e4a831f10259ebb9a24e8beea48d,"Allow javelins of returning. Since these are powerful, make them as ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d330ba31b0935cd5170df246f176beaf6504f3ce,d330ba31b0935cd5170df246f176beaf6504f3ce, least those that draw their power from Yred).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9d4fedd31985fd009b5ef5d7f7a8879ff3628e08,9d4fedd31985fd009b5ef5d7f7a8879ff3628e08,Dance now generates less good weapons with low power and better ones,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b3a3163e2b48e0ea058490e452feab7e52f7a7b9,b3a3163e2b48e0ea058490e452feab7e52f7a7b9,"get the power level for summon_berserker(), and the ""quick reduction for ",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/be6a0a38de9cba44caca289f155d46df6324d0a5,be6a0a38de9cba44caca289f155d46df6324d0a5,Changed ornate/legendary bonuses from percentages to flat power bonuses,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9900519da2e82cd53d532f5b8b98923aaecd3fe9,9900519da2e82cd53d532f5b8b98923aaecd3fe9,Monochromatized spell power bars.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/64b141991066a155ff820ffdc30e919550b9a8cd,64b141991066a155ff820ffdc30e919550b9a8cd,1822982: slightly better spell power string.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/5006d9b274c850a3af4768439c23af0827f55077,5006d9b274c850a3af4768439c23af0827f55077,Weakened control demon demonspawn power (syllogism).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/8392b67ef4de1321bc73b224647d400de1cb1ff4,8392b67ef4de1321bc73b224647d400de1cb1ff4,"Added cset_unicode to options texts (V-Napkin), fixed staff of energy not working for transformations (syllogism).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c04f1e2e70434d149a12d097f79efb9178e593ef,c04f1e2e70434d149a12d097f79efb9178e593ef,[1813368] Makhleb/Vehumet passive power gain now active without needing to pray. Vehumet's spell boost and warding must still be prayed for.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/f1e3ca24060130e0c9205de20e367bcf814896d1,f1e3ca24060130e0c9205de20e367bcf814896d1,Fix problem of friendly monsters not using any energy when there's,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b50185bac38de855ff1423242390d338ee35045f,b50185bac38de855ff1423242390d338ee35045f,energy units (cloud processing for zero speed monsters is still handled,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/bd19eb507dcd40d235ab26ae68c7d091aaeecb65,bd19eb507dcd40d235ab26ae68c7d091aaeecb65,Fix bad merfolk energy.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a3ba5a8ee29de19bb37c6718f56f5f184d58be6a,a3ba5a8ee29de19bb37c6718f56f5f184d58be6a,"energy_usage, which lets a monster take different amounts of time for",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/37bace0de351260e14b6e1102e2f8f101d2bb162,37bace0de351260e14b6e1102e2f8f101d2bb162,* Equpping or unequipping a ring of magical power or staff of power will,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/a753bdc6027688c12ad6c27a6952947713c8c7c0,a753bdc6027688c12ad6c27a6952947713c8c7c0,Adjust piety costs for various god powers.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/199b2241051800452e39e096375b48fd5c57a013,199b2241051800452e39e096375b48fd5c57a013,Fixed bad magic points calculation when levelling up with a worn item of magical power (V-Napkin).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/1d7f8789b3b9605b8d7692c709a69c7fb429cc6e,1d7f8789b3b9605b8d7692c709a69c7fb429cc6e,"[1808560] Staff of power unwield was not removing max mp bonus, fixed.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b01c84211a1f8bb59391dff857c2dd6c1a74c23a,b01c84211a1f8bb59391dff857c2dd6c1a74c23a,entomb() now has a power which determines the probability of building,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/d733df05e5309444cb83c028c0515467c87ae4c6,d733df05e5309444cb83c028c0515467c87ae4c6,- Nemelex card power bonus now applies even when not praying,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/55772ba95bacafb30770fcddf422da5cdc8038d9,55772ba95bacafb30770fcddf422da5cdc8038d9,The latter is very powerful as it explicitly allows burning,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6f33d4ae99cf5fe3eb0e5be1ec213ac642c6e2ff,6f33d4ae99cf5fe3eb0e5be1ec213ac642c6e2ff,"Fixed broken instant-Lugonu-access-to-first-power (dolorous, 1758116)",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b2785dc1f36e4f1dae161a3207ac25e083ba68b1,b2785dc1f36e4f1dae161a3207ac25e083ba68b1,Functionally: this means that the randart magic mapping power can no,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/c6eeb1565529f5dbccf20abfabfc413032667a2c,c6eeb1565529f5dbccf20abfabfc413032667a2c,- Upped player abjuration power slightly. May need more tuning.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/22d0bf1834360c8c1776f96049da60aad15c14b9,22d0bf1834360c8c1776f96049da60aad15c14b9,check (against your Confusing Touch casting power at the time of hitting,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/00bb42dc5e7570932126361340420b339c0e265c,00bb42dc5e7570932126361340420b339c0e265c,"Coloured power display. This is, for now, a rather extreme hack.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/06000612f935e9e431ef2cab3dc00cf9022fe69b,06000612f935e9e431ef2cab3dc00cf9022fe69b,Initial spell-power-bar implementation (1746561). No colours yet.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/2b2a5958399c551e7643237bc6b519d299bad164,2b2a5958399c551e7643237bc6b519d299bad164,showing schools/success and hunger/power.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b522bd978abce30b8c0050d9bbff87611aada298,b522bd978abce30b8c0050d9bbff87611aada298,Removed extra space in surge-of-power messages (Erik).,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/cfda69d1ae94baf5e41b318ffd00dd227f8ddf69,cfda69d1ae94baf5e41b318ffd00dd227f8ddf69,Spell power strings now reflect power caps.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/710d9c281052573fbd29d280f06e621b03b843f3,710d9c281052573fbd29d280f06e621b03b843f3,"Demonspawn control demon power was ridiculously overpowered, fixed (Juha).",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/09368bdee93d7cfeef2f2f6483a3d301239a6bff,09368bdee93d7cfeef2f2f6483a3d301239a6bff,Added an invocable power to train Invocations for Lugonu (previously the first,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/6738ceef646e7cefd453943524cffec775b4c1ab,6738ceef646e7cefd453943524cffec775b4c1ab,"Fixed bug 1636467, sometimes monsters were getting no energy.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/581632aadc5ff2a60ffb15ce93685b43b4dfb26e,581632aadc5ff2a60ffb15ce93685b43b4dfb26e,Fix TSO power message from divine anger to cleansing flame.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/9e60965993a1db7b6c5afc22f89eff0915950a9b,9e60965993a1db7b6c5afc22f89eff0915950a9b,"We may also need to weaken cleansing flame. It seems very powerful, much more",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/605ad1a626360b651b73805372bf74453a6f2410,605ad1a626360b651b73805372bf74453a6f2410,"More streamlining, this time of code which shows power and spell failure.",commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/b0d7452e9ca09372b8db3e7fd82714dd9f393c7a,b0d7452e9ca09372b8db3e7fd82714dd9f393c7a,Clarify intent of ench_power change.,commit_message
CliffsDover,crawl,https://github.com/CliffsDover/crawl/commit/50b3b3bf0e04295e4c039fe3986e4b08cfde6bc0,50b3b3bf0e04295e4c039fe3986e4b08cfde6bc0,Refix ench_power.,commit_message
Lyndir,Gorillas,https://github.com/Lyndir/Gorillas/commit/45f4cf84a2920280c5bf6c6d980ff652c5917007,45f4cf84a2920280c5bf6c6d980ff652c5917007, scale. pixelWidth includes power-of-2 padding.,commit_message
Lyndir,Gorillas,https://github.com/Lyndir/Gorillas/commit/cb7bb4684b4fb63cd805a33012bc16893366a120,cb7bb4684b4fb63cd805a33012bc16893366a120,Misc bug fixes + add angle & power numbers,commit_message
gamechina,GrubbyWorm,https://github.com/gamechina/GrubbyWorm/commit/754edbeb06501ce659473fae2d6a1daa3e489053,754edbeb06501ce659473fae2d6a1daa3e489053,add energy bar dropping logic,commit_message
gamechina,GrubbyWorm,https://github.com/gamechina/GrubbyWorm/commit/75bd7caed071de8a8883c2c627df78346f29e047,75bd7caed071de8a8883c2c627df78346f29e047,"add crazy state, and sound, and energy handler",commit_message
gamechina,GrubbyWorm,https://github.com/gamechina/GrubbyWorm/commit/38bd4c704d1e29188a8374f270f94d35a8bd4c92,38bd4c704d1e29188a8374f270f94d35a8bd4c92,add energy bar delegate and dropping control,commit_message
gamechina,GrubbyWorm,https://github.com/gamechina/GrubbyWorm/commit/aa57ddd0aeabf4389a6737253643242aebe07d41,aa57ddd0aeabf4389a6737253643242aebe07d41,add moodbar and energybar,commit_message
herzbube,littlego,https://github.com/herzbube/littlego/issues/312,312,"* The user may wish to calibrate the in-game playing strengths against his own rating scale. This is not only a question of individual taste, there is a real difference between playing strengths on different devices. In general, the more number-crunching power a device has the stronger it is, because it can calculate more moves in the same amount of time than a less powerful device.",pull_request
herzbube,littlego,https://github.com/herzbube/littlego/issues/164,164,"I do have one quick question if you have time: what's the role of fuego in a human-vs-human game? I see that by default fuego thread uses 100% CPU after a handful of moves when i play human-vs-human. It seems to be the pondering. I think that due to the use of the ""default"" fuego profile set to maximum strength, the app uses lots of power/battery pondering, but i can't find a good reason for it to think so hard. I suspect there's a good reason fuego is busy even though it doesn't get to play, such as in case the user hits the ""computer play"" button, but i thought i would check. (in game centre match, i expect to hide the computer play button - no cheating!)",pull_request
herzbube,littlego,https://github.com/herzbube/littlego/issues/33,33,"The drawback is that this also makes handling of new game settings more complicated for the average user. If this is implemented at all, it should be made into an opt-in feature that power users can enable, but average users should be able to ignore.",pull_request
adamwulf,spare-parts-app,https://github.com/adamwulf/spare-parts-app/issues/13,13,new part idea: powered wheel,pull_request
ResearchKit,mPower,https://github.com/ResearchKit/mPower/commit/cbc7dd265c05bfb727dccf0624e8af341e023e51,cbc7dd265c05bfb727dccf0624e8af341e023e51,Merge pull request #6 from PacificCoaster/mpower-peculiar-henry-branch,commit_message
ResearchKit,mPower,https://github.com/ResearchKit/mPower/commit/743d8a7014442b2774ee334fd39f3a28019eee7c,743d8a7014442b2774ee334fd39f3a28019eee7c,Merge pull request #5 from PacificCoaster/mpower-peculiar-henry-branch,commit_message
ResearchKit,mPower,https://github.com/ResearchKit/mPower/commit/322474dbab11080739eb6ed158aa787530488a2d,322474dbab11080739eb6ed158aa787530488a2d,Merge pull request #4 from PacificCoaster/mpower-peculiar-henry-branch,commit_message
ResearchKit,mPower,https://github.com/ResearchKit/mPower/commit/e023d4f41d9b566e45ed0da81125c92a4af5ce68,e023d4f41d9b566e45ed0da81125c92a4af5ce68,Merge pull request #3 from PacificCoaster/mpower-peculiar-henry-branch,commit_message
LocativeHQ,Locative-iOS,https://github.com/LocativeHQ/Locative-iOS/issues/72,72,"I power Mini Cooper 24844/46429",pull_request
LocativeHQ,Locative-iOS,https://github.com/LocativeHQ/Locative-iOS/issues/71,71,"I power Mini Cooper 24844/46429",pull_request
LocativeHQ,Locative-iOS,https://github.com/LocativeHQ/Locative-iOS/issues/50,50,"This is not a bug and the arrow is no indicator if an app drains your battery by e.g. using GPS, if that's your concern please refer to the battery usage section and see that Locative isn't using much battery.",pull_request
LocativeHQ,Locative-iOS,https://github.com/LocativeHQ/Locative-iOS/issues/29,29,"Interesting, wonder how you could set that up without too much battery drain.",pull_request
OneBusAway,onebusaway-iphone,https://github.com/OneBusAway/onebusaway-iphone/issues/1188,1188,"Microsoft just published publicly the Swift/iOS versions of the Embedded Social libraries that power Embedded Social in OBA Android:",pull_request
OneBusAway,onebusaway-iphone,https://github.com/OneBusAway/onebusaway-iphone/issues/872,872,I bet I could do this pretty easily and without a lot of battery impact by geofencing the destination. here's a library that looks like it could help with the geofencing: https://github.com/benzamin/BBLocationManager,pull_request
OneBusAway,onebusaway-iphone,https://github.com/OneBusAway/onebusaway-iphone/issues/375,375,"Seems like unnecessary extra work. If someone wants to submit a PR with that functionality, more power to them—I'd be happy to accept it. Or, if they request the feature and have the time to wait, that's cool too.",pull_request
owntracks,ios,https://github.com/owntracks/ios/commit/04f9c095fc39ca7a444afba6a2eaba19f7bcb18d,04f9c095fc39ca7a444afba6a2eaba19f7bcb18d,[FIX] reduce CPU/battery usage for background connections,commit_message
owntracks,ios,https://github.com/owntracks/ios/issues/436,436,"I think it'd be handy if the application automatically switches to move mode, when it's connected to a power supply. When the device is no longer being charged and running on battery power, or drops under let's say 50% of battery charged, switch back to the previous mode or even to significant location changes mode. This will need an extra toggle in Settings.",pull_request
owntracks,ios,https://github.com/owntracks/ios/issues/426,426,"This still works even in manual mode (nice work!!) but I notice that it still uses extra battery, then when I'm not in the office.",pull_request
owntracks,ios,https://github.com/owntracks/ios/issues/388,388,"As far as I know from the iOS documentation, Significant Changes Mode (SCM) relies on Wifi and Cell tower positioning, which are both off in Airplane mode. In SCM, GPS is not used to save battery.",pull_request
kiliankoe,ParkenDD,https://github.com/kiliankoe/ParkenDD/commit/0549ea2819551b479b77cc1b75e142fabac46d34,0549ea2819551b479b77cc1b75e142fabac46d34,powered by Google Forms,commit_message
artsy,eigen,https://github.com/artsy/eigen/commit/5e00185dd0d8bfb66fe7cf47fb34b141d6844c9d,5e00185dd0d8bfb66fe7cf47fb34b141d6844c9d,[CircleCI] See if we have sudo power and if it silences keychain.,commit_message
artsy,energy,https://github.com/artsy/energy/commit/7b92d88769f97088388378b77dde72915906db9e,7b92d88769f97088388378b77dde72915906db9e,Merge branch 'beta' of https://github.com/artsy/energy into orta-estimates,commit_message
artsy,energy,https://github.com/artsy/energy/commit/0216c038b81b40c4759cd6f7bed1680c52104874,0216c038b81b40c4759cd6f7bed1680c52104874,Merge branch 'master' of github.com:artsy/energy,commit_message
artsy,energy,https://github.com/artsy/energy/commit/ad6072be47d748198f99a51a71e1a8e4a975f263,ad6072be47d748198f99a51a71e1a8e4a975f263,Merge branch 'orta-multi_artists' of github.com:artsy/energy into multi_artists,commit_message
artsy,energy,https://github.com/artsy/energy/commit/b27cf2bc5e14a6e7d8600bd3c2eec339457f3e96,b27cf2bc5e14a6e7d8600bd3c2eec339457f3e96,Merge branch 'master' of github.com:artsy/energy into release_merge,commit_message
artsy,energy,https://github.com/artsy/energy/commit/cb514fe89a5ceb2b941a179e0542234dac68f239,cb514fe89a5ceb2b941a179e0542234dac68f239,Merge branch 'master' of https://github.com/artsy/energy into sarah-sync-notifications-comeback,commit_message
artsy,energy,https://github.com/artsy/energy/commit/bef6fcc366e2856470ce9ac33fc4e144bf0c463f,bef6fcc366e2856470ce9ac33fc4e144bf0c463f,Merge branch 'master' of https://github.com/artsy/energy into sarah-sync-status-bar,commit_message
artsy,energy,https://github.com/artsy/energy/commit/901d60cfb7902e3cddca0201abb94607451403dd,901d60cfb7902e3cddca0201abb94607451403dd,Merge branch 'master' of https://github.com/artsy/energy into sarah-settings-background-view-controller,commit_message
artsy,energy,https://github.com/artsy/energy/commit/9dca1cd12ee5e90eda40ecdc9c3b5d615427bb22,9dca1cd12ee5e90eda40ecdc9c3b5d615427bb22,Merge branch 'master' of https://github.com/artsy/energy into sarah-settings-email-view-controller,commit_message
artsy,energy,https://github.com/artsy/energy/commit/504e38b6722eba53e88208c75b2a1fdb2b2be3da,504e38b6722eba53e88208c75b2a1fdb2b2be3da,Merge branch 'master' of https://github.com/artsy/energy into sarah-settings-email-view-controller,commit_message
artsy,energy,https://github.com/artsy/energy/commit/b82ead9d0a19f9895bc2bdc847e9548a92a0e3c7,b82ead9d0a19f9895bc2bdc847e9548a92a0e3c7,Merge branch 'master' of https://github.com/artsy/energy into sarah-edit-presentation-mode-vc,commit_message
artsy,energy,https://github.com/artsy/energy/commit/3887c873d7debcd2470baf990e2eaa60a870cb22,3887c873d7debcd2470baf990e2eaa60a870cb22,Merge branch 'master' of https://www.github.com/artsy/energy into sync-settings-vc,commit_message
artsy,energy,https://github.com/artsy/energy/commit/821a23ff270f92dd595eb044b91d877ed92d491d,821a23ff270f92dd595eb044b91d877ed92d491d,Merge branch 'master' of https://www.github.com/artsy/energy into changelog,commit_message
artsy,energy,https://github.com/artsy/energy/commit/cb5efa0c8ee6599fc4da0599ba87ec1f825bc29f,cb5efa0c8ee6599fc4da0599ba87ec1f825bc29f,Merge branch 'master' of https://github.com/artsy/energy into slather,commit_message
artsy,energy,https://github.com/artsy/energy/commit/a35969d232d8309fd2aedaae35f2dbdf6d505004,a35969d232d8309fd2aedaae35f2dbdf6d505004,Merge branch 'master' of github.com:artsy/energy,commit_message
artsy,energy,https://github.com/artsy/energy/commit/c6cc1928438e337444b1207a58dfb768747fcd3d,c6cc1928438e337444b1207a58dfb768747fcd3d,I am assuming you mean .energy file.,commit_message
artsy,energy,https://github.com/artsy/energy/issues/288,288,"Very old: https://github.com/artsy/energy-private/commit/a491364b4b98e750cf6c6f223dc42096762f182b",pull_request
artsy,energy,https://github.com/artsy/energy/issues/166,166,"Hrm, I don't think so, this issue wouldn't be able to happen if the OSS db wasn't working: https://github.com/artsy/energy/issues/149",pull_request
artsy,energy,https://github.com/artsy/energy/issues/90,90,https://github.com/artsy/energy/blob/master/Classes/Contexts/Finding%20and%20Searching/NSFetchRequest+ARModels.m#L17,pull_request
artsy,energy,https://github.com/artsy/energy/issues/58,58, [Energy: Private Collector accounts still see a 'Shows' tab on first login](https://trello.com/c/92f1H9Hp/642-energy-private-collector-accounts-still-see-a-shows-tab-on-first-login),pull_request
artsy,energy,https://github.com/artsy/energy/issues/32,32,- [ ] Add artists to search (https://github.com/artsy/energy/blob/master/Classes/Spotlight/ARSpotlightExporter.m#L68),pull_request
artsy,energy,https://github.com/artsy/energy/issues/13,13, [Energy: Default location not showing up for private collectors](https://trello.com/c/SHmUclo0/643-energy-default-location-not-showing-up-for-private-collectors),pull_request
swisspol,ComicFlow,https://github.com/swisspol/ComicFlow/issues/43,43,"If the image files inside the comic archive are really big, there's pretty much nothing that can be done. It's directly limited by the CPU power of the device.",pull_request
FlexMonkey,Filterpedia,https://github.com/FlexMonkey/Filterpedia/commit/47282645d06f847af0b5bbfaaddcd4ff9c0030f7,47282645d06f847af0b5bbfaaddcd4ff9c0030f7,Implemented two new Metal powered CIFilters: MetalPixellateFilter and MetalKuwaharaFilter which subclass MetalFilter and use a compute function as their engine,commit_message
alecgorge,PhishOD-iOS,https://github.com/alecgorge/PhishOD-iOS/issues/79,79,"This app is so amazing--I always use it to stream phish to my stereo. Would be great to not need to use Airplay, which sucks the battery. Sending it to chromecast would be a useful option if you have any interest in that direction (I'd certainly pay an in-app purchase for the feature). Thanks for making this app!",pull_request
videolan,vlc,https://github.com/videolan/vlc/commit/6c643e6f18f93d79f7ff0f6f294d89f18e182fbb,6c643e6f18f93d79f7ff0f6f294d89f18e182fbb,stream_extractor in order to save CPU (and more importantly battery life on,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/9b475d30d801776e76cb85f7ce38f404f88dec1a,9b475d30d801776e76cb85f7ce38f404f88dec1a,NoDisplay power assertion needs to be hold also in case input item,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/2d099490eefa3cebc22279d00791b9d1d7c0b2ba,2d099490eefa3cebc22279d00791b9d1d7c0b2ba,and was incompatible with race-to-idle power management.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/e76e8639d48f1b33e239082521c9e6319af86379,e76e8639d48f1b33e239082521c9e6319af86379,macosx: fix drawing the search field at 60fps and wasting enormous amounts of battery when blinking (close #11067),commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/7655d6c889d2425c1fd4615f7e2692df1a47470c,7655d6c889d2425c1fd4615f7e2692df1a47470c,powersaving (marginally as there isn't network activity that often).,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/84fd16d63cffc0c83baf985df5e4da6c5deebd56,84fd16d63cffc0c83baf985df5e4da6c5deebd56,build: fix powerpc detection,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/d40464cb3d0b7340dedf720210c72f0ba331748d,d40464cb3d0b7340dedf720210c72f0ba331748d,build: detect variants of powerpc host_cpu (such as powerpc64),commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/d2495a02b0f47cf40970f8cdf170161ce82d5a3a,d2495a02b0f47cf40970f8cdf170161ce82d5a3a,opengl: Handle subpicture textures being aligned to power-of-two dimensions,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/a7413eadafcc876d52f6836092f0914d4b09840a,a7413eadafcc876d52f6836092f0914d4b09840a,"opengl: enforce use of non-power-of-2-textures when drawing using Open GL ES 2, since those are supported by specification",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/e98d0a823f78f47eed42dad40e33dfd04816026d,e98d0a823f78f47eed42dad40e33dfd04816026d,It seems to be better for the machines with lying power-improvement,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/97a7b7ec1790203a5872b292ce52fa0a8692e4d4,97a7b7ec1790203a5872b292ce52fa0a8692e4d4,dbus_screensaver: rename from power,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/1e1f01298b1032e22087e9fefeef9fb272860724,1e1f01298b1032e22087e9fefeef9fb272860724,power: use non-blocking DBusPendingCall instead of short timeout,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/11fdcca2be709bd5a74ed2e75c8d644dc1f094c6,11fdcca2be709bd5a74ed2e75c8d644dc1f094c6,power: probe D-Bus services and return error if none are found,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/5520e829a094c335e085c94131cd8f3e4ba0e991,5520e829a094c335e085c94131cd8f3e4ba0e991,power: really localize reason,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/77dae5bceb03ec039745c67275893a52081b9adc,77dae5bceb03ec039745c67275893a52081b9adc,power: cosmetic revector,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/342a38f0b973fad378acc279c113a54405f5260e,342a38f0b973fad378acc279c113a54405f5260e,Win32: try to fix the power management issues.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/e01424acd44141db822e671a34e59f37e1d07cd3,e01424acd44141db822e671a34e59f37e1d07cd3,"Previously, the OS automatically switched from integrated graphics to dedicated ones as soon as VLC is launched since it is using OpenGL. Of course, that's wrong, since VLC runs quite nicely on the integrated ones to draw its single texture, so there is no need to waste battery life on the dedicated card.",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/6f8c945b940ca5c398d2fb20e1ee4983e1c9feb4,6f8c945b940ca5c398d2fb20e1ee4983e1c9feb4,Fix compilation due to missing headers on OpenBSD/powerpc,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/f4816ca7653df5161eb8f368722ae50d6e4202b4,f4816ca7653df5161eb8f368722ae50d6e4202b4,v4l2: add automatic power line frequency detection,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/714ba1f156ec4bf1e69ae668f5c9d8447716c169,714ba1f156ec4bf1e69ae668f5c9d8447716c169,Fix uninhibiting gnome power manager,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/031832b073a007703bc3239c4689562d0cf9439c,031832b073a007703bc3239c4689562d0cf9439c,inhibit: start inhibiting power suspend as soon as input changes,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/5c484febaf6e0f7eb01336c696f315f8b1e79eee,5c484febaf6e0f7eb01336c696f315f8b1e79eee,inhibit (power management) : supports gnome-session >= 2.27,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/fba893a1a379627546a2adccc75d77e409c694dc,fba893a1a379627546a2adccc75d77e409c694dc,httplive module takes all cpu power when playing live stream,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/0a5dcfefe87ade9c9f903ada0ab4df5ccbfcb205,0a5dcfefe87ade9c9f903ada0ab4df5ccbfcb205,non power of 2 textures are supported.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/2a98d120084ee14a08b6d3267c8c9eee8ab3648e,2a98d120084ee14a08b6d3267c8c9eee8ab3648e,"Improved ""non power of 2"" texture support detection (opengl).",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/25defa036a23120eb76f90a93f09745fbd096780,25defa036a23120eb76f90a93f09745fbd096780,contribs: powerpc-apple-darwin9 is macosx32,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/aa9ba2d5df9b2885d9deecb81c7434cb9c1f2417,aa9ba2d5df9b2885d9deecb81c7434cb9c1f2417,"In theory this can also be used on Mac OS X as well, but for now it's not as powerful as the existing CoreAudio driver.",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/f210514c93fdd60103f2c203d656b83da1ecda51,f210514c93fdd60103f2c203d656b83da1ecda51,Add AltiVec detection for OpenBSD/powerpc.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/ef61df309612786ed316534908978a2a9340e154,ef61df309612786ed316534908978a2a9340e154,system tick count is causing worse problems with power saving features.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/cb435e2774e43702c7b23ce9fd5bd303e300212e,cb435e2774e43702c7b23ce9fd5bd303e300212e,"Add libvlc_set_exit_handler(), more powerful than libvlc_wait()",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/c288689c5aa3ff5bc9292646b7196d744df6e438,c288689c5aa3ff5bc9292646b7196d744df6e438,Skins2: Move method bodies with inline tags to before where they're needed. Drop const in favour of static on power() and instead of recursing(!) make it use powf().,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/6bbab18df4f2adb530fed7a9f2ffef11ad3cf654,6bbab18df4f2adb530fed7a9f2ffef11ad3cf654,Make INPUT_FSTAT_NB_READS a power of two to ease division,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/5d0553056f675c75af2124810585390fdf2b0fd1,5d0553056f675c75af2124810585390fdf2b0fd1,"possible. Hopefully, this will reduce choppiness, as well as power",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/87bc70075835e1b2f22b611e63f251dd8cb153af,87bc70075835e1b2f22b611e63f251dd8cb153af,power management inhibit: uninhibit only once,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/1995f882d45bf8f9bd167f9ba549ca7d1efb664e,1995f882d45bf8f9bd167f9ba549ca7d1efb664e,New inhibit module to prevent the power management daemon (usually gnome-power-manager) to suspend/hibernate the laptop while VLC is active.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/bfae05bed10bde12544a22a2aaee6edad23c8062,bfae05bed10bde12544a22a2aaee6edad23c8062,"* added ugly, but working support for future, powerpc-based darwin releases. this doesn't support intel-Macs yet",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/ad54c6e1630f93f8cce323beaec36d41470eed98,ad54c6e1630f93f8cce323beaec36d41470eed98," * src/misc/cpu.c: do not assume SYS_DARWIN means powerpc, so that we can",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/a504fae36cad1af4fc65f9829cedd892da262ed7,a504fae36cad1af4fc65f9829cedd892da262ed7,"* include/vlc_filter.h, vlc_video.h, src/video_output/vout_subpictures.c: new simpler and more powerful text renderer api.",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/e9c3dc587ec1d80126027d1954e4006f28ca39b8,e9c3dc587ec1d80126027d1954e4006f28ca39b8,"* fix the ebml and matroska downloads. added toolame target, but not enabled, since toolame is worse than ffmpeg when it comes to makefiles... (""it needs sam power"").",commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/b01678980b0276097f8597e7f9740bb381742830,b01678980b0276097f8597e7f9740bb381742830, + support for non-power-of-2 sizes,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/fcda0753a0bfb95bc3dc60da98edf38faaa3454c,fcda0753a0bfb95bc3dc60da98edf38faaa3454c, make dist might still be broken? This makefile could use some sam power.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/d904d698cbdfac9b78d6619a1fb04983961fe6c3,d904d698cbdfac9b78d6619a1fb04983961fe6c3,* modules/video_output/directx/events.c: prevent monitor power down when the directx vout is running.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/496c6c038fac3cff9edfb8816d891527702568c2,496c6c038fac3cff9edfb8816d891527702568c2, - it is not so powerful as --sout (does not allow for multiple unicasts ie),commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/4dec9682f6b5b0b6ed2d5187f4652cb680f39000,4dec9682f6b5b0b6ed2d5187f4652cb680f39000,unstable but a lot more powerfull.,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/d25c5e06f0d064ac6bb7ee1bf77c92cf3946decd,d25c5e06f0d064ac6bb7ee1bf77c92cf3946decd, _lot_ of CPU power).,commit_message
videolan,vlc,https://github.com/videolan/vlc/commit/c45d72198afd1e4eee98a7cbdca90688d1e93511,c45d72198afd1e4eee98a7cbdca90688d1e93511, * added hints for powerpc build.,commit_message
wikimedia,wikipedia-ios,https://github.com/wikimedia/wikipedia-ios/commit/23888e61c321b3fa5c34770dc73f6ec768f60a0c,23888e61c321b3fa5c34770dc73f6ec768f60a0c,Fix landscape regression from last commits. Hide battery indicator.,commit_message
wikimedia,wikipedia-ios,https://github.com/wikimedia/wikipedia-ios/commit/4abe5acede687155ecb13bafa071443c7dcef5fc,4abe5acede687155ecb13bafa071443c7dcef5fc,- Add properties and delegate API to WMFArticleViewController to power the WMFArticleBrowserViewController,commit_message
wikimedia,wikipedia-ios,https://github.com/wikimedia/wikipedia-ios/commit/72c933d310e536fc4b6ededccee8ce36100f00d9,72c933d310e536fc4b6ededccee8ce36100f00d9,change distance filter… wasn't helping battery life anyways.,commit_message
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/commit/b879d00ebd5b4d3cfb554aea472da52dbab5e333,b879d00ebd5b4d3cfb554aea472da52dbab5e333,request loop and wasting CPU cycles (and battery). Now we'll pretend it,commit_message
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/commit/c3c4c482cf69d148374c017efdf214081a59bf6e,c3c4c482cf69d148374c017efdf214081a59bf6e, Pods/Helpshift/helpshift-sdk-ios-v4.8.0/HSResources/HS-powered-by-logo.png,commit_message
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/commit/d352ebee47ad6d0136211b5af2699494eeb74f19,d352ebee47ad6d0136211b5af2699494eeb74f19, Pods/Helpshift/helpshift-sdk-ios-v4.8.0/HSResources/HS-powered-by-logo.png,commit_message
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/commit/1140b1ddf492ee31a8e8deaa63d313d2da7dbadb,1140b1ddf492ee31a8e8deaa63d313d2da7dbadb,- Detect powerpoints and default is 'document',commit_message
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/issues/6801,6801,Editor: High energy impact during post edition,pull_request
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/issues/6040,6040,0x183852000 - 0x183852fff libenergytrace.dylib arm64 <2cfdece2a96330968c249f7d9e7811ad> /usr/lib/libenergytrace.dylib,pull_request
wordpress-mobile,WordPress-iOS,https://github.com/wordpress-mobile/WordPress-iOS/issues/3737,3737,"Also related: long video uploads. This is a hard problem to solve. From what I last know, Apple's watchdog (guard prevent apps from using too much battery in the background) only gives a 10 minute window max to allow for background processes to finish. 24 minutes of video, depending on the quality, can easily exceed that. Google Photos solves this by showing a pop up saying ""Please stay on this app for optimal uploading of photos"".",pull_request
KhaosT,HomeKit-Demo,https://github.com/KhaosT/HomeKit-Demo/issues/34,34,"Apple Watch, iOS9. Light power state does not update",pull_request
Lyndir,MasterPassword,https://github.com/Lyndir/MasterPassword/issues/151,151,"In the FAQ the number of hashes per second is based on an GPU card. But Bitcoin use the same hash algorithm as MasterPassword. And Bitcoin miners use [ASIC (Application-specific integrated circuit)](https://en.wikipedia.org/wiki/Application-specific_integrated_circuit). These can do only one thing, extremely fast, and for less power cost than a CPU or GPU. ASICs used for bitcoin hash the header of blocks with hmac-sha256.",pull_request
MiniKeePass,MiniKeePass,https://github.com/MiniKeePass/MiniKeePass/issues/481,481,"My galaxy nexus phone is using a database that has 100K rounds and it seems to be almost instantaneous when decrypting my database/saving it. #I also have the cpu set at 920Mhz isntead of the default 1.2ghz to increase battery life.",pull_request
MiniKeePass,MiniKeePass,https://github.com/MiniKeePass/MiniKeePass/issues/183,183,"For added safety, it would be possible to do e.g. a checksum of the file on DropBox before updating the database, and then verify the DropBox checksum hasn't changed before overwriting it. That would avoid potential problems with updating a password on one device that is offline (e.g. dead battery) and then updating it on another online device before the offline device is sync'd again. If the checksum changes, the new file can be written with a new filename (e.g. {dbname}-date.kdb) and let the user work it out.",pull_request
MiniKeePass,MiniKeePass,https://github.com/MiniKeePass/MiniKeePass/issues/161,161,"For me, and I'm sure many others, the comments field is the most important. It makes software like this powerful and flexible with the ability to store and peruse many types of information. Scrolling is a nuisance and hides information that doesn't fit. Ideally, the comments field would expand to fit. But, id that's not feasible, then 16 rows is a good compromise.",pull_request
MiniKeePass,MiniKeePass,https://github.com/MiniKeePass/MiniKeePass/issues/95,95,"another possibility, which would be simpler but not as powerful, would be to implement and import into, and whenever you are adding entries, you can simpky create a new database with just one entry and then later on import that into your master file.",pull_request
CatchChat,Yep,https://github.com/CatchChat/Yep/commit/da0de9f8b6d008a0e4545a19113f7a184ecbdf6c,da0de9f8b6d008a0e4545a19113f7a184ecbdf6c,More details on low power,commit_message
todotxt,todo.txt-ios,https://github.com/todotxt/todo.txt-ios/issues/173,173,"Instead of requiring the user to manually type in a Dropbox file path, let them tap through a Dropbox-powered folder browser to choose the folder where their todo.txt file lives.",pull_request
appsquickly,Typhoon-Swift-Example,https://github.com/appsquickly/Typhoon-Swift-Example/issues/2,2,"Currently Swift applications can only plist bootstrapping. Fine for full-Typhoon powered apps. . the are some ugly quirks to manual instantiation of Typhoon (libraries, tests, etc). ",pull_request
aharren,CardDecks,https://github.com/aharren/CardDecks/commit/7710762db13196c7372d7603db25e8bd92527771,7710762db13196c7372d7603db25e8bd92527771,replace the card orientation keyboard extension with a more powerful text extension which also handles font sizes,commit_message
thomasfinch,GammaThingy,https://github.com/thomasfinch/GammaThingy/issues/14,14,"I'm trying to avoid using the common VoIP and audio tricks (as mentioned by @ANGOmarcello) to get background time because I want to have a minimal impact on battery life. Perhaps if the app is doing nothing else in the background the impact would be minimal, I haven't measured, but surely something like SBSetApplicationNextWakeDate would be the ideal.",pull_request
anthonya1999,GoodNight,https://github.com/anthonya1999/GoodNight/issues/78,78,"In application-wise, I would suggest that the iOS framework kit will just divide the gamma value evenly maybe by 10 minute block within a set timeframe of transition. So option of 1 hour transition beforehand the orangeness will adjust 6 times during the period. It will be even better if then we could choose the number of hour of transition in settings as well as transition blocks. That might runs a bit of battery there but I think it's totally worth it, for the better health.",pull_request
openstates,openstates-ios,https://github.com/openstates/openstates-ios/issues/108,108,"Legislator detail used to show the length of a legislator's term on their detail page (yes, length of a term, not how long they've served). The information powering that disappeared from the API a long time ago (looks like removal happened without API version change).",pull_request
owncloud,ios,https://github.com/owncloud/ios/issues/1013,1013,"2018-01-25 22:02:03.495272+0800 Owncloud iOs Client[647:132398] <0x1c40745c0 CheckAccessToServer.m:(67)> _isConnectionToTheServerByUrl_ URL Status: |https://www.machinepower.cn/owncloud/status.php|",pull_request
owncloud,ios,https://github.com/owncloud/ios/issues/1002,1002,"@jesmrec sorry last night there was a power outtage, it is a home server so I got no UPS whatsoever, try again it should work perfectly I have used it this morning.",pull_request
owncloud,ios,https://github.com/owncloud/ios/issues/927,927,@nasli @pablocarmu @ggdiez Have you considered using [Collection Views](https://developer.apple.com/documentation/uikit/views_and_controls/collection_views) instead of [Table View Cells](https://developer.apple.com/library/content/documentation/UserExperience/Conceptual/TableView_iPhone/TableViewCells/TableViewCells.html)? Sounds very powerful for our use case.,pull_request
owncloud,ios,https://github.com/owncloud/ios/issues/769,769,"My version of own cloud is running on a low powered NAS, so too many connections probably made it time out pretty easily.",pull_request
haawa799,WaniKani-iOS,https://github.com/haawa799/WaniKani-iOS/issues/9,9,"When I had to change my password to login into the site via my computer, the app wouldn't let me enter the new password. I then deleted the app off my phone, powered my phone on and off, and re-downloaded the app. However, then the Shiba didn't finish doing its thing at all. I've also updated the API key twice, and that didn't resolve the issue either. Any ideas at all?",pull_request
fokkezb,tracker,https://github.com/FokkeZB/Tracker/issues/4,4,"Helpful for simultaneous tracking & routing, but takes more battery so it should be optional either via settings or navigating in the UI.",pull_request
artsy,eidolon,https://github.com/artsy/eidolon/issues/238,238,"Should probably be async + storing tiles locally, [Energy](https://github.com/artsy/energy/blob/master/Classes/Artwork/Artwork%20%20Detail%20View/Zoom%20View/) does this.",pull_request
rambler-digital-solutions,rambler-it-ios,https://github.com/rambler-digital-solutions/rambler-it-ios/commit/2e1e59b3258f5f9fdcae9d09b89d579eb364160e,2e1e59b3258f5f9fdcae9d09b89d579eb364160e,Moved from IndexIdentifierFormatter to more powerful ObjectTransformer,commit_message
dennisreimann,ioctocat,https://github.com/dennisreimann/ioctocat/issues/137,137,> git powered wiki with a sweet API,pull_request
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/399011a4fa8e880b48dc049e856515131245be26,399011a4fa8e880b48dc049e856515131245be26,"Add frontend, battery level and memory amount detection to 3ds port",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/74c85063911064da92ae19bda2b35d71e64cfab7,74c85063911064da92ae19bda2b35d71e64cfab7,"Add frontend, battery level and memory amount detection to 3ds port",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/d1dc2e9670c7bb735a91da63eadc6b559739abcf,d1dc2e9670c7bb735a91da63eadc6b559739abcf,"to teach a kid ""press the power button here to watch TV""; compared to",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/d5cdbca3228599952fe5e44b6d84a6863e88f946,d5cdbca3228599952fe5e44b6d84a6863e88f946,"to teach a kid ""press the power button here to watch TV""; compared to",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/bd8ecd9dfdc2f1f06116eb1f992e0565f6b95127,bd8ecd9dfdc2f1f06116eb1f992e0565f6b95127,Merge pull request #4595 from libretro/revert-4592-fix/robloach/battery-clock-scale,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/890f28ae719760daddb0d3ead665dcec873f74ca,890f28ae719760daddb0d3ead665dcec873f74ca,Merge pull request #4592 from RobLoach/fix/robloach/battery-clock-scale,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/1ef482d6dfa88d06c585d6f1bd7a521fabf37747,1ef482d6dfa88d06c585d6f1bd7a521fabf37747,Apply icon scaling to the battery and clock icons,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/2b25704d63887ffd7aa464be47e4d0f7b3200844,2b25704d63887ffd7aa464be47e4d0f7b3200844,fix battery charging status on linux,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/ede267805d9d34d230a2c7c24478a190be375e19,ede267805d9d34d230a2c7c24478a190be375e19,fix memory leak in linux battery check,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/76ada44fb032507fa0a744887244879c0a879e57,76ada44fb032507fa0a744887244879c0a879e57,(task_powerstate.c) Cleanup,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/e23fe909dde6ecfc61755cbd5e11b3f632a6e0c9,e23fe909dde6ecfc61755cbd5e11b3f632a6e0c9,Add task_powerstate.c to Griffin,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/3449324ab433d7a051e15ec11b9041c1538e1c73,3449324ab433d7a051e15ec11b9041c1538e1c73,move battery level to the right of the clock,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/d20f45c9d48c0fe6ab8431ca03bb9ae932685888,d20f45c9d48c0fe6ab8431ca03bb9ae932685888,make battery level check into a task,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/1f450834ed0b188ce24748bc4b2ede8af4cf1a09,1f450834ed0b188ce24748bc4b2ede8af4cf1a09,unknown battery level on windows should not be displayed,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/1942d29a338b964c180aeb08355a1ba7317fff6e,1942d29a338b964c180aeb08355a1ba7317fff6e,battery placement,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/9e50b6fc44b0c62f263567d077a718c6058e7cbe,9e50b6fc44b0c62f263567d077a718c6058e7cbe,Improve the battery placement again,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/24a34229a627e2c4983d7967b0980ecf979f2b3d,24a34229a627e2c4983d7967b0980ecf979f2b3d,Improve the battery placement again,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/ce27d38d0e53d5a6e373af968641d5c9d01abdc5,ce27d38d0e53d5a6e373af968641d5c9d01abdc5,Fix battery placement,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/9a0c7f4a07a93e501d5c5dbacd8f17daab0c6669,9a0c7f4a07a93e501d5c5dbacd8f17daab0c6669,Merge pull request #4281 from bparker06/battery,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/94a6e759cf3a368079c7eee8631ee3b3bd39b7d6,94a6e759cf3a368079c7eee8631ee3b3bd39b7d6,merge battery branch into master,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/5945b8d8889e0b98b401a86e786784e1427d67d1,5945b8d8889e0b98b401a86e786784e1427d67d1,"always show battery level, not just when it actually updates",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/51b988658660a45330d392bdf8beefcb8a039f92,51b988658660a45330d392bdf8beefcb8a039f92,add timer to check battery level every 30 seconds,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/1e5c6757025c3fbb5f013fa2be3d5e9bec2526ad,1e5c6757025c3fbb5f013fa2be3d5e9bec2526ad,adjust scaling/positioning for new battery icons,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/7aac7f986abf5193d9582eee9488457b9e0dc525,7aac7f986abf5193d9582eee9488457b9e0dc525,add option to show battery level next to the datetime in the menu,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/45d732a014d4611c2cf5f743c281dd3aa7025798,45d732a014d4611c2cf5f743c281dd3aa7025798,"client is underpowered but the other is fine, the powerful one will",commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/ca0634e16dd769f62193e27d15242ca0905a63d8,ca0634e16dd769f62193e27d15242ca0905a63d8,Check if file exists for all power management routines,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/2ea009d3018337f39411c78d169a21f74f2bef7c,2ea009d3018337f39411c78d169a21f74f2bef7c,Check if power management file exists first before trying to,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/8caee50fcd6029e24f159bfcbdeae1d07b7cb753,8caee50fcd6029e24f159bfcbdeae1d07b7cb753,(GX) Add way to handle power callback,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/4a08a3462cb15964049b6888e4748bf12bda004e,4a08a3462cb15964049b6888e4748bf12bda004e,(menu/menu_displaylist) Fix ommited space in power source info,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/af00b958d5f229c6b8517ed112988f7ee56e2eaf,af00b958d5f229c6b8517ed112988f7ee56e2eaf,(iOS) Move ios_get_powerstate code to platform_darwin.m,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/b83a03bad614a537d99fed46d49c5e73ff91c53b,b83a03bad614a537d99fed46d49c5e73ff91c53b,(Linux) Start implementing get_powerstate,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/8d4f6a172cef575fbd248b203e09917e5ef4b3e4,8d4f6a172cef575fbd248b203e09917e5ef4b3e4,(Win32) Implement get_powerstate,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/99894c831ec0ed8cf1258d94439d55d6c665d1ae,99894c831ec0ed8cf1258d94439d55d6c665d1ae,(iOS) Implement get_powerstate,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/b810f7579d27914262aa2b3de45b0fbb6465b3fe,b810f7579d27914262aa2b3de45b0fbb6465b3fe,(PSP) Implement get_powerstate,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/9b4d2769f3793f5e0230e18e9c880b2c2aa28d6e,9b4d2769f3793f5e0230e18e9c880b2c2aa28d6e,(OSX) Start implementing get_powerstate - based on SDL implementation,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/b721389234e3042deac32f8f95a920c0950dcf88,b721389234e3042deac32f8f95a920c0950dcf88,Create 'get_powerstate' function for frontend driver,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/commit/c163d0a2983a68fdff8ea05fba3e84cac42a2f7f,c163d0a2983a68fdff8ea05fba3e84cac42a2f7f,(GX) have power button return to loader,commit_message
libretro,RetroArch,https://github.com/libretro/RetroArch/issues/6323,6323,"This also happens with other video settings such as Threaded Video. Change it twice and controller stops responding. Have to power cycle the XBOX at that point.",pull_request
libretro,RetroArch,https://github.com/libretro/RetroArch/issues/6025,6025,"My setup is a bit more ad hoc - I use Arch Linux as my main OS, so I don't need to worry about a VM. I have a devkitPro/devkitPPC install (`powerpc-eabi-gcc (devkitPPC release 29-1) 6.3.0`) which I installed with the archives from devkitPro's Sourceforge, rather than using RA's blob. In my ~/Code folder, I've got RetroArch cloned along with a few cores; all in their own directory. Then I just change into whatever I want to build and run the appropriate `make` (generally `make -f Makefile.wiiu -j4 PC_DEVEL...` for RA and `make -j4 platform=wiiu` for cores). Then I copy the core's .a file to `~/Code/RetroArch/libretro_wiiu.a` and run make on RA, which links in the new core and makes an RPX. If I want to make several cores, I do it by hand in this fashion. Depending on what I want to do, I'll then either wiiload the .rpx over to HBL or I'll pop in my SD card and copy stuff into sd:/retroarch/cores as needed.",pull_request
libretro,RetroArch,https://github.com/libretro/RetroArch/issues/5909,5909,"The screensaver suspend option only prevents an actual screensaver program from starting up, which is not related to any other power management technique like display brightness adjustment for example.",pull_request
libretro,RetroArch,https://github.com/libretro/RetroArch/issues/5453,5453,"microprocessors, struggle to maintain 60 fps on what should be more powerful hardware",pull_request
libretro,RetroArch,https://github.com/libretro/RetroArch/issues/5339,5339,"Since updating to 1.6.6, about 1 in 12 attempts to save a savestate (in gpsp core, did not check other cores for this) resulted in retroarch and the entire system freezing at exactly 97% saved, requiring the system to be powered down entirely.",pull_request