Skip to content

Commit 5afd747

Browse files
author
LocalIdentity
committed
Merge branch 'dev'
2 parents 9021489 + eaeb37c commit 5afd747

File tree

6 files changed

+104
-2
lines changed

6 files changed

+104
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v2.38.2](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.38.2) (2023/12/19)
4+
5+
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.38.1...v2.38.2)
6+
7+
<!-- Release notes generated using configuration in .github/release.yml at dev -->
8+
9+
## What's Changed
10+
11+
### Fixed Bugs
12+
- Fix Bodyswap of Sacrifice explosion not scaling correctly [\#7104](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7104) ([LocalIdentity](https://github.com/LocalIdentity))
13+
14+
15+
316
## [v2.38.1](https://github.com/PathOfBuildingCommunity/PathOfBuilding/tree/v2.38.1) (2023/12/18)
417

518
[Full Changelog](https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.38.0...v2.38.1)
@@ -18,7 +31,7 @@
1831

1932
### Fixed Bugs
2033
- Fix Flicker Strike DPS being limited by cooldown [\#7078](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7078) ([sida-wang](https://github.com/sida-wang))
21-
- Fix Replica Dragonsfang's Flight not affecting Transfigured gems [\#7101](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7101) ([Paliak](https://github.com/Paliak))
34+
- Fix Replica Dragonfang's Flight not affecting Transfigured gems [\#7101](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7101) ([Paliak](https://github.com/Paliak))
2235
- Fix Lacerate of Haemorrhage "more damage with Bleeding" using increased [\#7072](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7072) ([sida-wang](https://github.com/sida-wang))
2336
- Fix The Adorned not applying to jewels in outer tree sockets [\#7086](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7086) ([LocalIdentity](https://github.com/LocalIdentity))
2437
- Fix The Adorned applying to abyss jewels in gear [\#7086](https://github.com/PathOfBuildingCommunity/PathOfBuilding/pull/7086) ([LocalIdentity](https://github.com/LocalIdentity))

changelog.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
VERSION[2.38.2][2023/12/19]
2+
3+
--- User Interface ---
4+
* Fix Bodyswap of Sacrifice explosion not scaling correctly (LocalIdentity)
5+
6+
17
VERSION[2.38.1][2023/12/18]
28

39
--- User Interface ---
@@ -10,7 +16,7 @@ VERSION[2.38.1][2023/12/18]
1016

1117
--- Fixed Bugs ---
1218
* Fix Flicker Strike DPS being limited by cooldown (sida-wang)
13-
* Fix Replica Dragonsfang's Flight not affecting Transfigured gems (Paliak)
19+
* Fix Replica Dragonfang's Flight not affecting Transfigured gems (Paliak)
1420
* Fix Lacerate of Haemorrhage "more damage with Bleeding" using increased (sida-wang)
1521
* Fix The Adorned not applying to jewels in outer tree sockets (LocalIdentity)
1622
* Fix The Adorned applying to abyss jewels in gear (LocalIdentity)

src/Data/Skills/act_int.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2344,6 +2344,14 @@ skills["CorpseWarpAltX"] = {
23442344
["spell_maximum_base_fire_damage"] = {
23452345
skill("FireMax", nil, { type = "SkillPart", skillPart = 1 }),
23462346
},
2347+
["spell_base_fire_damage_%_maximum_life"] = {
2348+
skill("selfFireExplosionLifeMultiplier", nil, { type = "SkillPart", skillPart = 1 }),
2349+
div = 100,
2350+
},
2351+
["skill_minion_explosion_life_%"] = {
2352+
skill("selfFireExplosionLifeMultiplier", nil, { type = "SkillPart", skillPart = 2 }),
2353+
div = 100,
2354+
},
23472355
["corpse_warp_area_of_effect_+%_final_when_consuming_minion"] = {
23482356
mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }),
23492357
},

src/Export/Classes/GGPKData.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ function GGPKClass:GetNeededFiles()
218218
"Data/azmerifeaturerooms.dat",
219219
"Data/corpsetypetags.dat",
220220
"Data/itemisedcorpse.dat",
221+
"Data/indexableskillgems.dat",
222+
"Data/indexablesupportgems.dat",
221223
}
222224
local txtFiles = {
223225
"Metadata/StatDescriptions/passive_skill_aura_stat_descriptions.txt",

src/Export/Skills/act_int.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,14 @@ local skills, mod, flag, skill = ...
581581
["spell_maximum_base_fire_damage"] = {
582582
skill("FireMax", nil, { type = "SkillPart", skillPart = 1 }),
583583
},
584+
["spell_base_fire_damage_%_maximum_life"] = {
585+
skill("selfFireExplosionLifeMultiplier", nil, { type = "SkillPart", skillPart = 1 }),
586+
div = 100,
587+
},
588+
["skill_minion_explosion_life_%"] = {
589+
skill("selfFireExplosionLifeMultiplier", nil, { type = "SkillPart", skillPart = 2 }),
590+
div = 100,
591+
},
584592
["corpse_warp_area_of_effect_+%_final_when_consuming_minion"] = {
585593
mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }),
586594
},

src/Export/spec.lua

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5286,7 +5286,72 @@ return {
52865286
},
52875287
incursionuniqueupgrades={
52885288
},
5289+
indexableskillgems={
5290+
[1]={
5291+
list=false,
5292+
name="Id",
5293+
refTo="",
5294+
type="Int",
5295+
width=80
5296+
},
5297+
[2]={
5298+
list=true,
5299+
name="BaseItemType",
5300+
refTo="SkillGems",
5301+
type="Key",
5302+
width=300
5303+
},
5304+
[3]={
5305+
list=false,
5306+
name="Skill",
5307+
refTo="",
5308+
type="String",
5309+
width=150
5310+
},
5311+
[4]={
5312+
list=true,
5313+
name="BaseItemTypeRuthless",
5314+
refTo="SkillGems",
5315+
type="Key",
5316+
width=300
5317+
},
5318+
[5]={
5319+
list=false,
5320+
name="SkillRuthless",
5321+
refTo="",
5322+
type="String",
5323+
width=150
5324+
},
5325+
[6]={
5326+
list=false,
5327+
name="IdRuthless",
5328+
refTo="indexableskillgems",
5329+
type="Key",
5330+
width=80
5331+
}
5332+
},
52895333
indexablesupportgems={
5334+
[1]={
5335+
list=false,
5336+
name="Id",
5337+
refTo="",
5338+
type="Int",
5339+
width=80
5340+
},
5341+
[2]={
5342+
list=false,
5343+
name="BaseItemType",
5344+
refTo="SkillGems",
5345+
type="Key",
5346+
width=300
5347+
},
5348+
[3]={
5349+
list=false,
5350+
name="Skill",
5351+
refTo="",
5352+
type="String",
5353+
width=200
5354+
}
52905355
},
52915356
influenceexalts={
52925357
},

0 commit comments

Comments
 (0)