-
Notifications
You must be signed in to change notification settings - Fork 0
/
spells.json
2362 lines (2362 loc) · 75.1 KB
/
spells.json
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
{
"name": "Spells",
"nrversion": 354,
"version": "2023",
"permission": 1,
"playable": 0,
"id": 103,
"paths": {
"flux": {
"name": "Flux",
"ref": "flux",
"spells": [
{
"number": "1",
"name": "Flux Card 1",
"description": "Both Players gain: 4 Magic Dice",
"ref": "flux1",
"cast": []
},
{
"number": "2",
"name": "Flux Card 2",
"description": "Both Players gain: 4 Magic Dice",
"ref": "flux2",
"cast": []
},
{
"number": "3",
"name": "Flux Card 3",
"description": "Both Players gain: 4 Magic Dice",
"ref": "flux3",
"cast": []
},
{
"number": "4",
"name": "Flux Card 4",
"description": "Both Players gain: 5 Magic Dice",
"ref": "flux4",
"cast": []
},
{
"number": "5",
"name": "Flux Card 5",
"description": "Both Players gain: 6 Magic Dice",
"ref": "flux5",
"cast": []
},
{
"number": "6",
"name": "Flux Card 6",
"description": "Both Players gain: 5 Magic Dice",
"duration": 1,
"ref": "flux6",
"cast": []
},
{
"number": "7",
"name": "Flux Card 7",
"description": "Both Players gain: 6 Magic Dice",
"ref": "flux7",
"cast": []
},
{
"number": "8",
"name": "Flux Card 8",
"description": "Both Players gain: 6 Magic Dice",
"ref": "flux8",
"cast": []
},
{
"number": "9",
"name": "Flux Card 9",
"description": "Both Players gain: 5 Magic Dice",
"ref": "flux9",
"cast": []
},
{
"number": "10",
"name": "Flux Card 10",
"description": "Both Players gain: 5 Magic Dice",
"ref": "flux10",
"cast": []
},
{
"number": "11",
"name": "Flux Card 11",
"description": "Both Players gain: 6 Magic Dice",
"ref": "flux11",
"cast": []
},
{
"number": "12",
"name": "Flux Card 12",
"description": "Both Players gain: 7 Magic Dice",
"ref": "flux12",
"cast": []
},
{
"number": "13",
"name": "Flux Card 13",
"description": "Both Players gain: 6 Magic Dice",
"ref": "flux13",
"cast": []
},
{
"number": "14",
"name": "Flux Card 14",
"description": "Both Players gain: 7 Magic Dice",
"ref": "flux14",
"cast": []
},
{
"number": "15",
"name": "Flux Card 15",
"description": "Both Players gain: 8 Magic Dice",
"ref": "flux15",
"cast": []
},
{
"number": "16",
"name": "Flux Card 16",
"description": "Both Players gain: 8 Magic Dice",
"ref": "flux16",
"cast": []
}
]
},
"alchemy": {
"name": "Alchemy",
"ref": "alchemy",
"spells": [
{
"number": "1",
"name": "Molten Copper",
"rep": true,
"description": "The target suffers D3+1 hits with Str 3, AP 3, Flaming Attacks, Magical Attacks.<br>\n\tIf the target has Metal Armour, these hits are instead resolved with Str 4 and AP 4.",
"cast": [
{
"value": "8",
"range": "18",
"types": ["Damage", "Hex", "Missile", "Replicable"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
],
"ref": "molten_copper"
},
{
"number": "2",
"name": "Corruption of Tin",
"description": "The target suffers -1 Arm, -1 Agi and gains Metal Armour.",
"cast": [
{
"value": "7",
"range": "24",
"types": ["Hex"],
"duration": 1,
"effects": [
{
"type": "debuff",
"rule": {
"id": "Arm",
"value": -1
}
}
]
}
],
"ref": "corruption_of_tin"
},
{
"ref": "living_steel",
"name": "Living Steel",
"number": "3",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 0,
"value": "8"
}
],
"description": "The target gains +1 to hit and <span class=\"textbf\">Magical Attacks</span>."
},
{
"ref": "wall_of_lead",
"name": "Wall of Lead",
"number": "4",
"cast": [
{
"range": "24",
"types": ["Ground*"],
"duration": 0,
"value": "8"
}
],
"description": "Place a Wall Terrain Feature with dimensions 1×6\" on the target.<br>\n\t<i>Remove the Terrain Feature when the spell ends.</i>"
},
{
"number": "5",
"name": "Word of Iron",
"ref": "word_iron",
"description": "The target suffers +2 Arm and gains Metal Armour.",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 1,
"value": "11",
"effects": [
{
"type": "buff",
"rule": {
"id": "Arm",
"value": 1
}
}
]
}
]
},
{
"number": "6",
"ref": "quicksilver_lash",
"name": "Quicksilver Lash",
"description": "The target suffers 2D3+1 hits with AP 4, Flaming Attacks, Magical Attacks, and Zeal (against Metal Armour). These hits always wound on 4+.",
"cast": [
{
"value": "11",
"range": "24",
"types": ["Damage", "Hex", "Missile"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
}
]
},
"cosmology": {
"name": "Cosmology",
"ref": "cosmology",
"spells": [
{
"ref": "weal_and_woe",
"name": "Weal and Woe",
"number": "1",
"cast": [
{
"range": "18",
"types": ["Universal"],
"duration": 0,
"value": "8"
}
],
"description": [
"The target must reroll [𝛼] to-wound rolls, except natural rolls of [𝛽].",
{
"icon": "chaos",
"description": "[𝛼]: Failed<br/><br/>[𝛼]: 1"
},
{
"icon": "cosmos",
"description": "[𝛼]: Successful<br/><br/>[𝛼]: 6"
}
]
},
{
"ref": "hearts_and_minds",
"name": "Hearts and Minds",
"number": "2",
"cast": [
{
"range": "24",
"types": ["[𝛼]"],
"duration": 0,
"value": "6"
}
],
"description": [
"If the target is Shaken, it stops being Shaken. If the target is not Shaken, it must take a Panic Test.",
{
"icon": "chaos",
"description": "[𝛼]: Hex, Damage"
},
{
"icon": "cosmos",
"description": "[𝛼]: Augment"
}
]
},
{
"number": "3",
"name": "Truth of Time",
"ref": "truth_time",
"icon": "cosmos",
"fontSize": 12,
"description": [
"The target’s Cha and Mob are set to [𝛼].",
{
"icon": "chaos",
"description": "[𝛼]: 8″"
},
{
"icon": "cosmos",
"description": "[𝛼]: 3″"
}
],
"cast": [
{
"value": "9",
"range": "24",
"types": ["Universal"],
"duration": 1,
"effects": [
{
"type": "special"
}
]
}
]
},
{
"number": "4",
"icon": "cosmos",
"name": "Ice and Fire",
"fontSize": 11,
"ref": "ice_fire",
"description": [
"The target suffers 2D6 hits with Str 4, AP 0, and Magical Attacks. Successful [𝛼] against wounds caused by this spell must be rerolled.",
{
"icon": "chaos",
"description": "[𝛼]: Special Saves"
},
{
"icon": "cosmos",
"description": "[𝛼]: Armour Saves"
}
],
"cast": [
{
"value": "10",
"range": "24",
"types": ["Hex", "Damage", "Missile"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
},
{
"ref": "cosmic_scales",
"name": "Cosmic Scales",
"number": "5",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 0,
"value": "11"
}
],
"description": [
"The target gains Divine Attacks and Magical Attacks, and it’s [𝛼] is set to at least 8.",
{
"icon": "chaos",
"description": "[𝛼]: Def"
},
{
"icon": "cosmos",
"description": "[𝛼]: Off"
}
]
},
{
"ref": "near_and_far",
"name": "Near and Far",
"number": "6",
"cast": [
{
"types": ["Damage", "[𝛼]"],
"duration": 0,
"value": "11"
}
],
"description": [
"The target suffers D3+1 hits with Str 7, AP 3, and Magical Attacks.",
{
"icon": "chaos",
"description": "[𝛼]: Hex, Range 24″"
},
{
"icon": "cosmos",
"description": "[𝛼]: Aura*, Range 9″, Universal<br/><i>*The caster’s unit is not targeted</i>"
}
]
}
]
},
"divination": {
"ref": "divination",
"name": "Divination",
"spells": [
{
"ref": "foresight",
"name": "Foresight",
"number": "1",
"rep": true,
"cast": [
{
"range": "18",
"types": ["Augment", "Replicable"],
"duration": 1,
"value": "7"
}
],
"description": "The target gains +Y Def and +X Off, where X and Y depend on the Game Turn number when the spell was cast.<br>\n\t\n\t<br> • <span class=\"textbf\">Game Turn 1-2</span>: +0 Def and +4 Off\n\t\t<br> • <span class=\"textbf\">Game Turn 3-4</span>: +2 Def and +2 Off\n\t\t<br> • <span class=\"textbf\">Game Turn 5-6</span>: +4 Def and +0 Off\n\t<br>\n\t\n\tNo model or unit can be affected by more than one instance of this spell simultaneously."
},
{
"number": "2",
"name": "Fate's Judgement",
"ref": "fate_judgement",
"description": "The target suffers D6+X hits, where X is the Game Turn number when the spell was cast. These hits are <span class=\"textbf\">set</span> to wound on 4+ and are resolved with AP 0 and <span class=\"textbf\">Magical Attacks</span>.",
"cast": [
{
"value": "6",
"range": "24",
"types": ["Damage", "Hex", "Missile"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
},
{
"number": "3",
"name": "The Stars Align",
"description": "Target unit must reroll failed to-hit rolls.",
"cast": [
{
"value": "10",
"range": "18",
"types": ["Augment"],
"duration": 1,
"effects": [
{
"type": "buff",
"rule": {
"id": "divine_attacks"
}
},
{
"type": "special"
}
]
}
],
"ref": "the_stars_align"
},
{
"ref": "chance_of_redemption",
"name": "Chance of Redemption",
"number": "4",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 0,
"value": "9"
}
],
"description": "The target may immediately perform a 5\" Magical Move.<br>\n\tIn addition, it gains <span class=\"textbf\">Divine Attacks (Melee)</span>."
},
{
"ref": "inescapable_doom",
"name": "Inescapable Doom",
"number": "5",
"cast": [
{
"range": "24",
"types": ["Damage", "Hex", "Missile"],
"duration": 0,
"value": "11"
}
],
"description": "Immediately when the spell is cast, and at the start of each of the caster's subsequent Magic Phases, the target suffers 1 hit that wounds automatically with AP 10 and <span class=\"textbf\">Magical Attacks</span>.<br>\n\t<br>\n\tNo model or unit can be affected by more than one instance of this spell simultaneously."
},
{
"ref": "augury_of_dispair",
"name": "Augury of Dispair",
"number": "6",
"cast": [
{
"range": "36",
"types": ["Hex"],
"duration": 0,
"value": "11"
}
],
"description": "The target suffers -3 Off, -3 Agi (to a minimum of 1), and treats all Terrain Features as <span class=\"textbf\">Dangerous Terrain</span>, including Open Terrain."
}
]
},
"druidism": {
"ref": "druidism",
"name": "Druidism",
"spells": [
{
"number": "1",
"rep": true,
"name": "Fountain of Youth",
"description": "Raise 1 HP in the target's Health Pool.<br>\n<br>\nNo model can Raise more than 1 HP per turn from this spell.",
"cast": [
{
"value": "7",
"range": "36",
"types": ["Augment", "Focused", "Replicable"],
"duration": 0
}
],
"ref": "fountain_of_youth"
},
{
"number": "2",
"name": "Entwining Roots",
"description": "Range: can be cast 6\" from Forest.<br/><br/>The target suffers -2\" Cha and -2\" Mob, both to a minimum of 2\".<br><br/>In addition the target suffers −2 Agi to a minimum of 1.",
"cast": [
{
"value": "7",
"range": "24",
"types": ["Hex"],
"duration": 1
}
],
"ref": "entwining_roots"
},
{
"number": "3",
"name": "Healing Waters",
"ref": "healing_waters",
"description": "Range: You can measure the distance either from the Caster or from a chosen Water Terrain.<br/><br/>The target gains Hard Target (1) and Magic Resistance (2).",
"cast": [
{
"value": "10",
"range": "6",
"types": ["Aura", "Augment"],
"duration": 1
}
]
},
{
"ref": "nature's_venom",
"name": "Nature's Venom",
"number": "4",
"cast": [
{
"range": "18",
"types": ["Damage", "Hex"],
"duration": 0,
"value": "8"
}
],
"description": "Range: can be cast 6\" from Field.<br/><br/>The target suffers 3D3 hits with Str 3, AP 1, and Magical Attacks. Against units with Light Troops these hits are instead resolved with Str 4 and AP 2."
},
{
"number": "5",
"name": "Stone Skin",
"description": "The target gains +1 Res, and Melee Attacks allocated towards it <span class=\"textbf\">never</span> wound on better than 4+.",
"cast": [
{
"value": "11",
"range": "18",
"types": ["Augment"],
"duration": 1
}
],
"ref": "stone_skin"
},
{
"ref": "earth's_blessing",
"name": "Earth's Blessing",
"number": "6",
"cast": [
{
"range": "24",
"types": ["Ground*"],
"duration": 0,
"value": "11"
}
],
"description": "Place a round Forest, Field or Water Terrain feature (declare which when casting the spell) with a 6\" diameter on the target. This Terrain Feature has <span class=\"textbf\">Dangerous Terrain</span>. If the chosen Terrain Feature has already been created by the caster using this spell, first remove the Terrain Feature from the Battlefield before placing it again on the target."
}
]
},
"evocation": {
"ref": "evocation",
"name": "Evocation",
"spells": [
{
"number": "1",
"name": "Whispers of the Veil",
"ref": "whispers_of_the_veil",
"rep": true,
"description": "The target suffers -1 Res.<br>\n\t<br>\n\tNo model or unit can be affected by more than one instance of this spell simultaneously.",
"cast": [
{
"value": "7",
"range": "18",
"types": ["Hex", "Replicable"],
"duration": 1
}
]
},
{
"number": "2",
"name": "Touch of the Reaper",
"description": "The target suffers D3+1 hits with Str 9, AP 10, and <span class=\"textbf\">Magical Attacks</span>.<br>\n\tWhen rolling to wound with this attack, substitute the target's Res with its Cou.",
"cast": [
{
"value": "7",
"range": "24",
"types": ["Hex", "Damage"],
"duration": 0
}
],
"ref": "touch_of_the_reaper"
},
{
"number": "3",
"name": "Danse Macabre",
"description": "The target may immediately perform a 4\" Magical Move.<br>\n\tIn addition, it gains Dying Blow, Ghost Step.",
"cast": [
{
"value": "9",
"range": "8",
"types": ["Aura", "Augment"],
"duration": 1
}
],
"ref": "danse_macabre"
},
{
"ref": "chorus_of_the_damned",
"name": "Chorus of the Damned",
"number": "4",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 0,
"value": "10"
}
],
"description": "The target gains Distracting (1), Horror."
},
{
"number": "5",
"name": "Spectral Blades",
"ref": "spectral_blades",
"description": "Standard Melee Attacks from Rank-and-File models in the target have their Str <span class=\"textbf\">always</span> <span class=\"textbf\">set</span> to 4, AP <span class=\"textbf\">always</span> <span class=\"textbf\">set</span> to 4, and gain <span class=\"textbf\">Magical Attacks</span>.",
"cast": [
{
"value": "11",
"range": "18",
"types": ["Augment"],
"duration": 1,
"effects": [
{
"type": "special"
}
]
}
]
},
{
"ref": "soul_blight",
"name": "Soul Blight",
"number": "6",
"cast": [
{
"range": "24",
"types": ["Hex", "Damage", "Missile"],
"duration": 0,
"value": "11"
}
],
"description": "The target takes a Courage Test:\n\t\n\t\t<br> • If passed it suffers D6 hits.\n\t\t<br> • If failed it suffers 2D6 hits.\n\t<br>\n\tHits are with Str 9, AP 10, and <span class=\"textbf\">Magical Attacks</span>.<br>\n\tWhen rolling to wound with this attack, substitute the target's Res with its Cou."
}
]
},
"occultism": {
"ref": "occultism",
"name": "Occultism",
"spells": [
{
"ref": "the_devouring_dark",
"name": "The Devouring Dark",
"number": "1",
"rep": true,
"cast": [
{
"range": "18",
"types": ["Damage", "Hex"],
"duration": 0,
"value": "7"
}
],
"description": "The target suffers a hit with <span class=\"textbf\">Area Attack (2×2)</span>, Str 5, AP 2, and <span class=\"textbf\">Magical Attacks</span>."
},
{
"number": "2",
"ref": "hand_glory",
"name": "Hand of Glory",
"description": "The target gains <span class=\"textbf\">Aegis (6+)</span> and <span class=\"textbf\">Aegis (+1, max. 3+)</span>.<br>\n\t<br>\n\tThe Sacrifice may be performed for this spell.",
"cast": [
{
"value": "8",
"range": "12",
"types": ["Augment"],
"duration": 1,
"effects": [
{
"type": "addRule",
"rule": {
"id": "aegis",
"parameters": ["6"]
}
}
]
}
]
},
{
"ref": "blood_curse",
"name": "Blood Curse",
"number": "3",
"cast": [
{
"range": "18",
"types": ["Hex"],
"duration": 0,
"value": "9"
}
],
"description": "The target suffers -1 Str and -1 AP.<br>\n\t<br>\n\tThe Sacrifice may be performed for this spell."
},
{
"number": "4",
"ref": "pentagram_pain",
"name": "Pentagram of Pain",
"description": "The target suffers 3 hits, with Str 5, AP 2, and <span class=\"textbf\">Magical Attacks</span>. If one ore more unsaved wounds are caused with this spell, the Caster of the spell Recovers 1 HP.<br/><br/>The Sacrifice may be performed for this spell.",
"cast": [
{
"value": "9",
"range": "12",
"types": ["Aura*", "Universal"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
},
{
"number": "5",
"ref": "grave_calls",
"name": "The Grave Calls",
"description": "The target suffers 8 hits, with Str 5, AP 2, and <span class=\"textbf\">Magical Attacks</span>.<br>\n\t<br>\n\tThe Sacrifice may be performed for this spell.",
"cast": [
{
"value": "11",
"range": "12",
"types": ["Damage", "Hex"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
},
{
"ref": "umbral_majesty",
"name": "Umbral Majesty",
"number": "6",
"cast": [
{
"types": ["Augment", "Caster"],
"duration": 0,
"value": "11"
}
],
"description": "The target gains <span class=\"textbf\">Dying Blow</span>, and a single model part in the target gains <span class=\"textbf\">Grind Attack (4, Str 5, AP 2, Magical Attacks)</span>.<br>\n\tWherever possible, enemy models must allocate their Melee Attacks towards a Health Pool that is not the target."
}
]
},
"pyromancy": {
"ref": "pyromancy",
"name": "Pyromancy",
"spells": [
{
"number": "1",
"ref": "fireball",
"name": "Fireball",
"rep": true,
"description": "The target suffers 2D3 \n\thits with Str 4, AP 0, Flaming Attacks, Magical Attacks\n.",
"cast": [
{
"value": "6",
"range": "36",
"types": ["Damage", "Hex", "Missile", "Replicable"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
]
},
{
"number": "2",
"name": "Flaming Swords",
"ref": "flaming_swords",
"description": "The target gains +1 to wound, Magical Attacks, Flaming Attacks.",
"cast": [
{
"value": "7",
"range": "18",
"types": ["Augment"],
"duration": 1,
"effects": [
{
"type": "buff",
"rule": {
"id": "wound",
"value": 1
}
},
{
"type": "addRule",
"rule": {
"id": "flamming_attacks"
}
},
{
"type": "addRule",
"rule": {
"id": "magical_attacks"
}
}
]
}
]
},
{
"ref": "dragon's_roar",
"name": "Dragon's Roar",
"number": "3",
"cast": [
{
"range": "24",
"types": ["Augment", "Focused*"],
"duration": 0,
"value": "9"
}
],
"description": "A single model part in the target gains <span class=\"textbf\">Breath Attack (Str 4, AP 0, Flaming Attacks, Magical Attacks)</span>, and<br>\n\t<span class=\"textbf\">Grind Attack (2D6, Str 4, AP 0, Flaming Attacks, Magical Attacks)</span>."
},
{
"number": "4",
"name": "Pyroclastic Flow",
"description": "The target suffers 5D3 \n\thits with Str 4, AP 0, Flaming Attacks, Magical Attacks\n.",
"cast": [
{
"value": "9",
"range": "24",
"types": ["Damage", "Hex", "Missile"],
"duration": 0,
"effects": [
{
"type": "damage"
}
]
}
],
"ref": "pyroclastic_flow"
},
{
"ref": "pillars_of_fire",
"name": "Pillars of Fire",
"number": "5",
"cast": [
{
"range": "18",
"types": ["Augment"],
"duration": 0,
"value": "11"
}
],
"description": "Standard Melee Attacks from Rank-and-File models in the target hit automatically, have their Str <span class=\"textbf\">always</span> <span class=\"textbf\">set</span> to 4, AP <span class=\"textbf\">always</span> <span class=\"textbf\">set</span> to 0, and gain Flaming Attacks,Magical Attacks."
},
{
"ref": "cage_of_embers",
"name": "Cage of Embers",
"number": "6",
"cast": [
{
"range": "36",
"types": ["Hex"],
"duration": 0,
"value": "10"
}
],
"description": "Immediately when the spell is cast, and whenever the target moves, it suffers 2D3 \n\thits with Str 4, AP 0, Flaming Attacks, Magical Attacks\n. Afterwards, it gains <span class=\"textbf\">Weakness (Flaming Attacks)</span>."
}
]
},
"shamanism": {
"ref": "shamanism",
"name": "Shamanism",
"spells": [
{
"ref": "predator's_instinct",
"name": "Predator's Instinct",
"number": "1",
"rep": true,
"cast": [
{
"range": "8",
"types": ["Augment", "Aura", "Replicable"],
"duration": 0,
"value": "7"
}
],
"description": "The target gains +2\" Cha and <span class=\"textbf\">Resistance (Ranged Attacks)</span>.<br>\n\t<br>\n\tNo model or unit can be affected by more than one instance of this spell simultaneously."
},
{
"number": "2",
"name": "Awaken the Beast",
"ref": "awaken_beast",
"description": "The target gains +1 Str and +1 AP.",
"cast": [
{
"value": "7",
"range": "18",
"types": ["Augment"],
"duration": 1
}
]
},
{
"number": "3",
"name": "Swarm of Insects",
"ref": "swarm_insects",
"description": "Immediately when the spell is cast, the target suffers 5D6 hits with AP 0 and <span class=\"textbf\">Magical Attacks</span>. These hits <span class=\"textbf\">always</span> wound on 6+.<br>\n\tIn addition, it suffers -1 to hit with Shooting Attacks.",
"cast": [
{
"value": "9",
"range": "36",
"types": ["Hex", "Damage", "Missile"],
"duration": 1
}
]
},
{
"number": "4",
"name": "Savage Fury",
"ref": "savage_fury",
"description": "The target gains Fury, Fearless, Frenzy and Unruly.",
"cast": [
{
"value": "8",
"range": "18",
"types": ["Universal"],
"duration": 1
}
]
},
{
"number": "5",
"name": "Totemic Summon",
"ref": "totemic_summon",
"description": "Summon a Totemic Beast (profile below), that is immediately placed on the Battlefield using the rules for <span class=\"textbf\">Ambush (Board Edge)</span>.<br/><table><tr><th>Cha/Mob</th><th>Cou</th></tr><tr><td>3D6\"</td><td>7</td><td>Exclusive, Fearless, Random Movement (3D6″), Unstable</td></tr></table><table><tr><th>HP</th><th>Def</th><th>Res</th><th>Arm</th><tr><td>4</td><td>3</td><td>5</td><td>0</td></tr></table><table><tr><th>Att</th><th>Off</th><th>Str</th><th>AP</th><th>Agi</th><tr><td>5</td><td>3</td><td>5</td><td>2</td><td>3</td></tr></table>",