Suspicion rework (#7723)

* Deprecate suspicion spawn markers.

* Add suspicion loot table.

* Add suspicion item tag component.

* Suspicion rule now spawns items randomly around the station on start.
Also cleans them up when it ends.

* Fix build
huh, that API changed quickly--
This commit is contained in:
Vera Aguilera Puerto
2022-04-26 16:57:24 +02:00
committed by GitHub
parent d3a20c8a23
commit 3ee1f1f810
4 changed files with 304 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
namespace Content.Server.Suspicion;
/// <summary>
/// Tag component meant for bookkeeping items spawned by the suspicion rule.
/// </summary>
[RegisterComponent]
public sealed class SuspicionItemComponent : Component
{
}