damage_types.lua
47.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
-- ToME - Tales of Maj'Eyal
-- Copyright (C) 2009, 2010, 2011 Nicolas Casalini
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
-- The basic stuff used to damage a grid
setDefaultProjector(function(src, x, y, type, dam, tmp, no_martyr)
local target = game.level.map(x, y, Map.ACTOR)
if target then
local rsrc = src.resolveSource and src:resolveSource() or src
local rtarget = target.resolveSource and target:resolveSource() or target
print("[PROJECTOR] starting dam", dam)
-- Difficulty settings
if game.difficulty == game.DIFFICULTY_EASY and rtarget.player then
dam = dam * 0.7
end
print("[PROJECTOR] after difficulty dam", dam)
-- Preemptive shielding
if target.isTalentActive and target:isTalentActive(target.T_PREMONITION) then
local t = target:getTalentFromId(target.T_PREMONITION)
t.on_damage(target, t, type)
end
-- Increases damage
if src.inc_damage then
local inc = (src.inc_damage.all or 0) + (src.inc_damage[type] or 0)
dam = dam + (dam * inc / 100)
end
-- Blast the iceblock
if src.attr and src:attr("encased_in_ice") then
local eff = src:hasEffect(src.EFF_FROZEN)
eff.hp = eff.hp - dam
local srcname = src.x and src.y and game.level.map.seens(src.x, src.y) and src.name:capitalize() or "Something"
if eff.hp < 0 then
game.logSeen(src, "%s forces the iceblock to shatter.", src.name:capitalize())
src:removeEffect(src.EFF_FROZEN)
else
game:delayedLogDamage(src, {name="Iceblock", x=src.x, y=src.y}, dam, ("%s%d %s#LAST#"):format(DamageType:get(type).text_color or "#aaaaaa#", math.ceil(dam), DamageType:get(type).name))
end
return 0
end
-- dark vision increases damage done in the dark
if src.knowTalent and src:knowTalent(src.T_DARK_VISION) then
local t = src:getTalentFromId(src.T_DARK_VISION)
local damageIncrease = t.getDamageIncrease(src, t)
if damageIncrease > 0
and not game.level.map.lites(x, y) -- not lit
and core.fov.distance(src.x, src.y, target.x, target.y) > (src.lite or 0) -- outside of lite radius
and game.level.map:checkAllEntities(x, y, "creepingDark") then -- creeping dark square
dam = dam + (dam * damageIncrease / 100)
game.logPlayer(src, "You strike in the darkness. (+%d damage)", damageIncrease)
end
end
-- Static reduce damage for psionic kinetic shield
if target.isTalentActive and target:isTalentActive(target.T_KINETIC_SHIELD) then
local t = target:getTalentFromId(target.T_KINETIC_SHIELD)
dam = t.ks_on_damage(target, t, type, dam)
end
-- Static reduce damage for psionic spiked kinetic shield
if target:attr("kinspike_shield") then
local t = target:getTalentFromId(target.T_KINETIC_SHIELD)
dam = t.kss_on_damage(target, t, type, dam)
end
-- Static reduce damage for psionic thermal shield
if target.isTalentActive and target:isTalentActive(target.T_THERMAL_SHIELD) then
local t = target:getTalentFromId(target.T_THERMAL_SHIELD)
dam = t.ts_on_damage(target, t, type, dam)
end
-- Static reduce damage for psionic spiked thermal shield
if target:attr("thermspike_shield") then
local t = target:getTalentFromId(target.T_THERMAL_SHIELD)
dam = t.tss_on_damage(target, t, type, dam)
end
-- Static reduce damage for psionic charged shield
if target.isTalentActive and target:isTalentActive(target.T_CHARGED_SHIELD) then
local t = target:getTalentFromId(target.T_CHARGED_SHIELD)
dam = t.cs_on_damage(target, t, type, dam)
end
-- Static reduce damage for psionic spiked charged shield
if target:attr("chargespike_shield") then
local t = target:getTalentFromId(target.T_CHARGED_SHIELD)
dam = t.css_on_damage(target, t, type, dam)
end
if type ~= DamageType.PHYSICAL and target.knowTalent and target:knowTalent(target.T_STONE_FORTRESS) and target:hasEffect(target.EFF_DWARVEN_RESILIENCE) then
dam = math.max(0, dam - target:combatArmor() * (50 + target:getTalentLevel(target.T_STONE_FORTRESS) * 10) / 100)
end
-- Reduce damage with resistance
if target.resists then
local pen = 0
if src.resists_pen then pen = (src.resists_pen.all or 0) + (src.resists_pen[type] or 0) end
local res = target:combatGetResist(type)
res = res * (100 - pen) / 100
print("[PROJECTOR] res", res, (100 - res) / 100, " on dam", dam)
if res >= 100 then dam = 0
elseif res <= -100 then dam = dam * 2
else dam = dam * ((100 - res) / 100)
end
end
print("[PROJECTOR] after resists dam", dam)
-- Static reduce damage
if target.isTalentActive and target:isTalentActive(target.T_ANTIMAGIC_SHIELD) then
local t = target:getTalentFromId(target.T_ANTIMAGIC_SHIELD)
dam = t.on_damage(target, t, type, dam)
end
if src:attr("stunned") then
dam = dam * 0.3
print("[PROJECTOR] stunned dam", dam)
end
print("[PROJECTOR] final dam", dam)
local dead
dead, dam = target:takeHit(dam, src)
-- Log damage for later
if not DamageType:get(type).hideMessage then
local srcname = src.x and src.y and game.level.map.seens(src.x, src.y) and src.name:capitalize() or "Something"
game:delayedLogDamage(src, target, dam, ("%s%d %s#LAST#"):format(DamageType:get(type).text_color or "#aaaaaa#", math.ceil(dam), DamageType:get(type).name))
end
if src.attr and src:attr("martyrdom") and not no_martyr then
DamageType.defaultProjector(target, src.x, src.y, type, dam * src.martyrdom / 100, tmp, true)
end
if target.attr and target:attr("reflect_damage") and not no_martyr and src.x and src.y then
DamageType.defaultProjector(target, src.x, src.y, type, dam * target.reflect_damage / 100, tmp, true)
end
if target.knowTalent and target:knowTalent(target.T_RESOLVE) then local t = target:getTalentFromId(target.T_RESOLVE) t.on_absorb(target, t, type, dam) end
if not target.dead and dam > 0 and type == DamageType.MIND and src and src.knowTalent and src:knowTalent(src.T_MADNESS) then
local t = src:getTalentFromId(src.T_MADNESS)
t.doMadness(target, t, src)
end
return dam
end
return 0
end)
local function tryDestroy(who, inven, dam, destroy_prop, proof_prop, msg)
do return end -- Disabled for now
if not inven then return end
local reduction = 1
for i = #inven, 1, -1 do
local o = inven[i]
if o[destroy_prop] and not o[proof_prop] then
for j, test in ipairs(o[destroy_prop]) do
if dam >= test[1] and rng.percent(test[2] * reduction) then
game.logPlayer(who, msg, o:getName{do_color=true, no_count=true})
local obj = who:removeObject(inven, i)
obj:removed()
break
end
end
end
end
end
newDamageType{
name = "physical", type = "PHYSICAL",
}
-- Arcane is basic (usually) unresistable damage
newDamageType{
name = "arcane", type = "ARCANE", text_color = "#PURPLE#",
antimagic_resolve = true,
}
-- The elemental damages
newDamageType{
name = "fire", type = "FIRE", text_color = "#LIGHT_RED#",
antimagic_resolve = true,
projector = function(src, x, y, type, dam)
if src.fire_convert_to then
return DamageType:get(src.fire_convert_to[1]).projector(src, x, y, src.fire_convert_to[1], dam * src.fire_convert_to[2] / 100)
end
local realdam = DamageType.defaultProjector(src, x, y, type, dam)
if realdam > 0 then
if src.player then world:gainAchievement("PYROMANCER", src, realdam) end
end
return realdam
end,
}
newDamageType{
name = "cold", type = "COLD", text_color = "#1133F3#",
antimagic_resolve = true,
projector = function(src, x, y, type, dam)
local realdam = DamageType.defaultProjector(src, x, y, type, dam)
if realdam > 0 then
if src.player then world:gainAchievement("CRYOMANCER", src, realdam) end
end
return realdam
end,
}
newDamageType{
name = "lightning", type = "LIGHTNING", text_color = "#ROYAL_BLUE#",
antimagic_resolve = true,
projector = function(src, x, y, type, dam)
local realdam = DamageType.defaultProjector(src, x, y, type, dam)
return realdam
end,
}
-- Acid destroys potions
newDamageType{
name = "acid", type = "ACID", text_color = "#GREEN#",
antimagic_resolve = true,
projector = function(src, x, y, type, dam)
local realdam = DamageType.defaultProjector(src, x, y, type, dam)
return realdam
end,
}
-- Nature & Blight: Opposing damage types
newDamageType{
name = "nature", type = "NATURE", text_color = "#LIGHT_GREEN#",
antimagic_resolve = true,
}
newDamageType{
name = "blight", type = "BLIGHT", text_color = "#DARK_GREEN#",
antimagic_resolve = true,
projector = function(src, x, y, type, dam, extra)
local realdam = DamageType.defaultProjector(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
-- Spread diseases if possible
if realdam > 0 and target and target:attr("diseases_spread_on_blight") and (not extra or not extra.from_disease) then
game.logSeen(src, "The diseases of %s spread!", src.name)
if rng.percent(20 + math.sqrt(realdam) * 5) then
local t = src:getTalentFromId(src.T_EPIDEMIC)
t.do_spread(src, t, target)
end
end
return realdam
end,
}
-- Light damage
newDamageType{
name = "light", type = "LIGHT", text_color = "#YELLOW#",
antimagic_resolve = true,
}
-- Darkness damage
newDamageType{
name = "darkness", type = "DARKNESS", text_color = "#DARK_GREY#",
antimagic_resolve = true,
}
-- Mind damage
newDamageType{
name = "mind", type = "MIND", text_color = "#YELLOW#",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
local mindpower, mentalresist
if _G.type(dam) == "table" then dam, mindpower, mentalresist, factor = dam.dam, dam.mindpower, dam.mentalresist end
if target:checkHit(mindpower or (src:combatMindpower() * 0.7), mentalresist or target:combatMentalResist(), 0, 95, 15) then
return DamageType.defaultProjector(src, x, y, type, dam)
else
game.logSeen(target, "%s resists the mind attack!", target.name:capitalize())
return 0
end
end
end,
}
-- Lite up the room
newDamageType{
name = "lite", type = "LITE", text_color = "#YELLOW#",
projector = function(src, x, y, type, dam)
-- Dont lit magically unlit grids
local g = game.level.map(x, y, Map.TERRAIN+1)
if g and g.unlit then
if g.unlit <= dam then game.level.map:remove(x, y, Map.TERRAIN+1)
else return end
end
game.level.map.lites(x, y, true)
end,
}
-- Break stealth
newDamageType{
name = "break stealth", type = "BREAK_STEALTH",
projector = function(src, x, y, type, dam)
-- Dont lit magically unlit grids
local a = game.level.map(x, y, Map.ACTOR)
if a and a:isTalentActive(a.T_STEALTH) then
a:breakStealth()
end
end,
}
-- Silence
newDamageType{
name = "SILENCE", type = "SILENCE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatMindpower() * 0.7, target:combatMentalResist(), 0, 95, 15) and target:canBe("silence") then
target:setEffect(target.EFF_SILENCED, math.ceil(dam), {})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Silence
newDamageType{
name = "% chance to silence target", type = "RANDOM_SILENCE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(dam) then
if target:checkHit(src:combatAttackDex() * 0.7, target:combatPhysicalResist(), 0, 95, 15) and target:canBe("silence") then
target:setEffect(target.EFF_SILENCED, 4, {})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Blinds
newDamageType{
name = "blindness", type = "BLIND",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, math.ceil(dam), {})
else
game.logSeen(target, "%s resists the blinding light!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "blindness", type = "BLINDPHYSICAL",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatAttack(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, math.ceil(dam), {})
else
game.logSeen(target, "%s resists the blinding light!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "blinding ink", type = "BLINDING_INK",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatAttackStr(), target:combatMentalResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, math.ceil(dam), {})
else
game.logSeen(target, "%s resists the blinding light!", target.name:capitalize())
end
end
end,
}
-- Fire damage + DOT
newDamageType{
name = "fireburn", type = "FIREBURN",
projector = function(src, x, y, type, dam)
local dur = 3
local perc = 50
if _G.type(dam) == "table" then dam, dur, perc = dam.dam, dam.dur, (dam.initial or perc) end
local init_dam = dam * perc / 100
if init_dam > 0 then DamageType:get(DamageType.FIRE).projector(src, x, y, DamageType.FIRE, init_dam) end
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Set on fire!
dam = dam - init_dam
target:setEffect(target.EFF_BURNING, dur, {src=src, power=dam / dur})
end
return init_dam
end,
}
newDamageType{
name = "fireburn", type = "GOLEM_FIREBURN",
projector = function(src, x, y, type, dam)
local realdam = 0
local target = game.level.map(x, y, Map.ACTOR)
if target and target ~= src and target ~= src.summoner then
realdam = DamageType:get(DamageType.FIREBURN).projector(src, x, y, DamageType.FIREBURN, dam)
end
return realdam
end,
}
-- Darkness + Fire
newDamageType{
name = "shadowflame", type = "SHADOWFLAME",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.FIRE).projector(src, x, y, DamageType.FIRE, dam / 2)
DamageType:get(DamageType.DARKNESS).projector(src, x, y, DamageType.DARKNESS, dam / 2)
end,
}
-- Darkness + Stun
newDamageType{
name = "darkstun", type = "DARKSTUN",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.DARKNESS).projector(src, x, y, DamageType.DARKNESS, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Set on fire!
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_STUNNED, 4, {})
else
game.logSeen(target, "%s resists the darkness!", target.name:capitalize())
end
end
end,
}
-- Cold + Stun
newDamageType{
name = "coldstun", type = "COLDSTUN",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.COLD).projector(src, x, y, DamageType.COLD, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_STUNNED, 4, {})
else
game.logSeen(target, "%s resists the stun!", target.name:capitalize())
end
end
end,
}
-- Fire DOT + Stun
newDamageType{
name = "flameshock", type = "FLAMESHOCK",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Set on fire!
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_BURNING_SHOCK, dam.dur, {src=src, power=dam.dam / dam.dur})
else
game.logSeen(target, "%s resists the searing flame!", target.name:capitalize())
end
end
end,
}
-- Cold damage + freeze chance
newDamageType{
name = "ice", type = "ICE",
projector = function(src, x, y, type, dam)
local realdam = DamageType:get(DamageType.COLD).projector(src, x, y, DamageType.COLD, dam)
if rng.percent(25) then
DamageType:get(DamageType.FREEZE).projector(src, x, y, DamageType.FREEZE, {dur=2, hp=70+dam*1.5})
end
return realdam
end,
}
-- Cold damage + freeze ground
newDamageType{
name = "coldnevermove", type = "COLDNEVERMOVE",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.COLD).projector(src, x, y, DamageType.COLD, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("pin") and target:canBe("stun") and not target:attr("fly") and not target:attr("levitation") then
target:setEffect(target.EFF_FROZEN_FEET, dam.dur, {})
end
end
end,
}
-- Freezes target, checks for spellresistance
newDamageType{
name = "freeze", type = "FREEZE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Freeze it, if we pass the test
local sx, sy = game.level.map:getTileToScreen(x, y)
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_FROZEN, dam.dur, {hp=dam.hp * 1.5})
game.flyers:add(sx, sy, 30, (rng.range(0,2)-1) * 0.5, -3, "Frozen!", {0,255,155})
else
game.flyers:add(sx, sy, 30, (rng.range(0,2)-1) * 0.5, -3, "Resist!", {0,255,155})
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Dim vision
newDamageType{
name = "sticky smoke", type = "STICKY_SMOKE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatAttackDex(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_DIM_VISION, 7, {sight=dam})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Acid damage + blind chance
newDamageType{
name = "acid blind", type = "ACID_BLIND",
projector = function(src, x, y, type, dam)
local realdam = DamageType:get(DamageType.ACID).projector(src, x, y, DamageType.ACID, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(25) then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, 3, {src=src})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
return realdam
end,
}
-- Lightning damage + daze chance
newDamageType{
name = "lightning daze", type = "LIGHTNING_DAZE",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam, daze=25} end
local realdam = DamageType:get(DamageType.LIGHTNING).projector(src, x, y, DamageType.LIGHTNING, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(dam.daze) then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_DAZED, 3, {src=src})
if src:isTalentActive(src.T_HURRICANE) then
local t = src:getTalentFromId(src.T_HURRICANE)
t.do_hurricane(src, t, target)
end
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
return realdam
end,
}
-- Cold/physical damage + repulsion; checks for spell power against physical resistance
newDamageType{
name = "wave", type = "WAVE",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.COLD).projector(src, x, y, DamageType.COLD, dam / 2)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam / 2)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 1)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the wave!", target.name:capitalize())
end
end
end,
}
-- Fireburn damage + repulsion; checks for spell power against physical resistance
newDamageType{
name = "fire knockback", type = "FIREKNOCKBACK",
projector = function(src, x, y, type, dam, tmp)
local target = game.level.map(x, y, Map.ACTOR)
if _G.type(dam) ~= "table" then dam = {dam=dam, dist=3} end
tmp = tmp or {}
if target and not tmp[target] then
tmp[target] = true
DamageType:get(DamageType.FIREBURN).projector(src, x, y, DamageType.FIREBURN, dam.dam)
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, dam.dist)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the punch!", target.name:capitalize())
end
end
end,
}
-- Physical damage + repulsion; checks for spell power against physical resistance
newDamageType{
name = "spell knockback", type = "SPELLKNOCKBACK",
projector = function(src, x, y, type, dam, tmp)
local target = game.level.map(x, y, Map.ACTOR)
local realdam = 0
tmp = tmp or {}
if target and not tmp[target] then
tmp[target] = true
realdam = DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 3)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the punch!", target.name:capitalize())
end
end
return realdam
end,
}
-- Physical damage + repulsion; checks for mind power against physical resistance
newDamageType{
name = "mind knockback", type = "MINDKNOCKBACK",
projector = function(src, x, y, type, dam, tmp)
local target = game.level.map(x, y, Map.ACTOR)
tmp = tmp or {}
if target and not tmp[target] then
tmp[target] = true
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
if target:checkHit(src:combatMindpower() * 0.8, target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 3)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the punch!", target.name:capitalize())
end
end
end,
}
-- Physical damage + repulsion; checks for attack power against physical resistance
newDamageType{
name = "physknockback", type = "PHYSKNOCKBACK",
projector = function(src, x, y, type, dam, tmp)
local target = game.level.map(x, y, Map.ACTOR)
tmp = tmp or {}
if target and not tmp[target] then
tmp[target] = true
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam.dam)
if target:checkHit(src:combatAttackStr(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, dam.dist)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the knockback!", target.name:capitalize())
end
end
end,
}
-- Generic spell knockback vs. physresist. Uses a more generic resist message
newDamageType{
name = "repulsion", type = "REPULSION",
projector = function(src, x, y, type, dam, tmp)
local target = game.level.map(x, y, Map.ACTOR)
tmp = tmp or {}
if target and not target:attr("never_move") and not tmp[target] then
tmp[target] = true
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 2)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the knockback!", target.name:capitalize())
end
end
end,
}
-- Poisoning damage
newDamageType{
name = "poison", type = "POISON",
projector = function(src, x, y, type, dam)
local realdam = DamageType:get(DamageType.NATURE).projector(src, x, y, DamageType.NATURE, dam / 6)
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("poison") then
target:setEffect(target.EFF_POISONED, 5, {src=src, power=dam / 6})
end
return realdam
end,
}
-- Inferno: fire and maybe remove suff
newDamageType{
name = "inferno", type = "INFERNO",
projector = function(src, x, y, type, dam)
local realdam = DamageType:get(DamageType.FIRE).projector(src, x, y, DamageType.FIRE, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and src:attr("cleansing_flames") and rng.percent(src:attr("cleansing_flames")) then
local effs = {}
local status = (src:reactionToward(target) >= 0) and "detrimental" or "beneficial"
for eff_id, p in pairs(target.tmp) do
local e = target.tempeffect_def[eff_id]
if e.status == status and (e.type == "magical" or e.type == "physical" or e.type == "curse" or e.type == "hex") then
effs[#effs+1] = {"effect", eff_id}
end
end
if #effs > 0 then
local eff = rng.tableRemove(effs)
target:removeEffect(eff[2])
end
end
return realdam
end,
}
-- Spydric poison: prevents movement
newDamageType{
name = "spydric poison", type = "SPYDRIC_POISON",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.NATURE).projector(src, x, y, DamageType.NATURE, dam.dam / dam.dur)
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("poison") then
target:setEffect(target.EFF_SPYDRIC_POISON, dam.dur, {src=src, power=dam.dam / dam.dur})
end
end,
}
-- Insidious poison: prevents healing
newDamageType{
name = "insidious poison", type = "INSIDIOUS_POISON",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.NATURE).projector(src, x, y, DamageType.NATURE, dam.dam / dam.dur)
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("poison") then
target:setEffect(target.EFF_INSIDIOUS_POISON, dam.dur, {src=src, power=dam.dam / dam.dur, heal_factor=dam.heal_factor})
end
end,
}
-- Bleeding damage
newDamageType{
name = "bleed", type = "BLEED",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam / 6)
dam = dam - dam / 6
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("cut") then
-- Set on fire!
target:setEffect(target.EFF_CUT, 5, {src=src, power=dam / 5})
end
end,
}
-- Physical damage + bleeding % of it
newDamageType{
name = "physical + bleeding", type = "PHYSICALBLEED",
projector = function(src, x, y, type, dam)
local realdam = DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
local target = game.level.map(x, y, Map.ACTOR)
if realdam > 0 and target and target:canBe("cut") then
target:setEffect(target.EFF_CUT, 5, {src=src, power=dam * 0.1})
end
end,
}
-- Slime damage
newDamageType{
name = "slime", type = "SLIME",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.NATURE).projector(src, x, y, DamageType.NATURE, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
target:setEffect(target.EFF_SLOW, 3, {power=0.3})
end
end,
}
-- Poisoning damage
newDamageType{
name = "dig", type = "DIG",
projector = function(src, x, y, typ, dam)
local feat = game.level.map(x, y, Map.TERRAIN)
if feat then
if feat.dig then
local newfeat_name, newfeat, silence = feat.dig, nil, false
if type(feat.dig) == "function" then newfeat_name, newfeat, silence = feat.dig(src, x, y, feat) end
game.level.map(x, y, Map.TERRAIN, newfeat or game.zone.grid_list[newfeat_name])
game.nicer_tiles:updateAround(game.level, x, y)
if not silence then
game.logSeen({x=x,y=y}, "%s turns into %s.", feat.name:capitalize(), (newfeat or game.zone.grid_list[newfeat_name]).name)
end
end
end
end,
}
-- Slowness
newDamageType{
name = "slow", type = "SLOW",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Freeze it, if we pass the test
local sx, sy = game.level.map:getTileToScreen(x, y)
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 20) then
target:setEffect(target.EFF_SLOW, 7, {power=dam})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Time prison, invulnerability and stun
newDamageType{
name = "time prison", type = "TIME_PRISON",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Freeze it, if we pass the test
local sx, sy = game.level.map:getTileToScreen(x, y)
if target:checkHit(src:combatSpellpower(), target:combatSpellResist() + (target:attr("continuum_destabilization") or 0), 0, 95, 20) then
target:setEffect(target.EFF_TIME_PRISON, dam, {})
target:setEffect(target.EFF_CONTINUUM_DESTABILIZATION, 100, {power=src:combatSpellpower(0.3)})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Confusion
newDamageType{
name = "confusion", type = "CONFUSION",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit((dam.power_check or src.combatSpellpower)(src), (dam.resist_check or target.combatMentalResist)(target), 0, 95, 15) and target:canBe("confusion") then
target:setEffect(target.EFF_CONFUSED, dam.dur, {power=dam.dam})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Confusion
newDamageType{
name = "% chances to confuse", type = "RANDOM_CONFUSION",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam} end
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(dam.dam) then
if target:checkHit((dam.power_check or src.combatSpellpower)(src), (dam.resist_check or target.combatMentalResist)(target), 0, 95, 15) and target:canBe("confusion") then
target:setEffect(target.EFF_CONFUSED, dam.dam, {power=75})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Blind
newDamageType{
name = "% chances to blind", type = "RANDOM_BLIND",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam} end
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(dam.dam) then
if target:checkHit((dam.power_check or src.combatSpellpower)(src), (dam.resist_check or target.combatMentalResist)(target), 0, 95, 15) and target:canBe("confusion") then
target:setEffect(target.EFF_BLINDED, dam.dam, {})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Physical + Blind
newDamageType{
name = "sand", type = "SAND",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatAttackStr(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, dam.dur, {})
else
game.logSeen(target, "%s resists the sandstorm!", target.name:capitalize())
end
end
end,
}
-- Physical + Pinned
newDamageType{
name = "pinning", type = "PINNING",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatAttackStr(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("pin") then
target:setEffect(target.EFF_PINNED, dam.dur, {})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Drain Exp
newDamageType{
name = "drain experience", type = "DRAINEXP",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam} end
DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit((dam.power_check or src.combatSpellpower)(src), (dam.resist_check or target.combatMentalResist)(target), 0, 95, 15) then
target:gainExp(-dam.dam*2)
game.logSeen(target, "%s drains experience from %s!", src.name:capitalize(), target.name)
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Drain Life
newDamageType{
name = "drain life", type = "DRAINLIFE",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam, healfactor=0.4} end
local target = game.level.map(x, y, Map.ACTOR) -- Get the target first to make sure we heal even on kill
local realdam = DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam.dam)
if target and realdam > 0 then
src:heal(realdam * dam.healfactor)
game.logSeen(target, "%s drains life from %s!", src.name:capitalize(), target.name)
end
end,
}
-- Drain Vim
newDamageType{
name = "drain vim", type = "DRAIN_VIM",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam, vim=0.2} end
local realdam = DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam.dam)
src:incVim(realdam * dam.vim)
end,
}
-- Demonfire: heal demon; damage others
newDamageType{
name = "demonfire", type = "DEMONFIRE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and target.demon then
target:heal(dam)
return -dam
elseif target then
DamageType:get(DamageType.FIRE).projector(src, x, y, DamageType.FIRE, dam)
return dam
end
end,
}
-- Retch: heal undead; damage living
newDamageType{
name = "retch", type = "RETCH",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and target.undead then
target:heal(dam * 1.5)
elseif target then
DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam)
end
end,
}
-- Holy light, damage demon/undead; heal others
newDamageType{
name = "holy light", type = "HOLY_LIGHT",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and not target.undead and not target.demon then
target:heal(dam / 2)
elseif target then
DamageType:get(DamageType.LIGHT).projector(src, x, y, DamageType.LIGHT, dam)
end
end,
}
-- Heals
newDamageType{
name = "healing", type = "HEAL",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
target:heal(dam, src)
end
end,
}
newDamageType{
name = "healing power", type = "HEALING_POWER",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
target:setEffect(target.EFF_EMPOWERED_HEALING, 1, {power=(dam/100)})
target:heal(dam, src)
end
end,
}
-- Corrupted blood, blight damage + potential diseases
newDamageType{
name = "corrupted blood", type = "CORRUPTED_BLOOD",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam} end
DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam.dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("disease") and rng.percent(dam.disease_chance or 20) then
local eff = rng.table{{target.EFF_ROTTING_DISEASE, "con"}, {target.EFF_DECREPITUDE_DISEASE, "dex"}, {target.EFF_WEAKNESS_DISEASE, "str"}}
target:setEffect(eff[1], dam.dur or 5, { src = src, [eff[2]] = dam.disease_power or 5, dam = dam.disease_dam or (dam.dam / 5) })
end
end,
}
-- blood boiled, blight damage + slow
newDamageType{
name = "blood boil", type = "BLOOD_BOIL",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.BLIGHT).projector(src, x, y, DamageType.BLIGHT, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and not target.undead and not target.construct then
target:setEffect(target.EFF_SLOW, 4, {power=0.2})
end
end,
}
-- life leech (used cursed gloom skill)
newDamageType{
name = "life leech",
type = "LIFE_LEECH",
text_color = "#F53CBE#",
hideMessage=true,
hideFlyer=true
}
-- Physical + Stun Chance
newDamageType{
name = "physical stun", type = "PHYSICAL_STUN",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and rng.percent(25) then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_STUNNED, 2, {src=src})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Physical Damage/Cut Split
newDamageType{
name = "split bleed", type = "SPLIT_BLEED",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam / 2)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam / 12)
dam = dam - dam / 12
local target = game.level.map(x, y, Map.ACTOR)
if target and target:canBe("cut") then
-- Set on fire!
target:setEffect(target.EFF_CUT, 5, {src=src, power=dam / 11})
end
end,
}
-- Chronomancy damage types
newDamageType{
name = "temporal", type = "TEMPORAL", text_color = "#LIGHT_STEEL_BLUE#",
antimagic_resolve = true,
}
-- Temporal/Physical damage
newDamageType{
name = "matter", type = "MATTER",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, dam / 2)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam / 2)
end,
}
-- Gravity damage
newDamageType{
name = "gravity", type = "GRAVITY",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
local target = game.level.map(x, y, Map.ACTOR)
if not target then return end
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 20) and target:canBe("pin") then
target:setEffect(target.EFF_PINNED, 2, {}, true)
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end,
}
newDamageType{
name = "grow", type = "GROW",
projector = function(src, x, y, typ, dam)
local feat = game.level.map(x, y, Map.TERRAIN)
if feat then
if feat.grow then
local newfeat_name, newfeat, silence = feat.grow, nil, false
if type(feat.dig) == "function" then newfeat_name, newfeat, silence = feat.grow(src, x, y, feat) end
game.level.map(x, y, Map.TERRAIN, newfeat or game.zone.grid_list[newfeat_name])
if not silence then
game.logSeen({x=x,y=y}, "%s turns into %s.", feat.name:capitalize(), (newfeat or game.zone.grid_list[newfeat_name]).name)
end
end
end
end,
}
-- Circles
newDamageType{
name = "sanctity", type = "SANCTITY",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target == src then
target:setEffect(target.EFF_SANCTITY, 1, {power=dam})
elseif target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) then
target:setEffect(target.EFF_SILENCED, 2, {}, true)
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "shiftingshadows", type = "SHIFTINGSHADOWS",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target == src then
target:setEffect(target.EFF_SHIFTING_SHADOWS, 1, {power= dam})
else
DamageType:get(DamageType.DARKNESS).projector(src, x, y, DamageType.DARKNESS, dam)
end
end
end,
}
newDamageType{
name = "blazinglight", type = "BLAZINGLIGHT",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target == src then
target:setEffect(target.EFF_BLAZING_LIGHT, 1, {power= 1 + (dam / 4)})
else
DamageType:get(DamageType.FIRE).projector(src, x, y, DamageType.FIRE, dam)
DamageType:get(DamageType.LIGHT).projector(src, x, y, DamageType.LIGHT, dam)
end
end
end,
}
newDamageType{
name = "warding", type = "WARDING",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target == src then
target:setEffect(target.EFF_WARDING, 1, {power=dam})
elseif target ~= src then
DamageType:get(DamageType.LIGHT).projector(src, x, y, DamageType.LIGHT, dam )
DamageType:get(DamageType.DARKNESS).projector(src, x, y, DamageType.DARKNESS, dam)
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 1)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the knockback!", target.name:capitalize())
end
end
end
end,
}
newDamageType{
name = "batter", type = "BATTER",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatMindpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("knockback") then
target:knockback(src.x, src.y, 3)
game.logSeen(target, "%s is knocked back!", target.name:capitalize())
else
game.logSeen(target, "%s resists the knockback!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "mindslow", type = "MINDSLOW",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Freeze it, if we pass the test
local sx, sy = game.level.map:getTileToScreen(x, y)
if target:checkHit(src:combatMindpower(), target:combatPhysicalResist(), 0, 95, 20) then
target:setEffect(target.EFF_SLOW, 4, {power=dam})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Freezes target, checks for physresistance
newDamageType{
name = "mindfreeze", type = "MINDFREEZE",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
-- Freeze it, if we pass the test
local sx, sy = game.level.map:getTileToScreen(x, y)
if target:checkHit(src:combatMindpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_FROZEN, dam, {hp=70 + src:combatMindpower() * 10})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}
-- Temporal + Stat damage
newDamageType{
name = "clock", type = "CLOCK",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
local dam = 2 + math.ceil(dam / 15)
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) then
target:setEffect(target.EFF_TURN_BACK_THE_CLOCK, 3, {power=dam})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
-- Reduce Con then deal the damage
DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, dam)
end,
}
-- Temporal Over Time
newDamageType{
name = "wasting", type = "WASTING",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
local dur = 3
local perc = 30
if _G.type(dam) == "table" then dam, dur, perc = dam.dam, dam.dur, (dam.initial or perc) end
local init_dam = dam * perc / 100
if init_dam > 0 then DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, init_dam) end
if target then
-- Set on fire!
dam = dam - init_dam
target:setEffect(target.EFF_WASTING, dur, {src=src, power=dam / dur})
end
return init_dam
end,
}
newDamageType{
name = "stop", type = "STOP",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_STUNNED, dam, {})
else
game.logSeen(target, "%s has not been stopped!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "rethread", type = "RETHREAD",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, dam)
local target = game.level.map(x, y, Map.ACTOR)
local chance = rng.range(1, 4)
-- Pull random effect
if target and chance == 1 then
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("stun") then
target:setEffect(target.EFF_DAZED, 3, {})
else
game.logSeen(target, "%s resists the daze!", target.name:capitalize())
end
elseif target and chance == 2 then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) and target:canBe("blind") then
target:setEffect(target.EFF_BLINDED, 3, {})
else
game.logSeen(target, "%s resists the blindness!", target.name:capitalize())
end
elseif target and chance == 3 then
if target:checkHit(src:combatSpellpower(), target:combatPhysicalResist(), 0, 95, 15) and target:canBe("pin") then
target:setEffect(target.EFF_PINNED, 3, {})
else
game.logSeen(target, "%s resists the pin!", target.name:capitalize())
end
elseif target and chance == 4 then
if target:checkHit(src:combatSpellpower(), target:combatMentalResist(), 0, 95, 15) and target:canBe("confusion") then
target:setEffect(target.EFF_CONFUSED, 3, {power=60})
else
game.logSeen(target, "%s resists the confusion!", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "temporal echo", type = "TEMPORAL_ECHO",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target then
dam = (target.max_life - target.life) * dam
DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, dam)
end
end,
}
-- Dredge Haste
newDamageType{
name = "dredge frenzy", type = "DREDGE_FRENZY",
projector = function(src, x, y, type, dam)
local target = game.level.map(x, y, Map.ACTOR)
if target and target.dredge then
target:setEffect(target.EFF_SPEED, 3, {power=0.6})
end
end,
}
newDamageType{
name = "devour life", type = "DEVOUR_LIFE",
projector = function(src, x, y, type, dam)
if _G.type(dam) == "number" then dam = {dam=dam} end
local target = game.level.map(x, y, Map.ACTOR) -- Get the target first to make sure we heal even on kill
local realdam = DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam.dam)
if target and realdam > 0 then
local heal = realdam * (dam.healfactor or 1)
src:heal(heal)
game.logSeen(target, "%s consumes %d life from %s!", src.name:capitalize(), heal, target.name)
end
end,
hideMessage=true,
}
newDamageType{
name = "chronoslow", type = "CHRONOSLOW",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.TEMPORAL).projector(src, x, y, DamageType.TEMPORAL, dam * 100)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:checkHit(src:combatSpellpower(), target:combatSpellResist(), 0, 95, 15) then
target:setEffect(target.EFF_SLOW, 2, {power=dam}, true)
else
game.logSeen(target, "%s resists the slow", target.name:capitalize())
end
end
end,
}
newDamageType{
name = "entangle", type = "ENTANGLE",
projector = function(src, x, y, type, dam)
DamageType:get(DamageType.PHYSICAL).projector(src, x, y, DamageType.PHYSICAL, dam/3)
DamageType:get(DamageType.NATURE).projector(src, x, y, DamageType.NATURE, 2*dam/3)
local target = game.level.map(x, y, Map.ACTOR)
if target then
if target:canBe("pin") then
target:setEffect(target.EFF_PINNED, 5, {})
else
game.logSeen(target, "%s resists!", target.name:capitalize())
end
end
end,
}