mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
* Уэээээээ * Почти настрадались * Скоро конец.... * СКОРО * Мышки плакали, кололись, но продолжали упорно жрать кактус * Все ближе! * Это такой конец? * Книжка говна * фиксики * ОНО ЖИВОЕ * Телепорт * разное * Added byond * ивенты теперь работают * Разфикс телепорта * Свет мой зеркальце скажи, да всю правду доложи - Я ль робастней всех на свете? * Разное * Еще многа всего * Многа разнава * Скоро конец.... * ЭТО КОНЕЦ * Фикс линтера (ну, или я на это надеюсь) * Еще один фикс линтера * Победа! * фиксики * пу пу пу * Фикс подмастерья * Мисклик * Высокочастотный меч * Неймспейсы * Пул способностей мага
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
// SPDX-FileCopyrightText: 2022 EmoGarbage404 <98561806+EmoGarbage404@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2023 DrSmugleaf <DrSmugleaf@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2023 Leon Friedrich <60421075+ElectroJr@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2023 Nemanja <98561806+EmoGarbage404@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2024 AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2024 metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
using Content.Server.Polymorph.Systems;
|
|
using Content.Shared.Polymorph;
|
|
|
|
namespace Content.Server.Polymorph.Components;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(PolymorphSystem))]
|
|
public sealed partial class PolymorphedEntityComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The polymorph prototype, used to track various information
|
|
/// about the polymorph
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public PolymorphConfiguration Configuration = new();
|
|
|
|
/// <summary>
|
|
/// The original entity that the player will revert back into
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public EntityUid Parent;
|
|
|
|
/// <summary>
|
|
/// The amount of time that has passed since the entity was created
|
|
/// used for tracking the duration
|
|
/// </summary>
|
|
[DataField]
|
|
public float Time;
|
|
|
|
[DataField]
|
|
public EntityUid? Action;
|
|
} |