Skip to content

Commit 470dc53

Browse files
author
LocalIdentity
committed
Fix minion crit chance
1 parent 7d5e92b commit 470dc53

5 files changed

Lines changed: 630 additions & 4 deletions

File tree

manifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
<File name="Data/FlavourText.lua" part="program" sha1="eb831983b892a766bd3c3d3932679be38ea1f6ea" />
222222
<File name="Data/Gems.lua" part="program" sha1="d1eb595ad17c499b0a9b6a51eaf5df2f7b24495a" />
223223
<File name="Data/Global.lua" part="program" sha1="209ec104a90f1cd4ab51ba7ac82908cfd6196abb" />
224-
<File name="Data/Minions.lua" part="program" sha1="ddf82530069405045b81257100c81c04bf0d7e21" />
224+
<File name="Data/Minions.lua" part="program" sha1="7871bdbd483fa56fe966f478b705684508cb37f7" />
225225
<File name="Data/Misc.lua" part="program" sha1="2e874f9a277f74372d992162c2dc9d98f117d101" />
226226
<File name="Data/ModCache.lua" part="program" sha1="10bd80b63d2fc0818d259f3a78cf7165e156314f" />
227227
<File name="Data/ModCharm.lua" part="program" sha1="5a1bf9d84bd551527da5b161155b7f35ffce7af7" />
@@ -254,7 +254,7 @@
254254
<File name="Data/Skills/sup_int.lua" part="program" sha1="3cde3e7f06738a1ae6b40d29f04df19710698080" />
255255
<File name="Data/Skills/sup_str.lua" part="program" sha1="59673977ceca3feaaa03809e5d0a814c9eea2ec4" />
256256
<File name="Data/SkillStatMap.lua" part="program" sha1="1a436380cea2adb79feb732c847e552c98027df6" />
257-
<File name="Data/Spectres.lua" part="program" sha1="3cfdabb4a74e42408a8689d2f31fcf5d43d89a62" />
257+
<File name="Data/Spectres.lua" part="program" sha1="9c5e9e093993b1f56c017d71f93d169eaf5ea4fc" />
258258
<File name="Data/StatDescriptions/active_skill_gem_stat_descriptions.lua" part="program" sha1="32e4b3988f7bfe3262e1bfaeafe5e9cb70c6e887" />
259259
<File name="Data/StatDescriptions/advanced_mod_stat_descriptions.lua" part="program" sha1="47f6c418347443ff339ca09e8a1b2fc1eb20e30e" />
260260
<File name="Data/StatDescriptions/gem_stat_descriptions.lua" part="program" sha1="8e484e53325eea09b499bc25a59a7199209da46f" />
@@ -1062,7 +1062,7 @@
10621062
<File name="Modules/BuildList.lua" part="program" sha1="d4ad3ff8e13558339f0c6d2f92157645618e0d65" />
10631063
<File name="Modules/BuildListHelpers.lua" part="program" sha1="e8e954bdc12c4c0899915d71f04f9f6cf39c1647" />
10641064
<File name="Modules/BuildSiteTools.lua" part="program" sha1="0b1dd6ba6f087d2a91a90cd7e4361b54079d0d45" />
1065-
<File name="Modules/CalcActiveSkill.lua" part="program" sha1="a20a1cd0bc53a0a21308e4a81e342eb07d621ed4" />
1065+
<File name="Modules/CalcActiveSkill.lua" part="program" sha1="4ad85a41ac43f8950e4a89e22115475581d58a8d" />
10661066
<File name="Modules/CalcBreakdown.lua" part="program" sha1="7a22c6d1f2ff0af8d8254a0f4895ea43d4b6b740" />
10671067
<File name="Modules/CalcDefence.lua" part="program" sha1="d005ca3f7fc02f50603b3d437bb0638bb27003f5" />
10681068
<File name="Modules/CalcFormat.lua" part="program" sha1="eacfddab6dc96067db1822b48d906d20d25708dc" />

