Skip to content

Commit e6d8eff

Browse files
author
LocalIdentity
committed
Fix Talisman's not have a socket limit value
1 parent d89fad6 commit e6d8eff

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

src/Data/Bases/talisman.lua

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ local itemBases = ...
55
itemBases["Changeling Talisman"] = {
66
type = "Talisman",
77
quality = 20,
8+
socketLimit = 4,
89
tags = { default = true, ezomyte_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
910
implicitModTypes = { },
1011
weapon = { PhysicalMin = 9, PhysicalMax = 15, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -13,6 +14,7 @@ itemBases["Changeling Talisman"] = {
1314
itemBases["Nettle Talisman"] = {
1415
type = "Talisman",
1516
quality = 20,
17+
socketLimit = 4,
1618
tags = { default = true, ezomyte_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
1719
implicitModTypes = { },
1820
weapon = { PhysicalMin = 12, PhysicalMax = 20, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, },
@@ -21,6 +23,7 @@ itemBases["Nettle Talisman"] = {
2123
itemBases["Cinderbark Talisman"] = {
2224
type = "Talisman",
2325
quality = 20,
26+
socketLimit = 4,
2427
tags = { default = true, ezomyte_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
2528
implicit = "(50-80)% increased Flammability Magnitude",
2629
implicitModTypes = { { "elemental", "fire", "ailment" }, },
@@ -30,6 +33,7 @@ itemBases["Cinderbark Talisman"] = {
3033
itemBases["Familial Talisman"] = {
3134
type = "Talisman",
3235
quality = 20,
36+
socketLimit = 4,
3337
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
3438
implicit = "Minions deal (30-50)% increased Damage",
3539
implicitModTypes = { { "minion_damage", "damage", "minion" }, },
@@ -39,6 +43,7 @@ itemBases["Familial Talisman"] = {
3943
itemBases["Frenzied Talisman"] = {
4044
type = "Talisman",
4145
quality = 20,
46+
socketLimit = 4,
4247
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
4348
implicitModTypes = { },
4449
weapon = { PhysicalMin = 23, PhysicalMax = 38, CritChanceBase = 8, AttackRateBase = 1.4, Range = 12, },
@@ -47,6 +52,7 @@ itemBases["Frenzied Talisman"] = {
4752
itemBases["Primal Talisman"] = {
4853
type = "Talisman",
4954
quality = 20,
55+
socketLimit = 4,
5056
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
5157
implicit = "+(14-18)% to Block chance",
5258
implicitModTypes = { { "block" }, },
@@ -56,6 +62,7 @@ itemBases["Primal Talisman"] = {
5662
itemBases["Rabid Talisman"] = {
5763
type = "Talisman",
5864
quality = 20,
65+
socketLimit = 4,
5966
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
6067
implicit = "+(7-10) to Maximum Rage",
6168
implicitModTypes = { { }, },
@@ -65,6 +72,7 @@ itemBases["Rabid Talisman"] = {
6572
itemBases["Vicious Talisman"] = {
6673
type = "Talisman",
6774
quality = 20,
75+
socketLimit = 4,
6876
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
6977
implicitModTypes = { },
7078
weapon = { PhysicalMin = 43, PhysicalMax = 71, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -73,6 +81,7 @@ itemBases["Vicious Talisman"] = {
7381
itemBases["Voltfang Talisman"] = {
7482
type = "Talisman",
7583
quality = 20,
84+
socketLimit = 4,
7685
tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
7786
implicit = "(20-30)% increased Magnitude of Shock you inflict",
7887
implicitModTypes = { { "elemental", "lightning", "ailment" }, },
@@ -82,6 +91,7 @@ itemBases["Voltfang Talisman"] = {
8291
itemBases["Lumbering Talisman"] = {
8392
type = "Talisman",
8493
quality = 20,
94+
socketLimit = 4,
8595
tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
8696
implicitModTypes = { },
8797
weapon = { PhysicalMin = 71, PhysicalMax = 107, CritChanceBase = 5, AttackRateBase = 1.1, Range = 12, },
@@ -90,6 +100,7 @@ itemBases["Lumbering Talisman"] = {
90100
itemBases["Roaring Talisman"] = {
91101
type = "Talisman",
92102
quality = 20,
103+
socketLimit = 4,
93104
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
94105
implicit = "+(7-10) to Maximum Rage",
95106
implicitModTypes = { { }, },
@@ -99,6 +110,7 @@ itemBases["Roaring Talisman"] = {
99110
itemBases["Wingbeat Talisman"] = {
100111
type = "Talisman",
101112
quality = 20,
113+
socketLimit = 4,
102114
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
103115
implicitModTypes = { },
104116
weapon = { PhysicalMin = 45, PhysicalMax = 83, CritChanceBase = 7, AttackRateBase = 1.45, Range = 12, },
@@ -107,6 +119,7 @@ itemBases["Wingbeat Talisman"] = {
107119
itemBases["Condemned Talisman"] = {
108120
type = "Talisman",
109121
quality = 20,
122+
socketLimit = 4,
110123
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
111124
implicit = "(10-20)% increased Effect of your Mark Skills",
112125
implicitModTypes = { { "caster", "curse" }, },
@@ -116,6 +129,7 @@ itemBases["Condemned Talisman"] = {
116129
itemBases["Howling Talisman"] = {
117130
type = "Talisman",
118131
quality = 20,
132+
socketLimit = 4,
119133
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
120134
implicit = "+(14-18)% to Block chance",
121135
implicitModTypes = { { "block" }, },
@@ -125,6 +139,7 @@ itemBases["Howling Talisman"] = {
125139
itemBases["Fury Talisman"] = {
126140
type = "Talisman",
127141
quality = 20,
142+
socketLimit = 4,
128143
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
129144
implicit = "+(7-10) to Maximum Rage",
130145
implicitModTypes = { { }, },
@@ -134,6 +149,7 @@ itemBases["Fury Talisman"] = {
134149
itemBases["Cruel Talisman"] = {
135150
type = "Talisman",
136151
quality = 20,
152+
socketLimit = 4,
137153
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
138154
implicitModTypes = { },
139155
weapon = { PhysicalMin = 62, PhysicalMax = 103, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -142,6 +158,7 @@ itemBases["Cruel Talisman"] = {
142158
itemBases["Runeforged Changeling Talisman"] = {
143159
type = "Talisman",
144160
quality = 20,
161+
socketLimit = 4,
145162
tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
146163
implicitModTypes = { },
147164
weapon = { PhysicalMin = 91, PhysicalMax = 151, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -150,6 +167,7 @@ itemBases["Runeforged Changeling Talisman"] = {
150167
itemBases["Runeforged Nettle Talisman"] = {
151168
type = "Talisman",
152169
quality = 20,
170+
socketLimit = 4,
153171
tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
154172
implicitModTypes = { },
155173
weapon = { PhysicalMin = 51, PhysicalMax = 86, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, },
@@ -159,6 +177,7 @@ itemBases["Runemastered Nettle Talisman"] = {
159177
type = "Talisman",
160178
quality = 20,
161179
hidden = true,
180+
socketLimit = 4,
162181
tags = { default = true, ezomyte_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
163182
implicitModTypes = { },
164183
weapon = { PhysicalMin = 68, PhysicalMax = 114, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, },
@@ -167,6 +186,7 @@ itemBases["Runemastered Nettle Talisman"] = {
167186
itemBases["Runeforged Familial Talisman"] = {
168187
type = "Talisman",
169188
quality = 20,
189+
socketLimit = 4,
170190
tags = { default = true, maraketh_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
171191
implicit = "Minions deal (30-50)% increased Damage",
172192
implicitModTypes = { { "minion_damage", "damage", "minion" }, },
@@ -177,6 +197,7 @@ itemBases["Runemastered Familial Talisman"] = {
177197
type = "Talisman",
178198
quality = 20,
179199
hidden = true,
200+
socketLimit = 4,
180201
tags = { default = true, maraketh_basetype = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
181202
implicit = "Minions deal (51-100)% increased Damage",
182203
implicitModTypes = { { "minion_damage", "damage", "minion" }, },
@@ -186,6 +207,7 @@ itemBases["Runemastered Familial Talisman"] = {
186207
itemBases["Runeforged Vicious Talisman"] = {
187208
type = "Talisman",
188209
quality = 20,
210+
socketLimit = 4,
189211
tags = { default = true, runeforged = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
190212
implicitModTypes = { },
191213
weapon = { PhysicalMin = 123, PhysicalMax = 205, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -194,6 +216,7 @@ itemBases["Runeforged Vicious Talisman"] = {
194216
itemBases["Spiny Talisman"] = {
195217
type = "Talisman",
196218
quality = 20,
219+
socketLimit = 4,
197220
tags = { default = true, ezomyte_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
198221
implicitModTypes = { },
199222
weapon = { PhysicalMin = 60, PhysicalMax = 99, CritChanceBase = 11, AttackRateBase = 1.25, Range = 12, },
@@ -202,6 +225,7 @@ itemBases["Spiny Talisman"] = {
202225
itemBases["Ashbark Talisman"] = {
203226
type = "Talisman",
204227
quality = 20,
228+
socketLimit = 4,
205229
tags = { default = true, ezomyte_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
206230
implicit = "(50-80)% increased Flammability Magnitude",
207231
implicitModTypes = { { "elemental", "fire", "ailment" }, },
@@ -211,6 +235,7 @@ itemBases["Ashbark Talisman"] = {
211235
itemBases["Fang Talisman"] = {
212236
type = "Talisman",
213237
quality = 20,
238+
socketLimit = 4,
214239
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
215240
implicit = "Minions deal (30-50)% increased Damage",
216241
implicitModTypes = { { "minion_damage", "damage", "minion" }, },
@@ -220,6 +245,7 @@ itemBases["Fang Talisman"] = {
220245
itemBases["Fungal Talisman"] = {
221246
type = "Talisman",
222247
quality = 20,
248+
socketLimit = 4,
223249
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
224250
implicitModTypes = { },
225251
weapon = { PhysicalMin = 59, PhysicalMax = 98, CritChanceBase = 8, AttackRateBase = 1.4, Range = 12, },
@@ -228,6 +254,7 @@ itemBases["Fungal Talisman"] = {
228254
itemBases["Alpha Talisman"] = {
229255
type = "Talisman",
230256
quality = 20,
257+
socketLimit = 4,
231258
tags = { default = true, maraketh_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
232259
implicit = "+(14-18)% to Block chance",
233260
implicitModTypes = { { "block" }, },
@@ -237,6 +264,7 @@ itemBases["Alpha Talisman"] = {
237264
itemBases["Maji Talisman"] = {
238265
type = "Talisman",
239266
quality = 20,
267+
socketLimit = 4,
240268
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
241269
implicit = "+(7-10) to Maximum Rage",
242270
implicitModTypes = { { }, },
@@ -246,6 +274,7 @@ itemBases["Maji Talisman"] = {
246274
itemBases["Wildwood Talisman"] = {
247275
type = "Talisman",
248276
quality = 20,
277+
socketLimit = 4,
249278
tags = { default = true, talisman = true, two_hand_weapon = true, twohand = true, vaal_basetype = true, weapon = true, },
250279
implicitModTypes = { },
251280
weapon = { PhysicalMin = 67, PhysicalMax = 112, CritChanceBase = 8, AttackRateBase = 1.25, Range = 12, },
@@ -254,6 +283,7 @@ itemBases["Wildwood Talisman"] = {
254283
itemBases["Thunder Talisman"] = {
255284
type = "Talisman",
256285
quality = 20,
286+
socketLimit = 4,
257287
tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
258288
implicit = "(20-30)% increased Magnitude of Shock you inflict",
259289
implicitModTypes = { { "elemental", "lightning", "ailment" }, },
@@ -263,6 +293,7 @@ itemBases["Thunder Talisman"] = {
263293
itemBases["Jade Talisman"] = {
264294
type = "Talisman",
265295
quality = 20,
296+
socketLimit = 4,
266297
tags = { default = true, karui_basetype = true, talisman = true, two_hand_weapon = true, twohand = true, weapon = true, },
267298
implicitModTypes = { },
268299
weapon = { PhysicalMin = 101, PhysicalMax = 151, CritChanceBase = 5, AttackRateBase = 1.1, Range = 12, },

src/Export/Bases/talisman.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
local itemBases = ...
33

44
#type Talisman
5+
#socketLimit 4
56
#baseMatch BaseType Metadata/Items/Weapons/TwoHandWeapons/TwoHandTalismans/AbstractTalisman

0 commit comments

Comments
 (0)