mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* Psionics It's a ton of stuff relating to the basic Psionics system and all the powers. I'm saving this as a bit of a sanity check before moving forward. Left to do: 1. Implementing the Psionic faction so that the chat works as intended. 2. Adding the start-state cooldown timers to the actions. * Cleaned up everything with the word 'Psionic' on it. Got the psionic chat working. Got some other stuff working * Some final psionic cleanup. The last batch of content. * Update RobustToolbox * rebased * Revert "Update RobustToolbox" This reverts commit c0cf35d03f828f6ccfeb05fcffd91cf074818fc9. * Update RobustToolbox * Revert "Update RobustToolbox" This reverts commit c4dc828df7912e063ea856b2a83a790bc88d1e09. * Update RobustToolbox * Psionics It's a ton of stuff relating to the basic Psionics system and all the powers. I'm saving this as a bit of a sanity check before moving forward. Left to do: 1. Implementing the Psionic faction so that the chat works as intended. 2. Adding the start-state cooldown timers to the actions. * Cleaned up everything with the word 'Psionic' on it. Got the psionic chat working. Got some other stuff working * Some final psionic cleanup. The last batch of content. * rebased * Cleaned up everything with the word 'Psionic' on it. Got the psionic chat working. Got some other stuff working * Broken Commit With these changes in place, the unit does not work. Recording them so i don't lose my work. * Brings it All Together. Dawn of the final Commit. Rebase completed. * Update RobustToolbox * Changed 'Station Events' to 'StationEvents' and cleaned up the Delta-V Events.yml file of duplicate events. * Delete ghost_roles.yml Duplicate. * Update familiars.yml * Update familiars.yml * Update GlimmerReactiveSystem.cs * Makes tinfoil hats craftable. * Decided I'm not dealing with adding fugitives or Glimmer Wisps right now. * Psionic invisibility won't work now that Eye component exists. Or at least, the integrator test won't psas. * Update special.yml * Added #nyanotrasen code or //Nyanotrasen code to many, many files. * Properly fixes comments. --------- Signed-off-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com> Signed-off-by: PHCodes <47927305+PHCodes@users.noreply.github.com> Co-authored-by: Debug <sidneymaatman@gmail.com> Co-authored-by: Colin-Tel <113523727+Colin-Tel@users.noreply.github.com>
95 lines
2.2 KiB
C#
95 lines
2.2 KiB
C#
namespace Content.Shared.Database;
|
|
|
|
// DO NOT CHANGE THE NUMERIC VALUES OF THESE
|
|
public enum LogType
|
|
{
|
|
Unknown = 0, // do not use
|
|
// DamageChange = 1
|
|
Damaged = 2,
|
|
Healed = 3,
|
|
Slip = 4,
|
|
EventAnnounced = 5,
|
|
EventStarted = 6,
|
|
EventRan = 16,
|
|
EventStopped = 7,
|
|
Verb = 19,
|
|
ShuttleCalled = 8,
|
|
ShuttleRecalled = 9,
|
|
ExplosiveDepressurization = 10,
|
|
Respawn = 13,
|
|
RoundStartJoin = 14,
|
|
LateJoin = 15,
|
|
ChemicalReaction = 17,
|
|
ReagentEffect = 18,
|
|
CanisterValve = 20,
|
|
CanisterPressure = 21,
|
|
CanisterPurged = 22,
|
|
CanisterTankEjected = 23,
|
|
CanisterTankInserted = 24,
|
|
DisarmedAction = 25,
|
|
DisarmedKnockdown = 26,
|
|
AttackArmedClick = 27,
|
|
AttackArmedWide = 28,
|
|
AttackUnarmedClick = 29,
|
|
AttackUnarmedWide = 30,
|
|
InteractHand = 31,
|
|
InteractActivate = 32,
|
|
Throw = 33,
|
|
Landed = 34,
|
|
ThrowHit = 35,
|
|
Pickup = 36,
|
|
Drop = 37,
|
|
BulletHit = 38,
|
|
ForceFeed = 40, // involuntary
|
|
Ingestion = 53, // voluntary
|
|
MeleeHit = 41,
|
|
HitScanHit = 42,
|
|
Mind = 43, // Suicides, ghosting, repossession, objectives, etc.
|
|
Explosion = 44,
|
|
Radiation = 45, // Unused
|
|
Barotrauma = 46,
|
|
Flammable = 47,
|
|
Asphyxiation = 48,
|
|
Temperature = 49,
|
|
Hunger = 50,
|
|
Thirst = 51,
|
|
Electrocution = 52,
|
|
CrayonDraw = 39,
|
|
AtmosPressureChanged = 54,
|
|
AtmosPowerChanged = 55,
|
|
AtmosVolumeChanged = 56,
|
|
AtmosFilterChanged = 57,
|
|
AtmosRatioChanged = 58,
|
|
FieldGeneration = 59,
|
|
GhostRoleTaken = 60,
|
|
Chat = 61,
|
|
Action = 62,
|
|
RCD = 63,
|
|
Construction = 64,
|
|
Trigger = 65,
|
|
Anchor = 66,
|
|
Unanchor = 67,
|
|
EmergencyShuttle = 68,
|
|
// haha so funny
|
|
Emag = 69,
|
|
Gib = 70,
|
|
Identity = 71,
|
|
CableCut = 72,
|
|
StorePurchase = 73,
|
|
LatticeCut = 74,
|
|
Stripping = 75,
|
|
Stamina = 76,
|
|
EntitySpawn = 77,
|
|
AdminMessage = 78,
|
|
Anomaly = 79,
|
|
WireHacking = 80,
|
|
Teleport = 81,
|
|
EntityDelete = 82,
|
|
Vote = 83,
|
|
ItemConfigure = 84,
|
|
DeviceLinking = 85,
|
|
Tile = 86,
|
|
BagOfHolding = 420, //Nyano - Summary: adds bag of holding.
|
|
Psionics = 421, //Nyano - Summary: ads psionic as a log type.
|
|
}
|