Skip to content

Commit

Permalink
Starfield BMMO
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Jan 6, 2024
1 parent 01ef51f commit 4893ae4
Show file tree
Hide file tree
Showing 9 changed files with 1,781 additions and 82 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- Activator
- APlacedTrap
- Armor
- BiomeMarker
- Book
- Container
- DialogResponses
Expand Down Expand Up @@ -47,6 +48,7 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- Activator
- Ammunition
- Armor
- BiomeMarker
- Book
- Container
- Flora
Expand Down Expand Up @@ -78,6 +80,7 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- AnimatedObject
- AObjectModification
- ArmorModification
- BiomeMarker
- BodyData
- Book
- Container
Expand Down Expand Up @@ -215,6 +218,7 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- Armor
- AudioOcclusionPrimitive
- BendableSpline
- BiomeMarker
- Book
- Container
- Flora
Expand Down Expand Up @@ -264,6 +268,7 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- Activator
- APlacedTrap
- Armor
- BiomeMarker
- Book
- Container
- Flora
Expand Down Expand Up @@ -345,6 +350,12 @@ Functions can then be written that take in `INamed`, allowing any record that ha
- IObjectBounded
### BendableSpline
- IObjectBounded
### BiomeMarker
- IHaveVirtualMachineAdapter
- IKeyworded
- IModeled
- IObjectBounded
- IScripted
### BipedObjectData
- INamed
### BlueprintComponentBODSItem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public StarfieldAspectInterfaceMapping()
Activator_Registration.Instance,
APlacedTrap_Registration.Instance,
Armor_Registration.Instance,
BiomeMarker_Registration.Instance,
Book_Registration.Instance,
Container_Registration.Instance,
DialogResponses_Registration.Instance,
Expand Down Expand Up @@ -70,6 +71,7 @@ public StarfieldAspectInterfaceMapping()
Activator_Registration.Instance,
Ammunition_Registration.Instance,
Armor_Registration.Instance,
BiomeMarker_Registration.Instance,
Book_Registration.Instance,
Container_Registration.Instance,
Flora_Registration.Instance,
Expand Down Expand Up @@ -104,6 +106,7 @@ public StarfieldAspectInterfaceMapping()
AnimatedObject_Registration.Instance,
AObjectModification_Registration.Instance,
ArmorModification_Registration.Instance,
BiomeMarker_Registration.Instance,
BodyData_Registration.Instance,
Book_Registration.Instance,
Container_Registration.Instance,
Expand Down Expand Up @@ -419,6 +422,7 @@ public StarfieldAspectInterfaceMapping()
Ammunition_Registration.Instance,
Armor_Registration.Instance,
AudioOcclusionPrimitive_Registration.Instance,
BiomeMarker_Registration.Instance,
Book_Registration.Instance,
Container_Registration.Instance,
Flora_Registration.Instance,
Expand Down Expand Up @@ -479,6 +483,7 @@ public StarfieldAspectInterfaceMapping()
Activator_Registration.Instance,
APlacedTrap_Registration.Instance,
Armor_Registration.Instance,
BiomeMarker_Registration.Instance,
Book_Registration.Instance,
Container_Registration.Instance,
Flora_Registration.Instance,
Expand Down
12 changes: 12 additions & 0 deletions Mutagen.Bethesda.Starfield/Records/Major Records/BiomeMarker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
<Loqui xmlns="http://tempuri.org/LoquiSource.xsd">
<Object name="BiomeMarker" recordType="BMMO" objType="Record" baseClass="StarfieldMajorRecord">
<Fields>
<RefDirect name="VirtualMachineAdapter" refName="VirtualMachineAdapter" overflowRecordType="XXXX" />
<RefDirect name="ObjectBounds" refName="ObjectBounds" nullable="False" />
<Float name="ODTY" recordType="ODTY" unknown="true" />
<RefDirect name="ObjectPlacementDefaults" refName="ObjectPlacementDefaults" />
<RefDirect name="Model" refName="Model" />
<List name="Keywords" counterRecType="KSIZ" recordType="KWDA">
<FormLink refName="Keyword" />
</List>
<RefList name="Conditions" refName="Condition" />
<FormLink name="MarkerType" refName="Keyword" recordType="KNAM" nullable="false" />
<FormLink name="FloraList" refName="LeveledItem" recordType="LNAM" nullable="false" />
<FormLink name="LNA2" refName="StarfieldMajorRecord" recordType="LNA2" nullable="false" />
</Fields>
<LinkInterface>INpcTemplateTarget</LinkInterface>
</Object>
Expand Down
Loading

0 comments on commit 4893ae4

Please sign in to comment.