-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from 778b/BaseMissionItems
Base mission items
- Loading branch information
Showing
18 changed files
with
86,778 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using Robust.Shared.Prototypes; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; | ||
using Robust.Shared.Utility; | ||
|
||
namespace Content.Server.TS; | ||
|
||
/// <summary> | ||
/// Stores data for generic queries. | ||
/// Each query is run in turn to get the final available results. | ||
/// These results are then run through the considerations. | ||
/// </summary> | ||
[Prototype] | ||
public sealed partial class MissionMapGridPrototype : IPrototype | ||
{ | ||
[IdDataField] | ||
public string ID { get; private set; } = default!; | ||
|
||
[DataField(required: true)] | ||
public ResPath MapPath; | ||
} |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Robust.Shared.Prototypes; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; | ||
|
||
namespace Content.Server.TS; | ||
|
||
/// <summary> | ||
/// Stores data for generic queries. | ||
/// Each query is run in turn to get the final available results. | ||
/// These results are then run through the considerations. | ||
/// </summary> | ||
[Prototype] | ||
public sealed partial class SecretPoolPrototype : IPrototype | ||
{ | ||
[IdDataField] | ||
public string ID { get; private set; } = default!; | ||
|
||
[DataField(customTypeSerializer: typeof(PrototypeIdListSerializer<EntityPrototype>))] | ||
public List<String> PoolItems = new(); | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.