Skip to content

Commit 9eda30b

Browse files
Blitz54LocalIdentity
andauthored
Add new Ancient Augment soul cores (#1717)
* Add new Ancient Augment soul cores * Export Soul core base stats --------- Co-authored-by: LocalIdentity <[email protected]>
1 parent 676edb5 commit 9eda30b

File tree

3 files changed

+111
-0
lines changed

3 files changed

+111
-0
lines changed

src/Data/Bases/soulcore.lua

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,30 @@ itemBases["Ulaman's Gaze"] = {
206206
implicitModTypes = { },
207207
req = { level = 65, },
208208
}
209+
itemBases["Jiquani's Thesis"] = {
210+
type = "SoulCore",
211+
tags = { default = true, soul_core = true, soul_core_vaal = true },
212+
implicitModTypes = { },
213+
req = { level = 65, },
214+
}
215+
itemBases["Quipolatl's Thesis"] = {
216+
type = "SoulCore",
217+
tags = { default = true, soul_core = true, soul_core_vaal = true },
218+
implicitModTypes = { },
219+
req = { level = 65, },
220+
}
221+
itemBases["Guatelitzi's Thesis"] = {
222+
type = "SoulCore",
223+
tags = { default = true, soul_core = true, soul_core_vaal = true },
224+
implicitModTypes = { },
225+
req = { level = 65, },
226+
}
227+
itemBases["Citaqualotl's Thesis"] = {
228+
type = "SoulCore",
229+
tags = { default = true, soul_core = true, soul_core_vaal = true },
230+
implicitModTypes = { },
231+
req = { level = 65, },
232+
}
209233

210234
itemBases["Desert Rune"] = {
211235
type = "Rune",

src/Data/ModRunes.lua

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,89 @@ return {
457457
rank = { 60 },
458458
},
459459
},
460+
["Jiquani's Thesis"] = {
461+
["helmet"] = {
462+
type = "Rune",
463+
"+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet",
464+
statOrder = { 6295 },
465+
rank = { 60 },
466+
},
467+
["gloves"] = {
468+
type = "Rune",
469+
"Energy Shield Recharge starts after spending a total of",
470+
" 2000 Mana, no more than once every 2 seconds",
471+
statOrder = { 6023, 6023.1 },
472+
rank = { 60 },
473+
},
474+
["boots"] = {
475+
type = "Rune",
476+
"Increases and Reductions to Movement Speed also",
477+
" apply to Energy Shield Recharge Rate",
478+
statOrder = { 6874, 6874.1 },
479+
rank = { 60 },
480+
},
481+
},
482+
["Quipolatl's Thesis"] = {
483+
["helmet"] = {
484+
type = "Rune",
485+
"A random Skill that requires Glory generates 15% of its maximum Glory when your Mark Activates",
486+
statOrder = { 8275 },
487+
rank = { 60 },
488+
},
489+
["gloves"] = {
490+
type = "Rune",
491+
"Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to 10% of that Skill's Mana Cost",
492+
statOrder = { 9139 },
493+
rank = { 60 },
494+
},
495+
["body armour"] = {
496+
type = "Rune",
497+
"+50% of Armour also applies to Chaos Damage while on full Energy Shield",
498+
statOrder = { 4261 },
499+
rank = { 60 },
500+
},
501+
},
502+
["Guatelitzi's Thesis"] = {
503+
["helmet"] = {
504+
type = "Rune",
505+
"Gain Armour equal to 25% of Life Lost from Hits in the past 8 seconds",
506+
statOrder = { 6337 },
507+
rank = { 60 },
508+
},
509+
["body armour"] = {
510+
type = "Rune",
511+
"10% of Physical Damage prevented Recouped as Life",
512+
statOrder = { 8867 },
513+
rank = { 60 },
514+
},
515+
["boots"] = {
516+
type = "Rune",
517+
"Lose 5% of maximum Life per second while Sprinting",
518+
"25% increased Movement Speed while Sprinting",
519+
statOrder = { 6999, 9465 },
520+
rank = { 60 },
521+
},
522+
},
523+
["Citaqualotl's Thesis"] = {
524+
["body armour"] = {
525+
type = "Rune",
526+
"You Recoup 50% of Damage taken by your Offerings as Life",
527+
statOrder = { 9105 },
528+
rank = { 60 },
529+
},
530+
["gloves"] = {
531+
type = "Rune",
532+
"One of your Persistent Minions revives when an Offering expires",
533+
statOrder = { 9188 },
534+
rank = { 60 },
535+
},
536+
["boots"] = {
537+
type = "Rune",
538+
"Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll",
539+
statOrder = { 9195 },
540+
rank = { 60 },
541+
},
542+
},
460543
["Desert Rune"] = {
461544
["weapon"] = {
462545
type = "Rune",

src/Export/Bases/soulcore.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ local itemBases = ...
77
#baseMatch Metadata/Items/SoulCores/KurgalsGaze
88
#baseMatch Metadata/Items/SoulCores/TecrodsGaze
99
#baseMatch Metadata/Items/SoulCores/UlamansGaze
10+
#baseMatch Metadata/Items/SoulCores/ThesisOfSouls
11+
#baseMatch Metadata/Items/SoulCores/ThesisOfExperiments
12+
#baseMatch Metadata/Items/SoulCores/ThesisOfBlood
13+
#baseMatch Metadata/Items/SoulCores/ThesisOfSacrifice
1014

1115
#type Rune
1216
#baseMatch Metadata/Items/SoulCores/Rune

0 commit comments

Comments
 (0)