mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-27 10:38:02 +03:00
* updates map, lowers server volume * Delete PLEASEWORKTHISTIMEIBEGYOUS14.yml * Update DV-pirateradio.yml * changes fax machine to *not* alert admins; and start with emagged by default instead of using VV * Revert "changes fax machine to *not* alert admins; and start with emagged by default instead of using VV" This reverts commit 05bb5f402d7986214f753dd217765e01b46e69a7. * Revert "Update DV-pirateradio.yml" This reverts commit e77fb34e86c994bce2f63205741636be6c0286fd. * Revert "Delete PLEASEWORKTHISTIMEIBEGYOUS14.yml" This reverts commit 2000e2c147125827405eeaf1191abb29c7b4c7d8. * Revert "updates map, lowers server volume" This reverts commit d99cab6f36c26441c8431ee5c7d2fc2ad1ff68d7. * adds new syndicate fax, maps it in as well as other QOL changes * adds cybersun pen to Syndicate PDA's * Update DV-pirateradio.yml * adds blacklist to CC Fax + quieter server * Update PirateRadioSpawnRule.cs * unfinished scuttling system * Adding colorblind quality of life. * Tweaks to map and guards, no more self destruct system * added guard flavor text * The reasons for these are now gone * DONE * Update events.yml * Update PirateRadioSpawnRule.cs * Update DV-pirateradio.yml * fixes crew monitor server not working at *extreme* ranges * adds delta-v comment where needed * Small code optimization and tons of documentation * Update outpost visuals! Guards have a PDA now * Update DV-pirateradio.yml * Update DV-pirateradio.yml * Goodbye crab. Hello Content.Shared migration * Cleaning up pirateradio spawn * Update DV-pirateradio.yml * reverts pen changes to upstream PDA's * adds new PDA * adds new PDA to loadouts. * Update Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml Co-authored-by: Debug <49997488+DebugOk@users.noreply.github.com> Signed-off-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> * Maintainer requested changes * Update salvage.yml * Update syndicateNPCs.yml * Cleaning up unneeded stuff * more code cleanup * Update PirateRadioSpawnRule.cs * Update computers.yml * Revert "Update computers.yml" This reverts commit cbd0c583d48c66579d9fd6ee2c10cd7a350a955c. * Last fixes to the math * Update PirateRadioSpawnRule.cs * update license. --------- Signed-off-by: VMSolidus <evilexecutive@gmail.com> Signed-off-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> Co-authored-by: DangerRevoltion <142105406+DangerRevoltion@users.noreply.github.com> Co-authored-by: VMSolidus <evilexecutive@gmail.com> Co-authored-by: Debug <49997488+DebugOk@users.noreply.github.com>
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
/*
|
|
* Delta-V - This file is licensed under AGPLv3
|
|
* Copyright (c) 2024 Delta-V Contributors
|
|
* See AGPLv3.txt for details.
|
|
*/
|
|
|
|
using Content.Server.StationEvents.Events;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent, Access(typeof(PirateRadioSpawnRule))]
|
|
public sealed partial class PirateRadioSpawnRuleComponent : Component
|
|
{
|
|
[DataField("PirateRadioShuttlePath")]
|
|
public string PirateRadioShuttlePath = "Maps/Shuttles/DeltaV/DV-pirateradio.yml";
|
|
|
|
[DataField("additionalRule")]
|
|
public EntityUid? AdditionalRule;
|
|
|
|
[DataField("debrisCount")]
|
|
public int DebrisCount { get; set; }
|
|
|
|
[DataField("distanceModifier")]
|
|
public float DistanceModifier { get; set; }
|
|
|
|
[DataField("debrisDistanceModifier")]
|
|
public float DebrisDistanceModifier { get; set; }
|
|
|
|
/// <summary>
|
|
/// "Stations of Unusual Size Constant", derived from the AABB.Width of Shoukou.
|
|
/// This Constant is used to check the size of a station relative to the reference point
|
|
/// </summary>
|
|
[DataField("sousk")]
|
|
public float SOUSK = 123.44f;
|
|
|
|
}
|