-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'DeltaV-Station:master' into Byoin
- Loading branch information
Showing
43 changed files
with
687 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 35 additions & 2 deletions
37
Content.Server/StationEvents/Components/VentCrittersRuleComponent.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,50 @@ | ||
using Content.Server.StationEvents.Events; | ||
using Content.Shared.EntityTable.EntitySelectors; | ||
using Content.Shared.Storage; | ||
using Robust.Shared.Map; // DeltaV | ||
|
||
namespace Content.Server.StationEvents.Components; | ||
|
||
[RegisterComponent, Access(typeof(VentCrittersRule))] | ||
public sealed partial class VentCrittersRuleComponent : Component | ||
{ | ||
[DataField("entries")] | ||
public List<EntitySpawnEntry> Entries = new(); | ||
// DeltaV: Replaced by Table | ||
//[DataField("entries")] | ||
//public List<EntitySpawnEntry> Entries = new(); | ||
|
||
/// <summary> | ||
/// DeltaV: Table of possible entities to spawn. | ||
/// </summary> | ||
[DataField(required: true)] | ||
public EntityTableSelector Table = default!; | ||
|
||
/// <summary> | ||
/// At least one special entry is guaranteed to spawn | ||
/// </summary> | ||
[DataField("specialEntries")] | ||
public List<EntitySpawnEntry> SpecialEntries = new(); | ||
|
||
/// <summary> | ||
/// DeltaV: The location of the vent that got picked. | ||
/// </summary> | ||
[ViewVariables] | ||
public EntityCoordinates? Location; | ||
|
||
/// <summary> | ||
/// DeltaV: Base minimum number of critters to spawn. | ||
/// </summary> | ||
[DataField] | ||
public int Min = 2; | ||
|
||
/// <summary> | ||
/// DeltaV: Base maximum number of critters to spawn. | ||
/// </summary> | ||
[DataField] | ||
public int Max = 3; | ||
|
||
/// <summary> | ||
/// DeltaV: Min and max get multiplied by the player count then divided by this. | ||
/// </summary> | ||
[DataField] | ||
public int PlayerRatio = 25; | ||
} |
Oops, something went wrong.