@quenty/rogue-humanoid 10.32.6 → 10.32.7-canary.90de6eb.0
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/CHANGELOG.md +8 -0
- package/package.json +16 -16
- package/src/Client/RogueHumanoidClient.lua +3 -1
- package/src/Client/RogueHumanoidServiceClient.lua +1 -0
- package/src/Server/RogueHumanoid.lua +3 -1
- package/src/Server/RogueHumanoidService.lua +1 -0
- package/src/Shared/RogueHumanoidBase.lua +3 -1
- package/src/Shared/RogueHumanoidProperties.lua +1 -0
- package/test/scripts/Client/ClientMain.client.lua +1 -0
- package/test/scripts/Server/ServerMain.server.lua +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.32.7-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@10.32.6...@quenty/rogue-humanoid@10.32.7-canary.90de6eb.0) (2026-01-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/rogue-humanoid
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [10.32.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@10.32.5...@quenty/rogue-humanoid@10.32.6) (2025-12-31)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/rogue-humanoid
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/rogue-humanoid",
|
|
3
|
-
"version": "10.32.
|
|
3
|
+
"version": "10.32.7-canary.90de6eb.0",
|
|
4
4
|
"description": "Roguelike humanoid properties which can be modified",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,23 +25,23 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/adorneedata": "
|
|
29
|
-
"@quenty/attributeutils": "
|
|
30
|
-
"@quenty/baseobject": "
|
|
31
|
-
"@quenty/binder": "
|
|
32
|
-
"@quenty/brio": "
|
|
33
|
-
"@quenty/characterutils": "
|
|
34
|
-
"@quenty/loader": "
|
|
35
|
-
"@quenty/maid": "
|
|
36
|
-
"@quenty/playerhumanoidbinder": "
|
|
37
|
-
"@quenty/rogue-properties": "
|
|
38
|
-
"@quenty/rx": "
|
|
39
|
-
"@quenty/servicebag": "
|
|
40
|
-
"@quenty/table": "
|
|
41
|
-
"@quenty/valueobject": "
|
|
28
|
+
"@quenty/adorneedata": "7.22.7-canary.90de6eb.0",
|
|
29
|
+
"@quenty/attributeutils": "14.20.6-canary.90de6eb.0",
|
|
30
|
+
"@quenty/baseobject": "10.9.1-canary.90de6eb.0",
|
|
31
|
+
"@quenty/binder": "14.25.7-canary.90de6eb.0",
|
|
32
|
+
"@quenty/brio": "14.20.5-canary.90de6eb.0",
|
|
33
|
+
"@quenty/characterutils": "12.22.6-canary.90de6eb.0",
|
|
34
|
+
"@quenty/loader": "10.9.1-canary.90de6eb.0",
|
|
35
|
+
"@quenty/maid": "3.5.1-canary.90de6eb.0",
|
|
36
|
+
"@quenty/playerhumanoidbinder": "14.25.7-canary.90de6eb.0",
|
|
37
|
+
"@quenty/rogue-properties": "11.30.7-canary.90de6eb.0",
|
|
38
|
+
"@quenty/rx": "13.20.4-canary.90de6eb.0",
|
|
39
|
+
"@quenty/servicebag": "11.13.4-canary.90de6eb.0",
|
|
40
|
+
"@quenty/table": "3.8.0",
|
|
41
|
+
"@quenty/valueobject": "13.21.7-canary.90de6eb.0"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
|
|
47
47
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[=[
|
|
2
3
|
@class RogueHumanoidClient
|
|
3
4
|
]=]
|
|
@@ -6,12 +7,13 @@ local require = require(script.Parent.loader).load(script)
|
|
|
6
7
|
|
|
7
8
|
local Binder = require("Binder")
|
|
8
9
|
local RogueHumanoidBase = require("RogueHumanoidBase")
|
|
10
|
+
local ServiceBag = require("ServiceBag")
|
|
9
11
|
|
|
10
12
|
local RogueHumanoidClient = setmetatable({}, RogueHumanoidBase)
|
|
11
13
|
RogueHumanoidClient.ClassName = "RogueHumanoidClient"
|
|
12
14
|
RogueHumanoidClient.__index = RogueHumanoidClient
|
|
13
15
|
|
|
14
|
-
function RogueHumanoidClient.new(humanoid, serviceBag)
|
|
16
|
+
function RogueHumanoidClient.new(humanoid, serviceBag: ServiceBag.ServiceBag)
|
|
15
17
|
local self = setmetatable(RogueHumanoidBase.new(humanoid, serviceBag), RogueHumanoidClient)
|
|
16
18
|
|
|
17
19
|
return self
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[=[
|
|
2
3
|
@class RogueHumanoid
|
|
3
4
|
]=]
|
|
@@ -6,12 +7,13 @@ local require = require(script.Parent.loader).load(script)
|
|
|
6
7
|
|
|
7
8
|
local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
|
|
8
9
|
local RogueHumanoidBase = require("RogueHumanoidBase")
|
|
10
|
+
local ServiceBag = require("ServiceBag")
|
|
9
11
|
|
|
10
12
|
local RogueHumanoid = setmetatable({}, RogueHumanoidBase)
|
|
11
13
|
RogueHumanoid.ClassName = "RogueHumanoid"
|
|
12
14
|
RogueHumanoid.__index = RogueHumanoid
|
|
13
15
|
|
|
14
|
-
function RogueHumanoid.new(humanoid, serviceBag)
|
|
16
|
+
function RogueHumanoid.new(humanoid, serviceBag: ServiceBag.ServiceBag)
|
|
15
17
|
local self = setmetatable(RogueHumanoidBase.new(humanoid, serviceBag), RogueHumanoid)
|
|
16
18
|
|
|
17
19
|
return self
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
--!nonstrict
|
|
1
2
|
--[=[
|
|
2
3
|
@class RogueHumanoidBase
|
|
3
4
|
]=]
|
|
@@ -13,6 +14,7 @@ local CharacterUtils = require("CharacterUtils")
|
|
|
13
14
|
local RogueHumanoidProperties = require("RogueHumanoidProperties")
|
|
14
15
|
local Rx = require("Rx")
|
|
15
16
|
local RxRootPartUtils = require("RxRootPartUtils")
|
|
17
|
+
local ServiceBag = require("ServiceBag")
|
|
16
18
|
local ValueObject = require("ValueObject")
|
|
17
19
|
|
|
18
20
|
local GROWTH_VALUE_NAMES = {
|
|
@@ -32,7 +34,7 @@ local RogueHumanoidBase = setmetatable({}, BaseObject)
|
|
|
32
34
|
RogueHumanoidBase.ClassName = "RogueHumanoidBase"
|
|
33
35
|
RogueHumanoidBase.__index = RogueHumanoidBase
|
|
34
36
|
|
|
35
|
-
function RogueHumanoidBase.new(humanoid, serviceBag)
|
|
37
|
+
function RogueHumanoidBase.new(humanoid, serviceBag: ServiceBag.ServiceBag)
|
|
36
38
|
local self = setmetatable(BaseObject.new(humanoid), RogueHumanoidBase)
|
|
37
39
|
|
|
38
40
|
self._serviceBag = assert(serviceBag, "No serviceBag")
|