Skip to content

Commit 7c4e71e

Browse files
committed
update mods
1 parent 5f70d6d commit 7c4e71e

File tree

5 files changed

+25
-15
lines changed

5 files changed

+25
-15
lines changed

data/mods/Magiclysm/items/archery.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"count": 15,
7575
"stack_size": 15,
7676
"critical_multiplier": 10,
77-
"effects": [ "RECOVER_65" ],
77+
"recovery_chance": 65,
7878
"melee_damage": { "bash": 12 }
7979
},
8080
{
@@ -98,16 +98,18 @@
9898
"loudness": 0,
9999
"show_stats": true,
100100
"critical_multiplier": 10,
101-
"effects": [ "TANGLE", "RECOVER_7" ]
101+
"recovery_chance": 7,
102+
"effects": [ "TANGLE" ]
102103
},
103104
{
104105
"id": "arrow_stormshaper_crafted",
105106
"type": "AMMO",
106107
"copy-from": "arrow_druid_crafted",
107108
"name": { "str": "thunderclap arrow" },
108109
"color": "magenta",
110+
"recovery_chance": 7,
109111
"description": "An arrow with a fragment of a stormshaper rune in the arrowhead. It trails lightning and explodes with a crash of thunder.",
110-
"effects": [ "LIGHTNING", "FLASHBANG", "RECOVER_7" ]
112+
"effects": [ "LIGHTNING", "FLASHBANG" ]
111113
},
112114
{
113115
"id": "arrow_earthshaper_crafted",
@@ -124,8 +126,9 @@
124126
"copy-from": "arrow_druid_crafted",
125127
"name": { "str": "fireball arrow" },
126128
"color": "red",
129+
"recovery_chance": 7,
127130
"description": "An arrow with a fragment of a kelvinist rune in the arrowhead. It explodes into a firestorm.",
128-
"effects": [ "NAPALM", "RECOVER_7" ]
131+
"effects": [ "NAPALM" ]
129132
},
130133
{
131134
"id": "arrow_biomancer_crafted",
@@ -134,17 +137,19 @@
134137
"name": { "str": "visceral arrow" },
135138
"color": "green",
136139
"material": [ "bone" ],
140+
"recovery_chance": 7,
137141
"description": "A disturbing bone arrow with a fragment of a biomancer rune in the arrowhead. It showers its target in acid.",
138-
"effects": [ "ACIDBOMB", "RECOVER_7" ]
142+
"effects": [ "ACIDBOMB" ]
139143
},
140144
{
141145
"id": "arrow_technomancer_crafted",
142146
"type": "AMMO",
143147
"copy-from": "arrow_druid_crafted",
144148
"name": { "str": "sparking arrow" },
145149
"color": "white",
150+
"recovery_chance": 7,
146151
"description": "A metallic arrow with a fragment of a technomancer rune in the arrowhead. It destroys electronic targets.",
147-
"effects": [ "EMP", "DRAW_LASER_BEAM", "RECOVER_7" ]
152+
"effects": [ "EMP", "DRAW_LASER_BEAM" ]
148153
},
149154
{
150155
"id": "arrow_magus_crafted",
@@ -153,8 +158,9 @@
153158
"//": "I'd like this to cause massive knockback but I'm limited by the available ammo flags.",
154159
"name": { "str": "gravity arrow" },
155160
"color": "black",
161+
"recovery_chance": 7,
156162
"description": "An arrow with a fragment of a magus rune in the arrowhead. It reverses flight briefly after striking its target and then hits another one.",
157-
"effects": [ "BOUNCE", "RECOVER_7" ]
163+
"effects": [ "BOUNCE" ]
158164
},
159165
{
160166
"id": "arrow_animist_crafted",
@@ -163,8 +169,9 @@
163169
"//": "I'd like this to drain life but see above.",
164170
"name": { "str": "enervating arrow" },
165171
"color": "cyan",
172+
"recovery_chance": 7,
166173
"description": "An arrow with a fragment of an animist rune in the arrowhead. It unleashes a cloud of enervating gas.",
167-
"effects": [ "PARALYZEPOISON", "TOXICGAS", "RECOVER_7" ]
174+
"effects": [ "PARALYZEPOISON", "TOXICGAS" ]
168175
},
169176
{
170177
"id": "quiver_of_holding_plus_one",

data/mods/Magiclysm/items/ethereal_items.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@
447447
"description": "A magically conjured arrow made of twisted wood.",
448448
"damage": { "damage_type": "stab", "armor_penetration": 3 },
449449
"count": 1,
450-
"effects": [ "RECOVER_8" ]
450+
"recovery_chance": 8
451451
},
452452
{
453453
"id": "arrow_druid",
@@ -458,7 +458,8 @@
458458
"description": "A arrow that looks more like it was grown than carved. Despite that, it flies straight and true. It explodes into a mass of entangling vegetation when it hits its target.",
459459
"damage": { "damage_type": "stab", "armor_penetration": 2 },
460460
"count": 1,
461-
"effects": [ "RECOVER_6", "TANGLE" ]
461+
"recovery_chance": 6,
462+
"effects": [ "TANGLE" ]
462463
},
463464
{
464465
"type": "TOOL",

data/mods/TEST_DATA/items.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
"dispersion": 14,
8383
"loudness": 0,
8484
"to_hit": -2,
85-
"effects": [ "NEVER_MISFIRES", "NON_FOULING", "RECOVER_80" ],
85+
"recovery_chance": 80,
86+
"effects": [ "NEVER_MISFIRES", "NON_FOULING" ],
8687
"qualities": [ [ "HAMMER", 1 ] ],
8788
"melee_damage": { "bash": 7 },
8889
"variant_type": "generic",
@@ -2120,7 +2121,7 @@
21202121
"loudness": 0,
21212122
"count": 10,
21222123
"critical_multiplier": 10,
2123-
"effects": [ "RECOVER_25" ],
2124+
"recovery_chance": 25,
21242125
"melee_damage": { "bash": 2, "cut": 1 }
21252126
},
21262127
{

data/mods/Xedra_Evolved/items/ammo.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"range": 10,
1919
"dispersion": 14,
2020
"loudness": 0,
21-
"effects": [ "NEVER_MISFIRES", "NON_FOULING", "RECOVER_80" ],
21+
"recovery_chance": 80,
22+
"effects": [ "NEVER_MISFIRES", "NON_FOULING" ],
2223
"qualities": [ [ "CUT", 1 ] ],
2324
"melee_damage": { "bash": 1, "cut": 10 }
2425
},

data/mods/Xedra_Evolved/items/range.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"loudness": 0,
7070
"show_stats": true,
7171
"critical_multiplier": 10,
72-
"effects": [ "RECOVER_20" ],
72+
"recovery_chance": 20,
7373
"melee_damage": { "bash": 2 }
7474
},
7575
{
@@ -129,7 +129,7 @@
129129
"dispersion": 60,
130130
"loudness": 0,
131131
"critical_multiplier": 10,
132-
"effects": [ "RECOVER_30" ],
132+
"recovery_chance": 30,
133133
"melee_damage": { "bash": 1 }
134134
}
135135
]

0 commit comments

Comments
 (0)