Add extradimensional orange, holymelon, meatwheat, worldpeas mutations (#27624)

* new mutations

* translation string fix

* add haloperidol to plant

* fix

* add FoodSequence

* food sequence fixes
This commit is contained in:
slarticodefast
2024-09-13 16:02:54 +02:00
committed by GitHub
parent a151d4ed01
commit 0d40b0b3e0
57 changed files with 688 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
using Content.Shared.Tag;
using Robust.Shared.Prototypes;
using Robust.Shared.Utility;
using System.Numerics;
namespace Content.Shared.Nutrition.Prototypes;
@@ -18,6 +19,12 @@ public sealed partial class FoodSequenceElementPrototype : IPrototype
[DataField]
public List<SpriteSpecifier> Sprites { get; private set; } = new();
/// <summary>
/// Relative size of the sprite displayed in the food sequence.
/// </summary>
[DataField]
public Vector2 Scale { get; private set; } = Vector2.One;
/// <summary>
/// A localized name piece to build into the item name generator.
/// </summary>
@@ -34,5 +41,5 @@ public sealed partial class FoodSequenceElementPrototype : IPrototype
/// Tag list of this layer. Used for recipes for food metamorphosis.
/// </summary>
[DataField]
public List<ProtoId<TagPrototype>> Tags { get; set; } = new();
public List<ProtoId<TagPrototype>> Tags { get; set; } = new();
}