-
Notifications
You must be signed in to change notification settings - Fork 81
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 #49 from Fansana/Suacy_Sauces
The CUM Update - First Iteration.
- Loading branch information
Showing
10 changed files
with
504 additions
and
2 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
Content.Server/FloofStation/Traits/Components/CumProducerComponent.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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using Content.Shared.FixedPoint; | ||
using Content.Shared.Chemistry.Components; | ||
using Content.Shared.Chemistry.Reagent; | ||
using Content.Shared.FloofStation.Traits; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; | ||
using Robust.Shared.Prototypes; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; | ||
using Robust.Shared.GameStates; | ||
|
||
namespace Content.Server.FloofStation.Traits; | ||
|
||
[RegisterComponent, Access(typeof(LewdTraitSystem))] | ||
public sealed partial class CumProducerComponent : Component | ||
{ | ||
[DataField("solutionname"), ViewVariables(VVAccess.ReadWrite)] | ||
public string SolutionName; | ||
|
||
[DataField, ViewVariables(VVAccess.ReadWrite)] | ||
public ProtoId<ReagentPrototype> ReagentId = "Cum"; | ||
|
||
[DataField] | ||
public FixedPoint2 MaxVolume = FixedPoint2.New(25); | ||
|
||
[DataField] | ||
public Entity<SolutionComponent>? Solution = null; | ||
|
||
[DataField, ViewVariables(VVAccess.ReadOnly)] | ||
public FixedPoint2 QuantityPerUpdate = 25; | ||
|
||
[DataField] | ||
public float HungerUsage = 10f; | ||
|
||
[DataField] | ||
public TimeSpan GrowthDelay = TimeSpan.FromMinutes(1); | ||
|
||
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] | ||
public TimeSpan NextGrowth = TimeSpan.FromSeconds(0); | ||
} |
38 changes: 38 additions & 0 deletions
38
Content.Server/FloofStation/Traits/Components/MilkProducerComponent.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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using Content.Shared.FixedPoint; | ||
using Content.Shared.Chemistry.Components; | ||
using Content.Shared.Chemistry.Reagent; | ||
using Content.Shared.FloofStation.Traits; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; | ||
using Robust.Shared.Prototypes; | ||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; | ||
using Robust.Shared.GameStates; | ||
|
||
namespace Content.Server.FloofStation.Traits; | ||
|
||
[RegisterComponent, Access(typeof(LewdTraitSystem))] | ||
public sealed partial class MilkProducerComponent : Component | ||
{ | ||
[DataField("solutionname"), ViewVariables(VVAccess.ReadWrite)] | ||
public string SolutionName; | ||
|
||
[DataField, ViewVariables(VVAccess.ReadWrite)] | ||
public ProtoId<ReagentPrototype> ReagentId = "Milk"; | ||
|
||
[DataField] | ||
public FixedPoint2 MaxVolume = FixedPoint2.New(25); | ||
|
||
[DataField] | ||
public Entity<SolutionComponent>? Solution = null; | ||
|
||
[DataField, ViewVariables(VVAccess.ReadOnly)] | ||
public FixedPoint2 QuantityPerUpdate = 25; | ||
|
||
[DataField] | ||
public float HungerUsage = 10f; | ||
|
||
[DataField] | ||
public TimeSpan GrowthDelay = TimeSpan.FromMinutes(1); | ||
|
||
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] | ||
public TimeSpan NextGrowth = TimeSpan.FromSeconds(0); | ||
} |
Oops, something went wrong.