Skip to content

Commit

Permalink
Major Fauna Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
canvaswalker committed Sep 13, 2024
1 parent 32c45fa commit 44cdcf2
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,8 @@ public sealed partial class DarkReaperComponent : Component
{
Coefficients = new()
{
{"Radiation", 0}
{"Radiation", 0},
{"Piercing", 0.8f}
}
},

Expand All @@ -258,6 +259,7 @@ public sealed partial class DarkReaperComponent : Component
Coefficients = new()
{
{"Radiation", 0}

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Syntax error, ',' expected

Check failure on line 261 in Content.Shared/SS220/DarkReaper/DarkReaperComponent.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

Syntax error, ',' expected
{"Piercing", 0.6f}
}
},

Expand Down
5 changes: 5 additions & 0 deletions Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@
- type: Grammar
attributes:
gender: male
# ss220 lowTTKUpdate
- type: Damageable
damageContainer: Biological
damageModifierSet: RatKing
# ss220 lowTTKUpdate

- type: entity
id: MobRatKingBuff
Expand Down
5 changes: 5 additions & 0 deletions Resources/Prototypes/Entities/Mobs/Player/dragon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,11 @@
- DoorBumpOpener
- type: ReplacementAccent #SS220 No talking dragons
accent: genericAggressive
# ss220 lowTTKUpdate
- type: Damageable
damageContainer: Biological
damageModifierSet: Dragon
## ss220 lowTTKUpdate

- type: entity
parent: BaseMobDragon
Expand Down
24 changes: 24 additions & 0 deletions Resources/Prototypes/SS220/Damage/modifier_sets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,27 @@
Poison: 0.6
Cellular: 1
Radiation: 0.5

- type: damageModifierSet
id: Dragon
coefficients:
Blunt: 1
Slash: 1.2
Piercing: 0.6
Shock: 1
Cold: 1
Poison: 1
Cellular: 1
Radiation: 0.5

- type: damageModifierSet
id: RatKing
coefficients:
Blunt: 1
Slash: 1
Piercing: 0.7
Shock: 1.0
Cold: 1
Poison: 1
Cellular: 1
Radiation: 1

0 comments on commit 44cdcf2

Please sign in to comment.