-
Notifications
You must be signed in to change notification settings - Fork 66
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 #130 from Memeji/Nikko--Lewd-Traits
Vagina Trait + Organization.
- Loading branch information
Showing
10 changed files
with
187 additions
and
98 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
Content.Server/FloofStation/Traits/Components/SquirtProducerComponent.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 SquirtProducerComponent : Component | ||
{ | ||
[DataField("solutionname")] | ||
public string SolutionName = "vagina"; | ||
|
||
[DataField] | ||
public ProtoId<ReagentPrototype> ReagentId = "NaturalLubricant"; | ||
|
||
[DataField] | ||
public FixedPoint2 MaxVolume = FixedPoint2.New(25); | ||
|
||
[DataField] | ||
public Entity<SolutionComponent>? Solution = null; | ||
|
||
[DataField] | ||
public FixedPoint2 QuantityPerUpdate = 5; | ||
|
||
[DataField] | ||
public float HungerUsage = 10f; | ||
|
||
[DataField] | ||
public TimeSpan GrowthDelay = TimeSpan.FromSeconds(10); | ||
|
||
[DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] | ||
public TimeSpan NextGrowth = TimeSpan.FromSeconds(0); | ||
} |
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
10 changes: 10 additions & 0 deletions
10
Content.Shared/Floofstation/Traits/Events/SquirtingDoAfterEvent.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,10 @@ | ||
using Content.Shared.DoAfter; | ||
using Robust.Shared.Serialization; | ||
|
||
namespace Content.Shared.FloofStation.Traits.Events; | ||
|
||
[Serializable, NetSerializable] | ||
public sealed partial class SquirtingDoAfterEvent : SimpleDoAfterEvent | ||
{ | ||
} | ||
|
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,5 @@ | ||
reagent-name-cum = cum | ||
reagent-desc-cum = A sticky cloudy-white liquid. | ||
reagent-name-nat-lube = natural lubricant | ||
reagent-desc-nat-lube = A slippery clear liquid. |
File renamed without changes.
File renamed without changes.
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,5 @@ | ||
squirt-verb-dry = Your slit is dry. | ||
squirt-verb-success = You fill {THE($target)} with {$amount}u of natural lubricant from your pussy. | ||
squirt-verb-success-ground = You squirt out all over the ground! | ||
squirt-verb-get-text = Squirt |
2 changes: 0 additions & 2 deletions
2
Resources/Locale/en-US/reagents/floofstation/natural_sauce.ftl
This file was deleted.
Oops, something went wrong.
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