Skip to content

Commit c2386b2

Browse files
author
LocalIdentity
committed
0.4.0.c Export
1 parent 75ba7cc commit c2386b2

29 files changed

+15867
-15295
lines changed

src/Data/Gems.lua

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16944,21 +16944,22 @@ return {
1694416944
grantedEffectId = "WolfLunarBlessingPlayer",
1694516945
additionalGrantedEffectId1 = "WolfLunarBlessingBeamAttackPlayer",
1694616946
tags = {
16947-
buff = true,
16947+
warcry = true,
1694816948
strength = true,
1694916949
intelligence = true,
1695016950
grants_active_skill = true,
1695116951
attack = true,
1695216952
shapeshift = true,
16953+
buff = true,
1695316954
wolf = true,
1695416955
area = true,
1695516956
melee = true,
1695616957
trigger = true,
1695716958
cold = true,
1695816959
duration = true,
1695916960
},
16960-
gemType = "Buff",
16961-
tagString = "Attack, Shapeshift, Werewolf, AoE, Melee, Trigger, Cold, Duration",
16961+
gemType = "Warcry",
16962+
tagString = "Attack, Shapeshift, Buff, Werewolf, AoE, Melee, Trigger, Cold, Duration",
1696216963
weaponRequirements = "Talisman",
1696316964
reqStr = 50,
1696416965
reqDex = 0,
@@ -18242,12 +18243,13 @@ return {
1824218243
spell = true,
1824318244
persistent = true,
1824418245
area = true,
18246+
sustained = true,
1824518247
physical = true,
1824618248
duration = true,
1824718249
plant = true,
1824818250
},
1824918251
gemType = "Buff",
18250-
tagString = "Spell, Persistent, AoE, Physical, Duration, Plant",
18252+
tagString = "Spell, Persistent, AoE, Sustained, Physical, Duration, Plant",
1825118253
reqStr = 50,
1825218254
reqDex = 0,
1825318255
reqInt = 50,

src/Data/Global.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,7 @@ SkillType = {
596596
DisableUpdateActionLocationAfterRelease = 256,
597597
InteractsWithElementalGround = 257,
598598
SupportedByNovaProjectiles = 258,
599+
Proxy = 259,
599600
}
600601

601602
-- build reverse lookup

src/Data/Minions.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,7 @@ minions["WaterDjinn"] = {
936936
-- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1]
937937
-- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1]
938938
-- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1]
939+
-- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1]
939940
},
940941
}
941942

@@ -985,6 +986,7 @@ minions["FireDjinn"] = {
985986
-- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1]
986987
-- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1]
987988
-- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1]
989+
-- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1]
988990
},
989991
}
990992

@@ -1032,5 +1034,6 @@ minions["SandDjinn"] = {
10321034
-- set_minion_cannot_be_directed [set_minion_cannot_be_directed = 1]
10331035
-- set_projectiles_do_not_collide_with_you [set_projectiles_do_not_collide_with_you = 1]
10341036
-- set_display_hide_minion_base_stats [set_display_hide_minion_base_stats = 1]
1037+
-- set_dont_replace_minion_if_level_changed_until_end_of_action [set_dont_replace_minion_if_level_changed_until_end_of_action = 1]
10351038
},
10361039
}

src/Data/ModCache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",typ
827827
c["+75% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=75}},nil}
828828
c["+76 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=76}},nil}
829829
c["+77 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=77}},nil}
830-
c["+8 maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=8}}," for each time you've used a Skill that Requires Glory in the past 6 seconds "}
830+
c["+8 maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=8}}," for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times "}
831831
c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil}
832832
c["+8 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=8}},nil}
833833
c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}

src/Data/ModCorrupted.lua

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

src/Data/ModItem.lua

Lines changed: 55 additions & 55 deletions
Large diffs are not rendered by default.

src/Data/ModItemExclusive.lua

Lines changed: 1336 additions & 1147 deletions
Large diffs are not rendered by default.

src/Data/ModJewel.lua

Lines changed: 158 additions & 158 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)