src/Data/Minions.lua

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ minions["RaisedZombie"] = {
2020
attackTime = 1.25,
2121
attackRange = 9,
2222
accuracy = 1,
23+
critChance = 5,
2324
weaponType1 = "One Hand Axe",
2425
limit = "ActiveZombieLimit",
2526
baseMovementSpeed = 16,
@@ -52,6 +53,7 @@ minions["SummonedRagingSpirit"] = {
5253
attackTime = 1,
5354
attackRange = 12,
5455
accuracy = 1,
56+
critChance = 5,
5557
limit = "ActiveRagingSpiritLimit",
5658
baseMovementSpeed = 45,
5759
spectreReservation = 50,
@@ -83,6 +85,7 @@ minions["RaisedSkeletonSniper"] = {
8385
attackTime = 1.5,
8486
attackRange = 80,
8587
accuracy = 1,
88+
critChance = 5,
8689
weaponType1 = "Bow",
8790
limit = "ActiveSkeletonLimit",
8891
baseMovementSpeed = 37,
@@ -118,6 +121,7 @@ minions["RaisedSkeletonBrute"] = {
118121
attackTime = 1.75,
119122
attackRange = 16,
120123
accuracy = 1,
124+
critChance = 5,
121125
weaponType1 = "Two Hand Mace",
122126
limit = "ActiveSkeletonLimit",
123127
baseMovementSpeed = 42,
@@ -156,6 +160,7 @@ minions["RaisedSkeletonStormMage"] = {
156160
attackTime = 1,
157161
attackRange = 80,
158162
accuracy = 1,
163+
critChance = 5,
159164
weaponType1 = "Staff",
160165
limit = "ActiveSkeletonLimit",
161166
baseMovementSpeed = 37,
@@ -191,6 +196,7 @@ minions["RaisedSkeletonFrostMage"] = {
191196
attackTime = 1,
192197
attackRange = 80,
193198
accuracy = 1,
199+
critChance = 5,
194200
weaponType1 = "None",
195201
limit = "ActiveSkeletonLimit",
196202
baseMovementSpeed = 37,
@@ -226,6 +232,7 @@ minions["RaisedSkeletonCleric"] = {
226232
attackTime = 1,
227233
attackRange = 80,
228234
accuracy = 1,
235+
critChance = 5,
229236
weaponType1 = "One Hand Mace",
230237
limit = "ActiveSkeletonLimit",
231238
baseMovementSpeed = 37,
@@ -262,6 +269,7 @@ minions["RaisedSkeletonArsonist"] = {
262269
attackTime = 1,
263270
attackRange = 80,
264271
accuracy = 1,
272+
critChance = 5,
265273
weaponType1 = "None",
266274
limit = "ActiveSkeletonLimit",
267275
baseMovementSpeed = 37,
@@ -298,6 +306,7 @@ minions["RaisedSkeletonReaver"] = {
298306
attackTime = 0.83,
299307
attackRange = 14,
300308
accuracy = 1,
309+
critChance = 5,
301310
weaponType1 = "One Hand Axe",
302311
weaponType2 = "One Hand Axe",
303312
limit = "ActiveSkeletonLimit",
@@ -334,6 +343,7 @@ minions["RaisedSkeletonWarriors"] = {
334343
attackTime = 1,
335344
attackRange = 12,
336345
accuracy = 1,
346+
critChance = 5,
337347
weaponType1 = "One Hand Sword",
338348
weaponType2 = "Shield",
339349
limit = "ActiveSkeletonLimit",
@@ -372,6 +382,7 @@ minions["SummonedHellhound"] = {
372382
attackTime = 0.75,
373383
attackRange = 10,
374384
accuracy = 1,
385+
critChance = 5,
375386
baseMovementSpeed = 37,
376387
spectreReservation = 50,
377388
companionReservation = 30,
@@ -403,6 +414,7 @@ minions["AncestralSpiritTurtle"] = {
403414
attackTime = 1,
404415
attackRange = 15,
405416
accuracy = 1,
417+
critChance = 5,
406418
baseMovementSpeed = 9,
407419
spectreReservation = 50,
408420
companionReservation = 30,
@@ -438,6 +450,7 @@ minions["AncestralSpiritHulk"] = {
438450
attackTime = 1,
439451
attackRange = 14,
440452
accuracy = 1,
453+
critChance = 5,
441454
baseMovementSpeed = 27,
442455
spectreReservation = 50,
443456
companionReservation = 30,
@@ -474,6 +487,7 @@ minions["AncestralSpiritCaster"] = {
474487
attackTime = 1,
475488
attackRange = 14,
476489
accuracy = 1,
490+
critChance = 5,
477491
baseMovementSpeed = 32,
478492
spectreReservation = 50,
479493
companionReservation = 30,
@@ -509,6 +523,7 @@ minions["AncestralSpiritWarhorn"] = {
509523
attackTime = 1,
510524
attackRange = 27,
511525
accuracy = 1,
526+
critChance = 5,
512527
baseMovementSpeed = 13,
513528
spectreReservation = 50,
514529
companionReservation = 30,
@@ -540,6 +555,7 @@ minions["UnearthBoneConstruct"] = {
540555
attackTime = 1.06,
541556
attackRange = 12,
542557
accuracy = 1,
558+
critChance = 5,
543559
limit = "ActiveUnearthBoneConstructLimit",
544560
baseMovementSpeed = 37,
545561
spectreReservation = 50,
@@ -576,6 +592,7 @@ minions["SummonedRhoa"] = {
576592
attackTime = 1.23,
577593
attackRange = 16,
578594
accuracy = 1,
595+
critChance = 5,
579596
baseMovementSpeed = 37,
580597
spectreReservation = 50,
581598
companionReservation = 30,
@@ -610,6 +627,7 @@ minions["ManifestWeapon"] = {
610627
attackTime = 1,
611628
attackRange = 10,
612629
accuracy = 1,
630+
critChance = 5,
613631
baseMovementSpeed = 42,
614632
spectreReservation = 50,
615633
companionReservation = 30,
@@ -657,6 +675,7 @@ minions["RavenousSwarm"] = {
657675
attackTime = 1,
658676
attackRange = 1,
659677
accuracy = 1,
678+
critChance = 5,
660679
baseMovementSpeed = 24,
661680
spectreReservation = 50,
662681
companionReservation = 30,
@@ -701,6 +720,7 @@ minions["LivingLightning"] = {
701720
attackTime = 1,
702721
attackRange = 20,
703722
accuracy = 1,
723+
critChance = 5,
704724
limit = "ActiveLivingLightningLimit",
705725
baseMovementSpeed = 97,
706726
spectreReservation = 50,
@@ -751,6 +771,7 @@ minions["TacticianMinion"] = {
751771
attackTime = 1,
752772
attackRange = 6,
753773
accuracy = 1,
774+
critChance = 5,
754775
baseMovementSpeed = 8,
755776
spectreReservation = 50,
756777
companionReservation = 30,
@@ -794,6 +815,7 @@ minions["HyenaMinion"] = {
794815
attackTime = 1,
795816
attackRange = 9,
796817
accuracy = 1,
818+
critChance = 8,
797819
limit = "HyenaLimit",
798820
baseMovementSpeed = 50,
799821
spectreReservation = 50,
@@ -828,6 +850,7 @@ minions["WolfMinion"] = {
828850
attackTime = 0.8,
829851
attackRange = 12,
830852
accuracy = 1,
853+
critChance = 5,
831854
limit = "WolfLimit",
832855
baseMovementSpeed = 42,
833856
spectreReservation = 50,
@@ -859,6 +882,7 @@ minions["BeetleMinion"] = {
859882
attackTime = 1,
860883
attackRange = 6,
861884
accuracy = 1,
885+
critChance = 5,
862886
limit = "BeetleLimit",
863887
baseMovementSpeed = 90,
864888
spectreReservation = 50,
@@ -902,6 +926,7 @@ minions["WaterDjinn"] = {
902926
attackTime = 0,
903927
attackRange = 6,
904928
accuracy = 1,
929+
critChance = 5,
905930
baseMovementSpeed = 35,
906931
spectreReservation = 50,
907932
companionReservation = 30,
@@ -947,6 +972,7 @@ minions["FireDjinn"] = {
947972
attackTime = 0,
948973
attackRange = 6,
949974
accuracy = 1,
975+
critChance = 5,
950976
baseMovementSpeed = 35,
951977
spectreReservation = 50,
952978
companionReservation = 30,
@@ -992,6 +1018,7 @@ minions["SandDjinn"] = {
9921018
attackTime = 0,
9931019
attackRange = 6,
9941020
accuracy = 1,
1021+
critChance = 5,
9951022
baseMovementSpeed = 35,
9961023
spectreReservation = 50,
9971024
companionReservation = 30,
@@ -1035,6 +1062,7 @@ minions["MistRaven"] = {
10351062
attackTime = 1,
10361063
attackRange = 6,
10371064
accuracy = 1,
1065+
critChance = 5,
10381066
baseMovementSpeed = 8,
10391067
spectreReservation = 50,
10401068
companionReservation = 30,
@@ -1078,6 +1106,7 @@ minions["AzmerianSwarm"] = {
10781106
attackTime = 1,
10791107
attackRange = 1,
10801108
accuracy = 1,
1109+
critChance = 5,
10811110
weaponType1 = "None",
10821111
weaponType2 = "None",
10831112
limit = "AzmerianSwarmLimit",
@@ -1127,6 +1156,7 @@ minions["AzmerianWolf"] = {
11271156
attackTime = 1,
11281157
attackRange = 18,
11291158
accuracy = 1,
1159+
critChance = 5,
11301160
weaponType1 = "None",
11311161
weaponType2 = "None",
11321162
baseMovementSpeed = 36,
@@ -1170,6 +1200,7 @@ minions["BearCompanion"] = {
11701200
attackTime = 0.8,
11711201
attackRange = 20,
11721202
accuracy = 1,
1203+
critChance = 5,
11731204
baseMovementSpeed = 37,
11741205
spectreReservation = 67,
11751206
companionReservation = 36.6,
@@ -1215,6 +1246,7 @@ minions["Wardbound"] = {
12151246
attackTime = 1,
12161247
attackRange = 14,
12171248
accuracy = 1,
1249+
critChance = 5,
12181250
limit = "WardboundLimit",
12191251
baseMovementSpeed = 41,
12201252
spectreReservation = 50,

0 commit comments

Comments
 (0)