forked from Siyalatas/PKs_Rebalancing
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pk_spells.json
84 lines (84 loc) · 2.25 KB
/
pk_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
[
{
"id": "mon_vile_flame_burst",
"type": "SPELL",
"name": { "str": "Vile flame burst" },
"description": "PK flame burst",
"flags": [ "SILENT", "RANDOM_DAMAGE", "RANDOM_AOE" ],
"valid_targets": [ "hostile", "ground" ],
"effect": "attack",
"shape": "blast",
"min_damage": 2,
"max_damage": 3,
"min_aoe": 1,
"max_aoe": 1,
"min_range": 15,
"max_range": 15,
"field_id": "fd_flame_burst",
"min_field_intensity": 1,
"max_field_intensity": 1,
"damage_type": "heat"
},
{
"id": "mon_vile_elec_attack",
"type": "SPELL",
"name": { "str": "Vile electric attack" },
"description": "PK nuke gas",
"flags": [ "SILENT", "RANDOM_DAMAGE", "RANDOM_AOE" ],
"valid_targets": [ "hostile", "ground" ],
"extra_effects": [ { "id": "mon_vile_flame_burst" } ],
"effect": "attack",
"shape": "blast",
"min_damage": 2,
"max_damage": 3,
"min_aoe": 1,
"max_aoe": 1,
"min_range": 15,
"max_range": 15,
"field_id": "fd_nuke_gas",
"min_field_intensity": 1,
"max_field_intensity": 1,
"damage_type": "electric"
},
{
"id": "mon_archvile_flame_burst",
"type": "SPELL",
"name": { "str": "Archvile flame burst" },
"description": "PK extra flame burst",
"flags": [ "SILENT", "RANDOM_DAMAGE", "RANDOM_AOE" ],
"valid_targets": [ "ally", "hostile", "ground" ],
"effect": "attack",
"shape": "blast",
"min_damage": 4,
"max_damage": 5,
"min_aoe": 1,
"max_aoe": 1,
"min_range": 17,
"max_range": 17,
"field_id": "fd_flame_burst",
"min_field_intensity": 1,
"max_field_intensity": 1,
"damage_type": "heat"
},
{
"id": "mon_archvile_elec_attack",
"type": "SPELL",
"name": { "str": "Archvile electric attack" },
"description": "PK extra nuke gas",
"flags": [ "SILENT", "RANDOM_DAMAGE", "RANDOM_AOE" ],
"valid_targets": [ "ally", "hostile", "ground" ],
"extra_effects": [ { "id": "mon_archvile_flame_burst" } ],
"effect": "attack",
"shape": "blast",
"min_damage": 4,
"max_damage": 5,
"min_aoe": 1,
"max_aoe": 1,
"min_range": 17,
"max_range": 17,
"field_id": "fd_nuke_gas",
"min_field_intensity": 1,
"max_field_intensity": 1,
"damage_type": "electric"
}
]