Rat King Names (#10503)

This commit is contained in:
Nemanja
2022-08-14 01:38:40 -04:00
committed by GitHub
parent f26d6b333c
commit c3fdc85d60
3 changed files with 56 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
using Content.Shared.Actions.ActionTypes;
using Content.Shared.Dataset;
using Content.Shared.Disease;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
@@ -43,5 +44,11 @@ namespace Content.Server.RatKing
/// </summary>
[ViewVariables, DataField("molesMiasmaPerDomain")]
public float MolesMiasmaPerDomain = 100f;
// Both of these are used to generate the random name for rat king.
[DataField("titleNameDataset", customTypeSerializer: typeof(PrototypeIdSerializer<DatasetPrototype>))]
public string TitleNameDataset = "RegalRatNameTitle";
[DataField("kingdomNameDataset", customTypeSerializer: typeof(PrototypeIdSerializer<DatasetPrototype>))]
public string KingdomNameDataset = "RegalRatNameKingdom";
}
};