Skip to content

Commit ff3177a

Browse files
committed
@
Add Carved (Ancient Augment) Idols to socketable data Carved Cunning/Majesty/Mischief/Tenacity were never recognized because soulcore.txt had no #baseMatch for the Carved metadata prefix, so they were absent from ModRunes.lua. Add the directive and regenerate the data; these Idols now carry type = "Idol" with per-slot mod entries. @
1 parent 0cbaf58 commit ff3177a

2 files changed

Lines changed: 106 additions & 0 deletions

File tree

src/Data/ModRunes.lua

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4994,6 +4994,111 @@ return {
49944994
rank = { 50 },
49954995
},
49964996
},
4997+
["Carved Cunning"] = {
4998+
["helmet"] = {
4999+
type = "Idol",
5000+
"Enemies which are on Full Life cannot Evade your Hits",
5001+
"Bonded: 30% increased Accuracy Rating",
5002+
statOrder = { 5293, 1331 },
5003+
tradeHashes = { [4111745607] = { "Enemies which are on Full Life cannot Evade your Hits" }, },
5004+
rank = { 60 },
5005+
},
5006+
["body armour"] = {
5007+
type = "Idol",
5008+
"Prevent +5% of Damage from Deflected Hits if you've",
5009+
"Deflected no Hits Recently",
5010+
"Bonded: 8% increased Deflection Rating",
5011+
statOrder = { 4668, 4668.1, 6106 },
5012+
tradeHashes = { [967155385] = { "Prevent +5% of Damage from Deflected Hits if you've", "Deflected no Hits Recently" }, },
5013+
rank = { 60 },
5014+
},
5015+
["boots"] = {
5016+
type = "Idol",
5017+
"Gain Onslaught for 4 seconds when your Marks Activate",
5018+
"Bonded: Buffs on you expire 10% slower",
5019+
statOrder = { 6805, 5228 },
5020+
tradeHashes = { [1811977226] = { "Gain Onslaught for 4 seconds when your Marks Activate" }, },
5021+
rank = { 60 },
5022+
},
5023+
},
5024+
["Carved Majesty"] = {
5025+
["body armour"] = {
5026+
type = "Idol",
5027+
"+3 to Spirit per Idol socketed in your Equipment",
5028+
"Bonded: 5% increased Spirit",
5029+
statOrder = { 4742, 1416 },
5030+
tradeHashes = { [1073847159] = { "+3 to Spirit per Idol socketed in your Equipment" }, },
5031+
rank = { 60 },
5032+
},
5033+
["gloves"] = {
5034+
type = "Idol",
5035+
"Companions gain Onslaught for 4 seconds on Hitting your Marked targets",
5036+
"Bonded: Companions deal 30% increased Damage",
5037+
statOrder = { 5720, 5709 },
5038+
tradeHashes = { [226999623] = { "Companions gain Onslaught for 4 seconds on Hitting your Marked targets" }, },
5039+
rank = { 60 },
5040+
},
5041+
["boots"] = {
5042+
type = "Idol",
5043+
"1% increased Movement Speed while Sprinting per Persistent Minion",
5044+
"Bonded: Minions have 12% increased maximum Life",
5045+
statOrder = { 10042, 1025 },
5046+
tradeHashes = { [3639405795] = { "1% increased Movement Speed while Sprinting per Persistent Minion" }, },
5047+
rank = { 60 },
5048+
},
5049+
},
5050+
["Carved Mischief"] = {
5051+
["helmet"] = {
5052+
type = "Idol",
5053+
"Gain Guard equal to 10% of maximum Life for 4 seconds on taking Savage Hit",
5054+
"Bonded: Buffs on you expire 10% slower",
5055+
statOrder = { 6783, 5228 },
5056+
tradeHashes = { [3863682550] = { "Gain Guard equal to 10% of maximum Life for 4 seconds on taking Savage Hit" }, },
5057+
rank = { 60 },
5058+
},
5059+
["gloves"] = {
5060+
type = "Idol",
5061+
"+5% to maximum Block chance if you've Blocked with a raised Shield Recently",
5062+
"Bonded: 20% increased Block chance",
5063+
statOrder = { 4197, 1132 },
5064+
tradeHashes = { [3617372509] = { "+5% to maximum Block chance if you've Blocked with a raised Shield Recently" }, },
5065+
rank = { 60 },
5066+
},
5067+
["body armour"] = {
5068+
type = "Idol",
5069+
"200% increased Stun Threshold if you've been Stunned Recently",
5070+
"Bonded: 25% increased Stun Threshold",
5071+
statOrder = { 10104, 2981 },
5072+
tradeHashes = { [751944209] = { "200% increased Stun Threshold if you've been Stunned Recently" }, },
5073+
rank = { 60 },
5074+
},
5075+
},
5076+
["Carved Tenacity"] = {
5077+
["helmet"] = {
5078+
type = "Idol",
5079+
"Enemies have no Critical Damage Bonus for 4 seconds after you Blind them",
5080+
"Bonded: 20% increased Blind Effect",
5081+
statOrder = { 6368, 4916 },
5082+
tradeHashes = { [25786091] = { "Enemies have no Critical Damage Bonus for 4 seconds after you Blind them" }, },
5083+
rank = { 60 },
5084+
},
5085+
["gloves"] = {
5086+
type = "Idol",
5087+
"Enemies you Critically Hit get 100% reduced Life Regeneration Rate for 4 seconds",
5088+
"Bonded: 15% increased Critical Hit Chance",
5089+
statOrder = { 5809, 975 },
5090+
tradeHashes = { [3370077792] = { "Enemies you Critically Hit get 100% reduced Life Regeneration Rate for 4 seconds" }, },
5091+
rank = { 60 },
5092+
},
5093+
["boots"] = {
5094+
type = "Idol",
5095+
"Your speed is Unaffected by Slows while Sprinting",
5096+
"Bonded: 8% increased Movement Speed while Sprinting",
5097+
statOrder = { 9911, 10041 },
5098+
tradeHashes = { [3128773415] = { "Your speed is Unaffected by Slows while Sprinting" }, },
5099+
rank = { 60 },
5100+
},
5101+
},
49975102
["Raven-Touched Shard"] = {
49985103
["helmet"] = {
49995104
type = "CongealedMist",

src/Export/Bases/soulcore.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ local itemBases = ...
1818
#type Idol
1919
#baseMatch Metadata/Items/SoulCores/Talisman
2020
#baseMatch Metadata/Items/SoulCores/Idol
21+
#baseMatch Metadata/Items/SoulCores/Carved
2122

2223
#type CongealedMist
2324
#baseMatch Metadata/Items/SoulCores/AugmentAnoint

0 commit comments

Comments
 (0)