Rat King Milsim + Buffs (#20190)

* rat king update

* rummaging

* buuuuunnnnncccchhh of shit

* the last of it

* make rat servants not ghost roles

* pissma buff and cooldown
This commit is contained in:
Nemanja
2023-09-22 16:01:05 -04:00
committed by GitHub
parent eebf2c0039
commit f16ff3a2d9
42 changed files with 801 additions and 106 deletions

View File

@@ -17,3 +17,17 @@ public sealed class PointingAttemptEvent : EntityEventArgs
Target = target;
}
}
/// <summary>
/// Raised on the entity who is pointing after they point at something.
/// </summary>
/// <param name="Pointed"></param>
[ByRefEvent]
public readonly record struct AfterPointedAtEvent(EntityUid Pointed);
/// <summary>
/// Raised on an entity after they are pointed at by another entity.
/// </summary>
/// <param name="Pointer"></param>
[ByRefEvent]
public readonly record struct AfterGotPointedAtEvent(EntityUid Pointer);