Skip to content

Commit cf961fa

Browse files
authored
Misc meta/def/alias additions (#441)
Scattershot meta/def/alias
1 parent b22d93a commit cf961fa

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

SoulsFormats/SoulsFormats/Formats/MSB/MSBS/PartsParam.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1247,9 +1247,9 @@ public abstract class EnemyBase : Part
12471247
public short PatrolIndex { get; set; }
12481248

12491249
/// <summary>
1250-
/// Unknown.
1250+
/// Enum that refers to an animation ID to use.
12511251
/// </summary>
1252-
public short UnkT22 { get; set; }
1252+
public short InitAnimIDType { get; set; }
12531253

12541254
/// <summary>
12551255
/// Unknown.
@@ -1327,7 +1327,7 @@ private protected override void ReadTypeData(BinaryReaderEx br)
13271327
CharaInitID = br.ReadInt32();
13281328
CollisionPartIndex = br.ReadInt32();
13291329
PatrolIndex = br.ReadInt16();
1330-
UnkT22 = br.ReadInt16();
1330+
InitAnimIDType = br.ReadInt16();
13311331
UnkT24 = br.ReadInt32();
13321332
br.AssertPattern(0x10, 0xFF);
13331333
BackupEventAnimID = br.ReadInt32();
@@ -1368,7 +1368,7 @@ private protected override void WriteTypeData(BinaryWriterEx bw)
13681368
bw.WriteInt32(CharaInitID);
13691369
bw.WriteInt32(CollisionPartIndex);
13701370
bw.WriteInt16(PatrolIndex);
1371-
bw.WriteInt16(UnkT22);
1371+
bw.WriteInt16(InitAnimIDType);
13721372
bw.WriteInt32(UnkT24);
13731373
bw.WritePattern(0x10, 0xFF);
13741374
bw.WriteInt32(BackupEventAnimID);

StudioCore/Assets/Aliases/ER/MapNames.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ m60_52_41_00 Greyoll's Dragonbarrow - Southeast Farum Greatbridge, Lenne's Rise
446446
m60_26_21_01 Northeast Dragonbarrow
447447
m60_52_42_00 Greyoll's Dragonbarrow - Northeast Farum Greatbridge
448448
m60_52_43_00 Greyoll's Dragonbarrow - Northeast Cliffside
449-
m60_13_13_02 Southeast Mountaintops
449+
m60_13_13_02 Southeast Mountaintops - Fire Giant Arena
450450
m60_26_26_01 Southeast Flame Peak
451451
m60_52_52_00 Flame Peak - Southwest Fire Giant Arena
452452
m60_52_53_00 Flame Peak - Northwest Fire Giant Arena, Foot of the Forge

StudioCore/Assets/Paramdex/ER/Meta/SpEffect.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -506,9 +506,9 @@
506506
<Option Value="449" Name="Malenia's Great Rune" />
507507
<Option Value="450" Name="Reduce Headshot Impact" />
508508
<Option Value="452" Name="Unknown" />
509-
<Option Value="453" Name="Unknown" />
510-
<Option Value="454" Name="Unknown" />
511-
<Option Value="455" Name="Unknown" />
509+
<Option Value="453" Name="Fade after death - Normal" />
510+
<Option Value="454" Name="Fade after death - Blue" />
511+
<Option Value="455" Name="Fade after death - Boss" />
512512
<Option Value="456" Name="Unknown" />
513513
<Option Value="457" Name="Unknown" />
514514
<Option Value="458" Name="Attempt Invasion" />

StudioCore/Assets/Paramdex/ER/Names/SpEffectParam.txt

+3
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,9 @@
309309
4282 Disable Grace Warp
310310
4286 Disable Grace Warp (Trap)
311311
4288 Disable Grace Warp
312+
4301 Enemy: Fade after death
313+
4301 Enemy: Fade after death (boss)
314+
4302 Enemy: Fade after death (blue)
312315
5250 Enemy: Golden Eyes (Bonus Runes)
313316
5255 Enemy: Golden Eyes Failed (No Reroll)
314317
5269 Enemy: Golden Eyes Chance (Guaranteed)

0 commit comments

Comments
 (0)