-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0_spells.json
2166 lines (2166 loc) · 66 KB
/
0_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
[
{
"id": "transformmegucahope",
"type": "SPELL",
"name": { "str": "Prisma Pink Form" },
"description": "Transform into Prisma Pink.",
"valid_targets": [ "self" ],
"flags": [ "VERBAL", "NO_LEGS" ],
"effect": "spawn_item",
"effect_str": "megucahopearmor",
"affected_body_parts": [ "torso" ],
"base_casting_time": 100,
"base_energy_cost": 100,
"energy_source": "MANA",
"spell_class": "NONE",
"difficulty": 1,
"max_level": 10,
"min_range": 0,
"max_range": 0,
"min_damage": 1,
"max_damage": 1,
"min_duration": 6000,
"max_duration": 30000,
"duration_increment": 1200
},
{
"id": "transformmegucacalm",
"type": "SPELL",
"name": { "str": "Altus Aqua Form" },
"description": "Transform into Altus Aqua.",
"valid_targets": [ "self" ],
"flags": [ "VERBAL", "NO_LEGS" ],
"effect": "spawn_item",
"effect_str": "megucacalmarmor",
"affected_body_parts": [ "torso" ],
"base_casting_time": 100,
"base_energy_cost": 100,
"energy_source": "MANA",
"spell_class": "NONE",
"difficulty": 1,
"max_level": 10,
"min_range": 0,
"max_range": 0,
"min_damage": 1,
"max_damage": 1,
"min_duration": 6000,
"max_duration": 30000,
"duration_increment": 1200
},
{
"id": "transformmegucafeeling",
"type": "SPELL",
"name": { "str": "Crush Cream Form" },
"description": "Transform into Crush Cream.",
"valid_targets": [ "self" ],
"flags": [ "VERBAL", "NO_LEGS" ],
"effect": "spawn_item",
"effect_str": "megucafeelingarmor",
"affected_body_parts": [ "torso" ],
"base_casting_time": 100,
"base_energy_cost": 100,
"energy_source": "MANA",
"spell_class": "NONE",
"difficulty": 1,
"max_level": 10,
"min_range": 0,
"max_range": 0,
"min_damage": 1,
"max_damage": 1,
"min_duration": 6000,
"max_duration": 30000,
"duration_increment": 1200
},
{
"id": "altus_aqua_crystal",
"type": "SPELL",
"name": "Crystallize Mana",
"description": "Crystallizes mana into solid form, utilizing your innate magic to skip the process to arrive at the result.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "CONCENTRATE" ],
"difficulty": 0,
"min_damage": 20,
"max_damage": 20,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "crystallized_mana",
"energy_source": "MANA",
"base_energy_cost": 200,
"final_energy_cost": 200,
"base_casting_time": 10000,
"final_casting_time": 10000
},
{
"id": "meguca_repairplate",
"type": "SPELL",
"name": "Crystallize Hope",
"description": "Crystallizes your will into a solid form suitable for repairing your magical gears.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "CONCENTRATE" ],
"difficulty": 0,
"min_damage": 10,
"max_damage": 10,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "meguca_plate",
"energy_source": "MANA",
"base_energy_cost": 200,
"final_energy_cost": 200,
"base_casting_time": 10000,
"final_casting_time": 10000
},
{
"id": "ph_spell1",
"type": "SPELL",
"name": "Prisma Beam",
"description": "Heart is fluttering~! Punish the evil doers! Fire a beam at at them!",
"message": "Prisma Beam~!",
"valid_targets": [ "hostile", "ground" ],
"effect": "line_attack",
"damage_type": "none",
"base_casting_time": 200,
"base_energy_cost": 150,
"energy_source": "MANA",
"spell_class": "NONE",
"flags": [ "LOUD", "VERBAL" ],
"difficulty": 1,
"max_level": 20,
"min_damage": 80,
"max_damage": 230,
"damage_increment": 7.5,
"min_range": 6,
"max_range": 15,
"range_increment": 0.45,
"min_aoe": 1,
"max_aoe": 1,
"aoe_increment": 0.0
},
{
"id": "ph_spell2",
"type": "SPELL",
"name": "Prisma Reversal",
"description": "Rather than 'healing' a wound, it forces the event of being wounded to reverse. The distinction doesn't matter to you, so you just say this heals people.",
"valid_targets": [ "self", "ally" ],
"min_damage": -30,
"max_damage": -60,
"damage_increment": -2.0,
"max_level": 10,
"min_range": 0,
"max_range": 4,
"range_increment": 0.75,
"effect": "target_attack",
"base_casting_time": 300,
"base_energy_cost": 800,
"energy_increment": -25.0,
"final_energy_cost": 300,
"flags": [ "VERBAL" ],
"spell_class": "NONE",
"difficulty": 5,
"energy_source": "MANA"
},
{
"id": "ph_spell3",
"type": "SPELL",
"name": "Prisma Needler",
"description": "Even surrounded by the enemy, your Heart burns strong! Fire, Prism Needler! Explodes several sharp projectiles in an area to slowly whittle them to size.",
"message": "Prisma Needler~!",
"valid_targets": [ "hostile", "ground" ],
"effect": "projectile_attack",
"damage_type": "none",
"base_casting_time": 200,
"base_energy_cost": 300,
"energy_increment": -10.0,
"final_energy_cost": 100,
"energy_source": "MANA",
"spell_class": "NONE",
"flags": [ "LOUD", "VERBAL" ],
"difficulty": 4,
"max_level": 20,
"min_damage": 40,
"max_damage": 90,
"damage_increment": 7.5,
"min_range": 6,
"max_range": 20,
"range_increment": 0.75,
"min_dot": 10,
"max_dot": 30,
"dot_increment": 2,
"min_duration": 1200,
"max_duration": 6000,
"duration_increment": 300,
"min_aoe": 3,
"max_aoe": 20,
"aoe_increment": 1.0
},
{
"id": "ph_spell4",
"type": "SPELL",
"name": "Kaleidoscope End",
"description": "Against the overwhelming dark, shoot your blade of light through its heart! Carry your hopes and dreams, defeat the enemy in front of you!",
"message": "By my beating Heart, by the hopes of everyone that yet live, I punish you! Kaleidoscope End!",
"valid_targets": [ "hostile", "ground" ],
"effect": "line_attack",
"damage_type": "none",
"base_casting_time": 500,
"base_energy_cost": 1500,
"energy_increment": -20.0,
"final_energy_cost": 1100,
"energy_source": "MANA",
"spell_class": "NONE",
"flags": [ "LOUD", "VERBAL" ],
"difficulty": 10,
"max_level": 20,
"min_damage": 400,
"max_damage": 950,
"damage_increment": 75,
"min_range": 6,
"max_range": 20,
"range_increment": 0.75,
"min_dot": 0,
"max_dot": 0,
"dot_increment": 0,
"min_aoe": 3,
"max_aoe": 3,
"aoe_increment": 0
},
{
"id": "aa_spell1",
"type": "SPELL",
"name": "Ground Frost",
"description": "Freeze unsuspecting foes's feet to the ground. Strike their heart while they struggle in vain.",
"message": "Freeze.",
"effect": "target_attack",
"effect_str": "effect_ground_freeze",
"affected_body_parts": [ "foot_l", "foot_r" ],
"valid_targets": [ "hostile" ],
"max_level": 20,
"min_damage": 30,
"max_damage": 50,
"damage_increment": 1.0,
"min_aoe": 2,
"max_aoe": 20,
"aoe_increment": 1.0,
"min_range": 5,
"max_range": 20,
"range_increment": 2.0,
"min_duration": 1000,
"max_duration": 5000,
"duration_increment": 200,
"spell_class": "NONE",
"flags": [ "VERBAL" ],
"base_casting_time": 200,
"base_energy_cost": 200,
"energy_increment": -5.0,
"final_energy_cost": 100,
"energy_source": "MANA",
"difficulty": 1,
"damage_type": "cold"
},
{
"id": "aa_spell2",
"type": "SPELL",
"name": "Freeze Barrier",
"description": "A sheet of pure ice acting as a shield. Withstanding an assault to wait for an opening.",
"message": "Freeze Barrier, deploy!",
"valid_targets": [ "self", "ally" ],
"flags": [ "NO_LEGS", "VERBAL" ],
"min_damage": 1,
"max_damage": 1,
"effect": "spawn_item",
"effect_str": "shield_ice",
"energy_source": "MANA",
"spell_class": "NONE",
"difficulty": 4,
"max_level": 20,
"base_casting_time": 100,
"base_energy_cost": 200,
"min_duration": 20000,
"max_duration": 120000,
"duration_increment": 6000
},
{
"id": "aa_spell3",
"type": "SPELL",
"name": { "str": "Gunpowder Rondo" },
"description": "Conjures up numerous guns to shoot enemies around you. Ensures being surrounded only gives you more targets to shoot.",
"message": "Shoot! Gunpowder Rondo!",
"valid_targets": [ "ground" ],
"flags": [ "VERBAL" ],
"effect": "summon",
"effect_str": "mon_aaflintlock",
"spell_class": "NONE",
"energy_source": "MANA",
"difficulty": 5,
"max_level": 20,
"base_casting_time": 200,
"casting_time_increment": -2.0,
"final_casting_time": 160,
"base_energy_cost": 450,
"energy_increment": -10.0,
"final_energy_cost": 250,
"min_damage": 2,
"max_damage": 13,
"damage_increment": 0.75,
"min_range": 1,
"max_range": 5,
"range_increment": 0.25,
"min_aoe": 3,
"max_aoe": 3,
"min_duration": 1000,
"max_duration": 3000,
"duration_increment": 200
},
{
"id": "aa_spell4",
"type": "SPELL",
"name": "The World: Freeze",
"description": "The concept of 'freezing' does not apply only to materials, but also time itself. If you were to exert your will and all your efforts, even time itself will bend to you. This is truly, your World.",
"message": "Freeze! The World!",
"valid_targets": [ "self" ],
"flags": [ "NO_LEGS", "VERBAL" ],
"effect": "target_attack",
"effect_str": "world_freeze",
"spell_class": "NONE",
"energy_source": "MANA",
"difficulty": 10,
"max_level": 20,
"base_casting_time": 500,
"casting_time_increment": -2.5,
"final_casting_time": 450,
"base_energy_cost": 1600,
"energy_increment": -20.0,
"final_energy_cost": 1200,
"min_duration": 700,
"max_duration": 2700,
"duration_increment": 100
},
{
"id": "cc_spell4",
"type": "SPELL",
"name": "Crush Cream Overdrive",
"description": "A hero never gives up. Nor will they give less than 100% of their entire being. Go plus ultra with 200% of your entire being!",
"message": "Resonate, my Heart!",
"valid_targets": [ "self" ],
"flags": [ "NO_LEGS", "VERBAL" ],
"effect": "target_attack",
"effect_str": "megucafeelingoverdrive",
"spell_class": "NONE",
"energy_source": "MANA",
"difficulty": 1,
"max_level": 20,
"base_casting_time": 500,
"casting_time_increment": -2.5,
"final_casting_time": 450,
"base_energy_cost": 1000,
"energy_increment": -10.0,
"final_energy_cost": 800,
"min_duration": 1500,
"max_duration": 11500,
"duration_increment": 500,
"extra_effects": [ { "id": "overdrivefatiguespell" } ]
},
{
"id": "overdrivefatiguespell",
"type": "SPELL",
"name": "Overdrive Fatigue",
"description": "Secondary effect of Crystallize Mana",
"valid_targets": [ "self" ],
"effect": "target_attack",
"effect_str": "overdrivefatigue",
"max_level": 1,
"min_duration": 60000,
"max_duration": 60000
},
{
"id": "destroy_cream",
"type": "SPELL",
"name": { "str": "Cream Destruction Wave" },
"description": "Cream Wave destruction",
"extra_effects": [ { "id": "destroy_creammain", "hit_self": false, "max_level": 10 } ],
"valid_targets": [ "ground" ],
"message": "",
"effect": "bash",
"max_level": 1,
"min_damage": 300,
"max_damage": 300,
"damage_increment": 0,
"min_aoe": 2,
"max_aoe": 2,
"aoe_increment": 0
},
{
"id": "destroy_creammain",
"type": "SPELL",
"name": { "str": "Cream Destruction Wave Main" },
"description": "im banging rocks here how does this work",
"valid_targets": [ "ground" ],
"effect": "ter_transform",
"flags": [ "SILENT" ],
"effect_str": "cream_crush",
"message": "",
"max_level": 1,
"min_damage": 4,
"max_damage": 4,
"damage_increment": 0,
"min_aoe": 2,
"max_aoe": 2,
"aoe_increment": 0
},
{
"id": "guntrick_ammospecial",
"type": "SPELL",
"name": "Gun Trick Special Load",
"description": "Crystallizes mana into special ammo. This one is particularly cheap and easy to make.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 3,
"min_damage": 24,
"max_damage": 24,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "special_trick",
"energy_source": "MANA",
"base_energy_cost": 500,
"final_energy_cost": 500,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"id": "guntrick_ammofire",
"type": "SPELL",
"name": "Gun Trick Hot Load",
"description": "Crystallizes mana into special ammo. A hot load for a hot trick.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 3,
"min_damage": 12,
"max_damage": 12,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "fire_trick",
"energy_source": "MANA",
"base_energy_cost": 500,
"final_energy_cost": 500,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"id": "guntrick_ammoblast",
"type": "SPELL",
"name": "Gun Trick Blast Load",
"description": "Crystallizes mana into special ammo. Big ammo for big roughnecks.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 3,
"min_damage": 3,
"max_damage": 3,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "blast_trick",
"energy_source": "MANA",
"base_energy_cost": 500,
"final_energy_cost": 500,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"id": "guntrick_ammolast",
"type": "SPELL",
"name": "Gun Trick Last Load",
"description": "Crystallizes mana into special ammo. The last resort and the final trick.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 3,
"min_damage": 1,
"max_damage": 1,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "last_trick",
"energy_source": "MANA",
"base_energy_cost": 800,
"final_energy_cost": 800,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"id": "rr_horsecall",
"type": "SPELL",
"name": "Geist Horse Call",
"description": "A single geist is summoned",
"valid_targets": [ "ground" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 1,
"min_damage": 1,
"max_damage": 1,
"duration_increment": 1,
"min_range": 3,
"max_range": 3,
"effect": "summon",
"effect_str": "meguca_horse",
"energy_source": "MANA",
"base_energy_cost": 1000,
"final_energy_cost": 1000,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"id": "rr_yoke",
"type": "SPELL",
"name": "Create Magic Yoke",
"description": "Creates a magical yoke pulls out the latent strength of an animal. Shows its true potential when a Geist horse is yoked.",
"valid_targets": [ "self" ],
"spell_class": "NONE",
"flags": [ "PERMANENT", "NO_LEGS", "SILENT" ],
"difficulty": 1,
"min_damage": 1,
"max_damage": 1,
"duration_increment": 1,
"effect": "spawn_item",
"effect_str": "rideryoke_harness",
"energy_source": "MANA",
"base_energy_cost": 250,
"final_energy_cost": 250,
"base_casting_time": 6000,
"final_casting_time": 6000
},
{
"type": "SPELL",
"id": "summon_moonblades",
"name": "Summon Moonblades",
"description": "Summons compressed, sharp crescent blades that slice up the target.",
"flags": [ "SILENT", "RANDOM_TARGET", "RANDOM_DAMAGE", "RANDOM_AOE" ],
"valid_targets": [ "ground" ],
"effect": "summon",
"effect_str": "moonblade",
"min_damage": 8,
"max_damage": 14,
"min_aoe": 3,
"max_aoe": 6,
"min_duration": 600,
"max_duration": 600
},
{
"type": "SPELL",
"id": "moonblades_attack",
"name": "Frozen Lunar Tundra",
"description": "An attack by moonblades.",
"effect": "projectile_attack",
"damage_type": "cold",
"valid_targets": [ "ally", "hostile", "ground" ],
"flags": [ "SILENT", "RANDOM_DAMAGE" ],
"min_damage": 8,
"max_damage": 14,
"min_range": 1,
"max_range": 1
},
{
"id": "blood_ignition",
"type": "SPELL",
"name": "Blood Ignition",
"description": "Unleash droplets of your blood in all directions and burn them. Conflagrate them as they pierce and flare your enemies.",
"message": "Blood Demon Art: Blood Ignition!",
"sprite": "fd_blood",
"valid_targets": [ "hostile", "ally" ],
"effect": "target_attack",
"damage_type": "stab",
"base_casting_time": 250,
"base_energy_cost": 250,
"energy_source": "HP",
"flags": [ "NO_HANDS", "NO_LEGS", "RANDOM_TARGET" ],
"difficulty": 2,
"max_level": 10,
"min_damage": 20,
"max_damage": 40,
"damage_increment": 2,
"min_range": 4,
"max_range": 8,
"range_increment": 0.4,
"extra_effects": [ { "id": "blood_ignition_1" }, { "id": "blood_ignition_1" }, { "id": "blood_ignition_1" } ]
},
{
"id": "blood_ignition_1",
"type": "SPELL",
"name": "Blood Ignition I",
"description": "Unleash droplets of your blood in all directions and burn them. Conflagrate them as they pierce and flare your enemies. First part.",
"sprite": "fd_blood",
"valid_targets": [ "hostile", "ally" ],
"effect": "target_attack",
"damage_type": "cold",
"flags": [ "RANDOM_TARGET" ],
"min_damage": 30,
"max_damage": 30,
"min_range": 8,
"max_range": 8,
"extra_effects": [ { "id": "blood_ignition_2" }, { "id": "blood_ignition_2" }, { "id": "blood_ignition_2" } ]
},
{
"id": "blood_ignition_2",
"type": "SPELL",
"name": "Blood Ignition II",
"description": "Unleash droplets of your blood in all directions and burn them. Conflagrate them as they pierce and flare your enemies. Second part.",
"sprite": "fd_blood",
"valid_targets": [ "hostile", "ally" ],
"effect": "target_attack",
"damage_type": "bio",
"flags": [ "RANDOM_TARGET" ],
"min_damage": 30,
"max_damage": 30,
"min_range": 8,
"max_range": 8,
"extra_effects": [ { "id": "blood_ignition_3" }, { "id": "blood_ignition_3" }, { "id": "blood_ignition_3" } ]
},
{
"id": "blood_ignition_3",
"type": "SPELL",
"name": "Blood Ignition III",
"description": "Unleash droplets of your blood in all directions and burn them. Conflagrate them as they pierce and flare your enemies. Third part.",
"sprite": "fd_blood",
"valid_targets": [ "hostile", "ally" ],
"effect": "target_attack",
"damage_type": "acid",
"flags": [ "RANDOM_TARGET" ],
"min_damage": 30,
"max_damage": 30,
"min_range": 8,
"max_range": 8
},
{
"id": "blood_ambrosia",
"type": "SPELL",
"name": "Blood Ambrosia",
"description": "Concentrate all your ills into a single bodily part and vehemently separate it.",
"message": "Blood Demon Art: Blood Ambrosia!",
"sprite": "fd_blood",
"flags": [ "NO_HANDS", "NO_LEGS" ],
"effect": "target_attack",
"effect_str": "effect_blood_ambrosia",
"valid_targets": [ "self" ],
"min_duration": 200,
"max_duration": 200,
"max_level": 10,
"energy_source": "HP",
"base_energy_cost": 150,
"base_casting_time": 150,
"final_casting_time": 10,
"casting_time_increment": -14,
"difficulty": 2
},
{
"id": "blood_life_cradle",
"type": "SPELL",
"name": "Blood Life Cradle",
"description": "Agitate your flesh and cause it to uncontrollably erupt into a state of manic regeneration.",
"message": "Blood Demon Art: Blood Life Cradle!",
"sprite": "fd_blood",
"valid_targets": [ "self" ],
"min_damage": -150,
"max_damage": -400,
"damage_increment": -25.0,
"max_level": 10,
"effect": "target_attack",
"base_casting_time": 150,
"base_energy_cost": 150,
"flags": [ "NO_HANDS", "NO_LEGS" ],
"difficulty": 2,
"energy_source": "HP"
},
{
"id": "blood_sword_world",
"type": "SPELL",
"name": { "str": "Blood Sword World" },
"description": "The puritan pain of your person shall be made preternatural.",
"message": "False Domain Expansion: Blood Sword World!",
"sprite": "fd_blood",
"valid_targets": [ "ground" ],
"flags": [ "NO_HANDS", "NO_LEGS", "IGNORE_WALLS" ],
"effect": "summon",
"effect_str": "moonblade",
"difficulty": 2,
"max_level": 10,
"min_damage": 24,
"max_damage": 64,
"damage_increment": 4.0,
"min_aoe": 5,
"max_aoe": 15,
"aoe_increment": 1.0,
"energy_source": "HP",
"base_energy_cost": 200,
"final_energy_cost": 150,
"energy_increment": -5,
"base_casting_time": 150,
"final_casting_time": 50,
"casting_time_increment": -10,
"min_duration": 800,
"max_duration": 6400,
"duration_increment": 580
},
{
"id": "star_platinum",
"type": "SPELL",
"name": { "str": "Star Platinum" },
"description": "Come forth, and appear before me, STAR PLATINUM!",
"sprite": "fd_dazzling",
"message": "ORA! STAR PLATINUM!",
"valid_targets": [ "ground" ],
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL" ],
"effect": "summon",
"effect_str": "mon_star",
"difficulty": 5,
"max_level": 10,
"min_damage": 1,
"max_damage": 1,
"min_range": 2,
"max_range": 10,
"range_increment": 1.5,
"energy_source": "MANA",
"base_energy_cost": 250,
"final_energy_cost": 150,
"energy_increment": -10,
"base_casting_time": 150,
"final_casting_time": 50,
"casting_time_increment": -10,
"min_duration": 900,
"max_duration": 6400,
"duration_increment": 550
},
{
"type": "SPELL",
"id": "npc_star_platinum",
"name": "NPC Star Platinum",
"description": "The Star Platinum spell but for NPCs.",
"sprite": "fd_dazzling",
"message": "ORA! STAR PLATINUM!",
"valid_targets": [ "self", "ally", "hostile", "ground" ],
"flags": [ "RANDOM_TARGET", "HOSTILE_SUMMON" ],
"effect": "summon",
"effect_str": "mon_star",
"min_damage": 1,
"max_damage": 1,
"min_aoe": 2,
"max_aoe": 2,
"min_range": 2,
"max_range": 2,
"min_duration": 900,
"max_duration": 900
},
{
"id": "the_world",
"type": "SPELL",
"name": "The World",
"description": "Assimilate yourself into a slipstream in the timescape.",
"sprite": "fd_dazzling",
"message": "Star Platinum: The World!",
"effect": "mod_moves",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL", "SILENT" ],
"valid_targets": [ "self" ],
"min_damage": 900,
"max_damage": 3600,
"damage_increment": 270,
"max_level": 10,
"energy_source": "MANA",
"base_energy_cost": 250,
"final_energy_cost": 150,
"energy_increment": -10,
"base_casting_time": 150,
"final_casting_time": 50,
"casting_time_increment": -10,
"difficulty": 5
},
{
"id": "king_crimson",
"type": "SPELL",
"name": "King Crimson",
"description": "Assimilate others into a slipstream in the timescape.",
"sprite": "fd_dazzling",
"message": "Star Platinum: King Crimson!",
"effect": "mod_moves",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL", "SILENT", "IGNORE_WALLS" ],
"valid_targets": [ "ground", "hostile", "ally" ],
"min_damage": 2700,
"max_damage": 2700,
"min_aoe": 9,
"max_aoe": 18,
"aoe_increment": 0.9,
"max_level": 10,
"energy_source": "MANA",
"base_energy_cost": 250,
"final_energy_cost": 150,
"energy_increment": -10,
"base_casting_time": 150,
"final_casting_time": 50,
"casting_time_increment": -10,
"difficulty": 5,
"extra_effects": [ { "id": "king_crimson_2" } ]
},
{
"id": "king_crimson_2",
"type": "SPELL",
"name": "King Crimson II",
"description": "Assimilate others into a slipstream in the timescape. Second part.",
"effect": "target_attack",
"effect_str": "effect_king_crimson",
"flags": [ "SILENT" ],
"valid_targets": [ "self" ],
"min_duration": 100,
"max_duration": 100
},
{
"id": "maiden_heaven",
"type": "SPELL",
"name": "Maiden Heaven",
"description": "All are equal yet all are unequal.",
"sprite": "fd_dazzling",
"message": "Star Platinum: Maiden Heaven!",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL", "SILENT", "IGNORE_WALLS" ],
"effect": "area_push",
"effect_filter": [ "ally", "hostile", "item", "fd_fire", "fd_blood" ],
"valid_targets": [ "self", "ally", "hostile", "ground" ],
"min_aoe": 20,
"max_aoe": 20,
"max_level": 10,
"difficulty": 5,
"energy_source": "MANA",
"base_energy_cost": 250,
"final_energy_cost": 150,
"energy_increment": -10,
"base_casting_time": 150,
"final_casting_time": 50,
"casting_time_increment": -10,
"extra_effects": [
{ "id": "maiden_heaven_2" },
{ "id": "maiden_heaven_2" },
{ "id": "maiden_heaven_2" },
{ "id": "maiden_heaven_2" },
{ "id": "maiden_heaven_2" }
]
},
{
"id": "maiden_heaven_2",
"type": "SPELL",
"name": "Maiden Heaven II",
"description": "All are equal yet all are unequal. Second part.",
"flags": [ "SILENT", "IGNORE_WALLS" ],
"effect": "area_pull",
"effect_filter": [ "ally", "hostile", "item", "fd_fire", "fd_blood" ],
"valid_targets": [ "self", "ally", "hostile", "ground" ],
"min_aoe": 20,
"max_aoe": 20,
"extra_effects": [
{ "id": "maiden_heaven_3" },
{ "id": "maiden_heaven_3" },
{ "id": "maiden_heaven_3" },
{ "id": "maiden_heaven_3" },
{ "id": "maiden_heaven_3" }
]
},
{
"id": "maiden_heaven_3",
"type": "SPELL",
"name": "Maiden Heaven III",
"description": "All are equal yet all are unequal. Third part.",
"valid_targets": [ "ground", "hostile", "ally" ],
"effect": "teleport_random",
"flags": [ "UNSAFE_TELEPORT", "RANDOM_TARGET", "IGNORE_WALLS" ],
"min_aoe": 2,
"max_aoe": 2,
"min_range": 2,
"max_range": 2
},
{
"id": "wonder_of_u",
"type": "SPELL",
"name": "Wonder of U",
"description": "And that's the beauty, of, the wonder of you.",
"valid_targets": [ "hostile" ],
"effect": "target_attack",
"damage_type": "fire",
"flags": [ "RANDOM_TARGET" ],
"min_damage": 40,
"max_damage": 40,
"min_range": 20,
"max_range": 20
},
{
"id": "limitless_void",
"type": "SPELL",
"name": "Limitless Void",
"description": "A Domain that encapsulates the First Heaven of Buddhism.",
"message": "Domain Expansion: Limitless Void!",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL", "IGNORE_WALLS" ],
"effect": "target_attack",
"effect_str": "effect_void",
"field_id": "fd_shadow",
"field_chance": 1,
"min_field_intensity": 1,
"max_field_intensity": 1,
"valid_targets": [ "ground", "hostile", "ally" ],
"min_duration": 6400,
"max_duration": 6400,
"min_aoe": 15,
"max_aoe": 15,
"max_level": 10,
"energy_source": "FATIGUE",
"base_energy_cost": 50,
"final_energy_cost": 20,
"energy_increment": -3,
"base_casting_time": 250,
"final_casting_time": 20,
"casting_time_increment": -23,
"difficulty": 6,
"extra_effects": [ { "id": "limitless_void_2" } ]
},
{
"id": "limitless_void_2",
"type": "SPELL",
"name": "Limitless Void II",
"description": "A Domain that encapsulates the First Heaven of Buddhism. Second part.",
"effect": "mod_moves",
"flags": [ "SILENT", "IGNORE_WALLS" ],
"valid_targets": [ "ground", "hostile", "ally" ],
"min_damage": -6400,
"max_damage": -6400,
"min_aoe": 15,
"max_aoe": 15
},
{
"id": "npc_limitless_void",
"type": "SPELL",
"name": "NPC Limitless Void",
"description": "A Domain that encapsulates the First Heaven of Buddhism. NPC version.",
"message": "Domain Expansion: Limitless Void!",
"flags": [ "IGNORE_WALLS" ],
"effect": "target_attack",
"effect_str": "effect_void",
"field_id": "fd_shadow",
"field_chance": 1,
"min_field_intensity": 1,
"max_field_intensity": 1,
"valid_targets": [ "ground", "hostile", "ally" ],
"min_duration": 3000,
"max_duration": 3000,
"min_aoe": 10,
"max_aoe": 10
},
{
"id": "reverse_curse",
"type": "SPELL",
"name": "Cursed Energy Reversal",
"description": "All the accursed shall reverse and be blest.",
"message": "Curse Technique: Reversal!",
"valid_targets": [ "self" ],
"min_damage": -5,
"max_damage": -50,
"damage_increment": -4.5,
"max_level": 10,
"effect": "target_attack",
"base_casting_time": 300,
"base_energy_cost": 300,
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL" ],
"difficulty": 4,
"energy_source": "MANA"
},
{
"id": "even_curse",
"type": "SPELL",
"name": "Cursed Reverberation",
"description": "Your wounds spread all across your body, evening out the damage.",
"message": "Curse Technique: Reverberation!",
"valid_targets": [ "self" ],
"effect": "pain_split",
"base_casting_time": 250,
"final_casting_time": 50,
"casting_time_increment": -20,
"base_energy_cost": 250,
"energy_source": "MANA",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL" ],
"difficulty": 3,
"max_level": 10
},
{
"id": "curse_blue",
"type": "SPELL",
"name": "Cursed Blue",
"description": "A vacuum of reality is formed, and thus all available nearby matter will flood to it to plug up the vacuum.",
"message": "Curse Technique: Blue!",
"flags": [ "NO_HANDS", "NO_LEGS", "VERBAL", "IGNORE_WALLS" ],
"effect": "area_pull",
"effect_filter": [ "ally", "hostile", "item", "fd_fire", "fd_blood" ],
"valid_targets": [ "self", "ally", "hostile", "ground" ],
"min_range": 7,
"max_range": 20,
"range_increment": 2.0,
"min_aoe": 5,
"max_aoe": 15,