Skip to content

Commit

Permalink
radiation resist
Browse files Browse the repository at this point in the history
  • Loading branch information
TheArturZh committed Oct 25, 2023
1 parent 41dd4cb commit 25f7541
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,22 @@ public sealed partial class DarkReaperComponent : Component
public List<DamageModifierSet> StageDamageResists = new()
{
// Stage 1
new(),
new()
{
Coefficients = new()
{
{"Radiation", 0}
}
},

// Stage 2
new(),
new()
{
Coefficients = new()
{
{"Radiation", 0}
}
},

// Stage 3
new()
Expand All @@ -237,7 +249,8 @@ public sealed partial class DarkReaperComponent : Component
{"Heat", 0.5f},
{"Cold", 0.25f},
{"Shock", 0.25f},
{"Cellular", 0}
{"Cellular", 0},
{"Radiation", 0}
}
}
};
Expand Down

0 comments on commit 25f7541

Please sign in to comment.