You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Taelyn edited this page Mar 17, 2024
·
3 revisions
EVA compatibility allows other mods to make their armor, apparel, races, etc. survivable in space.
Generally 0.75 DecompressionResistance is added to armors and 0.25 and to helmets which also have HypoxiaResistance set to 1 for immunity. Full space suits and jetpack capable armors have a VacuumSpeedMultiplier of 4 giving them the same move speed as on land. The comp will display "EVA Capable" in apparel description.
Apparels:
<ThingDef>
<!-- Rest of the xml -->
<equippedStatOffsets>
<HypoxiaResistanceMayRequire="kentington.saveourship2">1</HypoxiaResistance>
<DecompressionResistanceMayRequire="kentington.saveourship2">0.25</DecompressionResistance>
<VacuumSpeedMultiplierMayRequire="kentington.saveourship2">4</VacuumSpeedMultiplier>
</equippedStatOffsets>
<comps>
<liMayRequire="kentington.saveourship2">
<compClass>SaveOurShip2.Comp_EVA</compClass>
</li>
</comps>
</ThingDef>
Pawns:
<ThingDef>
<!-- Rest of the xml -->
<statBases>
<HypoxiaResistanceMayRequire="kentington.saveourship2">1</HypoxiaResistance>
<DecompressionResistanceMayRequire="kentington.saveourship2">1</DecompressionResistance>
<VacuumSpeedMultiplierMayRequire="kentington.saveourship2">4</VacuumSpeedMultiplier>
</statBases>
</ThingDef>
Buildings (that contain pawns):
<ThingDef>
<!-- Rest of the xml -->
<statBases>
<HypoxiaResistanceOffsetMayRequire="kentington.saveourship2">1</HypoxiaResistanceOffset>
<DecompressionResistanceOffsetMayRequire="kentington.saveourship2">1</DecompressionResistanceOffset>
</statBases>
</ThingDef>