warscript 0.0.1-dev.65ee461 → 0.0.1-dev.66ce6c9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/types/effect.d.ts +3 -1
- package/core/types/effect.lua +29 -26
- package/core/types/sound.d.ts +25 -17
- package/core/types/sound.lua +44 -80
- package/core/types/timer.d.ts +7 -6
- package/core/types/timer.lua +21 -18
- package/engine/behaviour/ability/apply-unit-behavior.lua +0 -1
- package/engine/behaviour/ability/damage.d.ts +0 -3
- package/engine/behaviour/ability/damage.lua +2 -2
- package/engine/behaviour/ability.d.ts +1 -4
- package/engine/behaviour/ability.lua +4 -6
- package/engine/behaviour/unit.d.ts +0 -2
- package/engine/buff.d.ts +8 -13
- package/engine/buff.lua +50 -81
- package/engine/internal/mechanics/ability-duration.lua +1 -1
- package/engine/internal/unit.d.ts +1 -6
- package/engine/internal/unit.lua +2 -8
- package/engine/object-data/auxiliary/attachment-preset.d.ts +2 -7
- package/engine/object-data/auxiliary/attachment-preset.lua +3 -4
- package/engine/object-data/entry/ability-type/shock-wave.d.ts +0 -4
- package/engine/object-data/entry/ability-type/shock-wave.lua +0 -26
- package/engine/object-data/entry/ability-type.d.ts +11 -11
- package/engine/object-data/entry/ability-type.lua +10 -24
- package/engine/object-data/entry/sound-preset.d.ts +0 -17
- package/engine/object-data/entry/sound-preset.lua +0 -104
- package/package.json +2 -2
- package/engine/object-data/auxiliary/sound-eax.d.ts +0 -10
- package/engine/object-data/auxiliary/sound-eax.lua +0 -2
- package/engine/object-data/entry/ability-type/carrion-swarm.d.ts +0 -14
- package/engine/object-data/entry/ability-type/carrion-swarm.lua +0 -65
- package/engine/object-data/entry/ability-type/ensnare.d.ts +0 -12
- package/engine/object-data/entry/ability-type/ensnare.lua +0 -52
- package/engine/object-data/entry/ability-type/phase-shift.d.ts +0 -10
- package/engine/object-data/entry/ability-type/phase-shift.lua +0 -39
- package/engine/object-data/entry/ability-type/web.d.ts +0 -12
- package/engine/object-data/entry/ability-type/web.lua +0 -52
|
@@ -33,108 +33,4 @@ __TS__SetDescriptor(
|
|
|
33
33
|
},
|
|
34
34
|
true
|
|
35
35
|
)
|
|
36
|
-
__TS__SetDescriptor(
|
|
37
|
-
SoundPreset.prototype,
|
|
38
|
-
"volume",
|
|
39
|
-
{
|
|
40
|
-
get = function(self)
|
|
41
|
-
return self:getNumberField("Volume")
|
|
42
|
-
end,
|
|
43
|
-
set = function(self, volume)
|
|
44
|
-
self:setNumberField("Volume", volume)
|
|
45
|
-
end
|
|
46
|
-
},
|
|
47
|
-
true
|
|
48
|
-
)
|
|
49
|
-
__TS__SetDescriptor(
|
|
50
|
-
SoundPreset.prototype,
|
|
51
|
-
"pitch",
|
|
52
|
-
{
|
|
53
|
-
get = function(self)
|
|
54
|
-
return self:getNumberField("Pitch")
|
|
55
|
-
end,
|
|
56
|
-
set = function(self, pitch)
|
|
57
|
-
self:setNumberField("Pitch", pitch)
|
|
58
|
-
end
|
|
59
|
-
},
|
|
60
|
-
true
|
|
61
|
-
)
|
|
62
|
-
__TS__SetDescriptor(
|
|
63
|
-
SoundPreset.prototype,
|
|
64
|
-
"priority",
|
|
65
|
-
{
|
|
66
|
-
get = function(self)
|
|
67
|
-
return self:getNumberField("Priority")
|
|
68
|
-
end,
|
|
69
|
-
set = function(self, priority)
|
|
70
|
-
self:setNumberField("Priority", priority)
|
|
71
|
-
end
|
|
72
|
-
},
|
|
73
|
-
true
|
|
74
|
-
)
|
|
75
|
-
__TS__SetDescriptor(
|
|
76
|
-
SoundPreset.prototype,
|
|
77
|
-
"channel",
|
|
78
|
-
{
|
|
79
|
-
get = function(self)
|
|
80
|
-
return self:getNumberField("Channel")
|
|
81
|
-
end,
|
|
82
|
-
set = function(self, channel)
|
|
83
|
-
self:setNumberField("Channel", channel)
|
|
84
|
-
end
|
|
85
|
-
},
|
|
86
|
-
true
|
|
87
|
-
)
|
|
88
|
-
__TS__SetDescriptor(
|
|
89
|
-
SoundPreset.prototype,
|
|
90
|
-
"minimumDistance",
|
|
91
|
-
{
|
|
92
|
-
get = function(self)
|
|
93
|
-
return self:getNumberField("MinDistance")
|
|
94
|
-
end,
|
|
95
|
-
set = function(self, minimumDistance)
|
|
96
|
-
self:setNumberField("MinDistance", minimumDistance)
|
|
97
|
-
end
|
|
98
|
-
},
|
|
99
|
-
true
|
|
100
|
-
)
|
|
101
|
-
__TS__SetDescriptor(
|
|
102
|
-
SoundPreset.prototype,
|
|
103
|
-
"maximumDistance",
|
|
104
|
-
{
|
|
105
|
-
get = function(self)
|
|
106
|
-
return self:getNumberField("MaxDistance")
|
|
107
|
-
end,
|
|
108
|
-
set = function(self, maximumDistance)
|
|
109
|
-
self:setNumberField("MaxDistance", maximumDistance)
|
|
110
|
-
end
|
|
111
|
-
},
|
|
112
|
-
true
|
|
113
|
-
)
|
|
114
|
-
__TS__SetDescriptor(
|
|
115
|
-
SoundPreset.prototype,
|
|
116
|
-
"distanceCutoff",
|
|
117
|
-
{
|
|
118
|
-
get = function(self)
|
|
119
|
-
return self:getNumberField("DistanceCutoff")
|
|
120
|
-
end,
|
|
121
|
-
set = function(self, distanceCutoff)
|
|
122
|
-
self:setNumberField("DistanceCutoff", distanceCutoff)
|
|
123
|
-
end
|
|
124
|
-
},
|
|
125
|
-
true
|
|
126
|
-
)
|
|
127
|
-
__TS__SetDescriptor(
|
|
128
|
-
SoundPreset.prototype,
|
|
129
|
-
"eax",
|
|
130
|
-
{
|
|
131
|
-
get = function(self)
|
|
132
|
-
return self:getStringField("EAXFlags")
|
|
133
|
-
end,
|
|
134
|
-
set = function(self, eax)
|
|
135
|
-
self:setStringField("EAXFlags", eax)
|
|
136
|
-
end
|
|
137
|
-
},
|
|
138
|
-
true
|
|
139
|
-
)
|
|
140
36
|
return ____exports
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package",
|
|
3
3
|
"name": "warscript",
|
|
4
|
-
"version": "0.0.1-dev.
|
|
4
|
+
"version": "0.0.1-dev.66ce6c9",
|
|
5
5
|
"description": "A typescript library for Warcraft III using Warpack.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"warcraft",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@warscript/language-extensions": "^0.0.1",
|
|
25
25
|
"@warscript/tstl-plugin": "^0.0.4",
|
|
26
26
|
"lua-types": "^2.13.1",
|
|
27
|
-
"warpack": "0.0.1-dev.
|
|
27
|
+
"warpack": "0.0.1-dev.dfbb169"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@typescript-eslint/eslint-plugin": "^8.13.0",
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/** @noSelfInFile */
|
|
2
|
-
export declare const enum SoundEax {
|
|
3
|
-
DEFAULT = "DefaultEAXON",
|
|
4
|
-
ACKNOWLEDGEMENTS = "HeroAcksEAX",
|
|
5
|
-
ENVIRONMENT = "DoodadsEAX",
|
|
6
|
-
DRUMS = "KotoDrumsEAX",
|
|
7
|
-
ATTACKS = "CombatSoundsEAX",
|
|
8
|
-
ABILITIES = "SpellsEAX",
|
|
9
|
-
MISSILES = "MissilesEAX"
|
|
10
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/** @noSelfInFile */
|
|
2
|
-
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
-
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
-
export declare class CarrionSwarmAbilityType extends AbilityType {
|
|
5
|
-
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
-
get damagePerTarget(): number[];
|
|
7
|
-
set damagePerTarget(damagePerTarget: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
8
|
-
get maximumTotalDamage(): number[];
|
|
9
|
-
set maximumTotalDamage(maximumTotalDamage: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
10
|
-
get distance(): number[];
|
|
11
|
-
set distance(distance: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
-
get finalAreaOfEffect(): number[];
|
|
13
|
-
set finalAreaOfEffect(finalAreaOfEffect: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
14
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
local ____lualib = require("lualib_bundle")
|
|
2
|
-
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
-
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
-
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
-
local ____exports = {}
|
|
6
|
-
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
-
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
-
____exports.CarrionSwarmAbilityType = __TS__Class()
|
|
9
|
-
local CarrionSwarmAbilityType = ____exports.CarrionSwarmAbilityType
|
|
10
|
-
CarrionSwarmAbilityType.name = "CarrionSwarmAbilityType"
|
|
11
|
-
__TS__ClassExtends(CarrionSwarmAbilityType, AbilityType)
|
|
12
|
-
CarrionSwarmAbilityType.BASE_ID = fourCC("AUcs")
|
|
13
|
-
__TS__SetDescriptor(
|
|
14
|
-
CarrionSwarmAbilityType.prototype,
|
|
15
|
-
"damagePerTarget",
|
|
16
|
-
{
|
|
17
|
-
get = function(self)
|
|
18
|
-
return self:getNumberLevelField("Ucs1")
|
|
19
|
-
end,
|
|
20
|
-
set = function(self, damagePerTarget)
|
|
21
|
-
self:setNumberLevelField("Ucs1", damagePerTarget)
|
|
22
|
-
end
|
|
23
|
-
},
|
|
24
|
-
true
|
|
25
|
-
)
|
|
26
|
-
__TS__SetDescriptor(
|
|
27
|
-
CarrionSwarmAbilityType.prototype,
|
|
28
|
-
"maximumTotalDamage",
|
|
29
|
-
{
|
|
30
|
-
get = function(self)
|
|
31
|
-
return self:getNumberLevelField("Ucs2")
|
|
32
|
-
end,
|
|
33
|
-
set = function(self, maximumTotalDamage)
|
|
34
|
-
self:setNumberLevelField("Ucs2", maximumTotalDamage)
|
|
35
|
-
end
|
|
36
|
-
},
|
|
37
|
-
true
|
|
38
|
-
)
|
|
39
|
-
__TS__SetDescriptor(
|
|
40
|
-
CarrionSwarmAbilityType.prototype,
|
|
41
|
-
"distance",
|
|
42
|
-
{
|
|
43
|
-
get = function(self)
|
|
44
|
-
return self:getNumberLevelField("Ucs3")
|
|
45
|
-
end,
|
|
46
|
-
set = function(self, distance)
|
|
47
|
-
self:setNumberLevelField("Ucs3", distance)
|
|
48
|
-
end
|
|
49
|
-
},
|
|
50
|
-
true
|
|
51
|
-
)
|
|
52
|
-
__TS__SetDescriptor(
|
|
53
|
-
CarrionSwarmAbilityType.prototype,
|
|
54
|
-
"finalAreaOfEffect",
|
|
55
|
-
{
|
|
56
|
-
get = function(self)
|
|
57
|
-
return self:getNumberLevelField("Ucs4")
|
|
58
|
-
end,
|
|
59
|
-
set = function(self, finalAreaOfEffect)
|
|
60
|
-
self:setNumberLevelField("Ucs4", finalAreaOfEffect)
|
|
61
|
-
end
|
|
62
|
-
},
|
|
63
|
-
true
|
|
64
|
-
)
|
|
65
|
-
return ____exports
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/** @noSelfInFile */
|
|
2
|
-
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
-
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
-
export declare class EnsnareAbilityType extends AbilityType {
|
|
5
|
-
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
-
get airUnitLoweringDuration(): number[];
|
|
7
|
-
set airUnitLoweringDuration(airUnitLoweringDuration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
8
|
-
get airUnitHeight(): number[];
|
|
9
|
-
set airUnitHeight(airUnitHeight: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
10
|
-
get meleeAttackRange(): number[];
|
|
11
|
-
set meleeAttackRange(meleeAttackRange: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
local ____lualib = require("lualib_bundle")
|
|
2
|
-
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
-
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
-
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
-
local ____exports = {}
|
|
6
|
-
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
-
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
-
____exports.EnsnareAbilityType = __TS__Class()
|
|
9
|
-
local EnsnareAbilityType = ____exports.EnsnareAbilityType
|
|
10
|
-
EnsnareAbilityType.name = "EnsnareAbilityType"
|
|
11
|
-
__TS__ClassExtends(EnsnareAbilityType, AbilityType)
|
|
12
|
-
EnsnareAbilityType.BASE_ID = fourCC("Aens")
|
|
13
|
-
__TS__SetDescriptor(
|
|
14
|
-
EnsnareAbilityType.prototype,
|
|
15
|
-
"airUnitLoweringDuration",
|
|
16
|
-
{
|
|
17
|
-
get = function(self)
|
|
18
|
-
return self:getNumberLevelField("Ens1")
|
|
19
|
-
end,
|
|
20
|
-
set = function(self, airUnitLoweringDuration)
|
|
21
|
-
self:setNumberLevelField("Ens1", airUnitLoweringDuration)
|
|
22
|
-
end
|
|
23
|
-
},
|
|
24
|
-
true
|
|
25
|
-
)
|
|
26
|
-
__TS__SetDescriptor(
|
|
27
|
-
EnsnareAbilityType.prototype,
|
|
28
|
-
"airUnitHeight",
|
|
29
|
-
{
|
|
30
|
-
get = function(self)
|
|
31
|
-
return self:getNumberLevelField("Ens2")
|
|
32
|
-
end,
|
|
33
|
-
set = function(self, airUnitHeight)
|
|
34
|
-
self:setNumberLevelField("Ens2", airUnitHeight)
|
|
35
|
-
end
|
|
36
|
-
},
|
|
37
|
-
true
|
|
38
|
-
)
|
|
39
|
-
__TS__SetDescriptor(
|
|
40
|
-
EnsnareAbilityType.prototype,
|
|
41
|
-
"meleeAttackRange",
|
|
42
|
-
{
|
|
43
|
-
get = function(self)
|
|
44
|
-
return self:getNumberLevelField("Ens3")
|
|
45
|
-
end,
|
|
46
|
-
set = function(self, meleeAttackRange)
|
|
47
|
-
self:setNumberLevelField("Ens3", meleeAttackRange)
|
|
48
|
-
end
|
|
49
|
-
},
|
|
50
|
-
true
|
|
51
|
-
)
|
|
52
|
-
return ____exports
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/** @noSelfInFile */
|
|
2
|
-
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
-
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
-
export declare class PhaseShiftAbilityType extends AbilityType {
|
|
5
|
-
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
-
get movementSpeedDecreaseFactor(): number[];
|
|
7
|
-
set movementSpeedDecreaseFactor(movementSpeedDecreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
8
|
-
get attackSpeedDecreaseFactor(): number[];
|
|
9
|
-
set attackSpeedDecreaseFactor(attackSpeedDecreaseFactor: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
10
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
local ____lualib = require("lualib_bundle")
|
|
2
|
-
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
-
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
-
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
-
local ____exports = {}
|
|
6
|
-
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
-
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
-
____exports.PhaseShiftAbilityType = __TS__Class()
|
|
9
|
-
local PhaseShiftAbilityType = ____exports.PhaseShiftAbilityType
|
|
10
|
-
PhaseShiftAbilityType.name = "PhaseShiftAbilityType"
|
|
11
|
-
__TS__ClassExtends(PhaseShiftAbilityType, AbilityType)
|
|
12
|
-
PhaseShiftAbilityType.BASE_ID = fourCC("Apsh")
|
|
13
|
-
__TS__SetDescriptor(
|
|
14
|
-
PhaseShiftAbilityType.prototype,
|
|
15
|
-
"movementSpeedDecreaseFactor",
|
|
16
|
-
{
|
|
17
|
-
get = function(self)
|
|
18
|
-
return self:getNumberLevelField("Hbn1")
|
|
19
|
-
end,
|
|
20
|
-
set = function(self, movementSpeedDecreaseFactor)
|
|
21
|
-
self:setNumberLevelField("Hbn1", movementSpeedDecreaseFactor)
|
|
22
|
-
end
|
|
23
|
-
},
|
|
24
|
-
true
|
|
25
|
-
)
|
|
26
|
-
__TS__SetDescriptor(
|
|
27
|
-
PhaseShiftAbilityType.prototype,
|
|
28
|
-
"attackSpeedDecreaseFactor",
|
|
29
|
-
{
|
|
30
|
-
get = function(self)
|
|
31
|
-
return self:getNumberLevelField("Hbn2")
|
|
32
|
-
end,
|
|
33
|
-
set = function(self, attackSpeedDecreaseFactor)
|
|
34
|
-
self:setNumberLevelField("Hbn2", attackSpeedDecreaseFactor)
|
|
35
|
-
end
|
|
36
|
-
},
|
|
37
|
-
true
|
|
38
|
-
)
|
|
39
|
-
return ____exports
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/** @noSelfInFile */
|
|
2
|
-
import { AbilityType, AbilityTypeId } from "../ability-type";
|
|
3
|
-
import { ObjectDataEntryLevelFieldValueSupplier } from "../../entry";
|
|
4
|
-
export declare class WebAbilityType extends AbilityType {
|
|
5
|
-
static readonly BASE_ID: AbilityTypeId;
|
|
6
|
-
get airUnitLoweringDuration(): number[];
|
|
7
|
-
set airUnitLoweringDuration(airUnitLoweringDuration: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
8
|
-
get airUnitHeight(): number[];
|
|
9
|
-
set airUnitHeight(airUnitHeight: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
10
|
-
get meleeAttackRange(): number[];
|
|
11
|
-
set meleeAttackRange(meleeAttackRange: ObjectDataEntryLevelFieldValueSupplier<number>);
|
|
12
|
-
}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
local ____lualib = require("lualib_bundle")
|
|
2
|
-
local __TS__Class = ____lualib.__TS__Class
|
|
3
|
-
local __TS__ClassExtends = ____lualib.__TS__ClassExtends
|
|
4
|
-
local __TS__SetDescriptor = ____lualib.__TS__SetDescriptor
|
|
5
|
-
local ____exports = {}
|
|
6
|
-
local ____ability_2Dtype = require("engine.object-data.entry.ability-type")
|
|
7
|
-
local AbilityType = ____ability_2Dtype.AbilityType
|
|
8
|
-
____exports.WebAbilityType = __TS__Class()
|
|
9
|
-
local WebAbilityType = ____exports.WebAbilityType
|
|
10
|
-
WebAbilityType.name = "WebAbilityType"
|
|
11
|
-
__TS__ClassExtends(WebAbilityType, AbilityType)
|
|
12
|
-
WebAbilityType.BASE_ID = fourCC("Aweb")
|
|
13
|
-
__TS__SetDescriptor(
|
|
14
|
-
WebAbilityType.prototype,
|
|
15
|
-
"airUnitLoweringDuration",
|
|
16
|
-
{
|
|
17
|
-
get = function(self)
|
|
18
|
-
return self:getNumberLevelField("Ens1")
|
|
19
|
-
end,
|
|
20
|
-
set = function(self, airUnitLoweringDuration)
|
|
21
|
-
self:setNumberLevelField("Ens1", airUnitLoweringDuration)
|
|
22
|
-
end
|
|
23
|
-
},
|
|
24
|
-
true
|
|
25
|
-
)
|
|
26
|
-
__TS__SetDescriptor(
|
|
27
|
-
WebAbilityType.prototype,
|
|
28
|
-
"airUnitHeight",
|
|
29
|
-
{
|
|
30
|
-
get = function(self)
|
|
31
|
-
return self:getNumberLevelField("Ens2")
|
|
32
|
-
end,
|
|
33
|
-
set = function(self, airUnitHeight)
|
|
34
|
-
self:setNumberLevelField("Ens2", airUnitHeight)
|
|
35
|
-
end
|
|
36
|
-
},
|
|
37
|
-
true
|
|
38
|
-
)
|
|
39
|
-
__TS__SetDescriptor(
|
|
40
|
-
WebAbilityType.prototype,
|
|
41
|
-
"meleeAttackRange",
|
|
42
|
-
{
|
|
43
|
-
get = function(self)
|
|
44
|
-
return self:getNumberLevelField("Ens3")
|
|
45
|
-
end,
|
|
46
|
-
set = function(self, meleeAttackRange)
|
|
47
|
-
self:setNumberLevelField("Ens3", meleeAttackRange)
|
|
48
|
-
end
|
|
49
|
-
},
|
|
50
|
-
true
|
|
51
|
-
)
|
|
52
|
-
return ____exports
|