mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
183 lines
5.7 KiB
C#
183 lines
5.7 KiB
C#
using Content.Shared.Chat.Prototypes;
|
|
using Content.Shared.Chemistry.Components;
|
|
using Content.Shared.Chemistry.Reagent;
|
|
using Content.Shared.Damage;
|
|
using Content.Shared.Humanoid;
|
|
using Content.Shared.Roles;
|
|
using Content.Shared.StatusIcon;
|
|
using Robust.Shared.Audio;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Shared.Zombies;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class ZombieComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The baseline infection chance you have if you have no protective gear
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float BaseZombieInfectionChance = 0.75f;
|
|
|
|
/// <summary>
|
|
/// The minimum infection chance possible. This is simply to prevent
|
|
/// being overly protected by bundling up.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float MinZombieInfectionChance = 0.05f;
|
|
|
|
/// <summary>
|
|
/// How effective each resistance type on a piece of armor is. Using a damage specifier for this seems illegal.
|
|
/// </summary>
|
|
public DamageSpecifier ResistanceEffectiveness = new()
|
|
{
|
|
DamageDict = new ()
|
|
{
|
|
{"Slash", 0.5},
|
|
{"Piercing", 0.3},
|
|
{"Blunt", 0.1},
|
|
}
|
|
};
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float ZombieMovementSpeedDebuff = 0.70f;
|
|
|
|
/// <summary>
|
|
/// The skin color of the zombie
|
|
/// </summary>
|
|
[DataField("skinColor")]
|
|
public Color SkinColor = new(0.45f, 0.51f, 0.29f);
|
|
|
|
/// <summary>
|
|
/// The eye color of the zombie
|
|
/// </summary>
|
|
[DataField("eyeColor")]
|
|
public Color EyeColor = new(0.96f, 0.13f, 0.24f);
|
|
|
|
/// <summary>
|
|
/// The base layer to apply to any 'external' humanoid layers upon zombification.
|
|
/// </summary>
|
|
[DataField("baseLayerExternal")]
|
|
public string BaseLayerExternal = "MobHumanoidMarkingMatchSkin";
|
|
|
|
/// <summary>
|
|
/// The attack arc of the zombie
|
|
/// </summary>
|
|
[DataField("attackArc", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
|
|
public string AttackAnimation = "WeaponArcBite";
|
|
|
|
/// <summary>
|
|
/// The role prototype of the zombie antag role
|
|
/// </summary>
|
|
[DataField("zombieRoleId", customTypeSerializer: typeof(PrototypeIdSerializer<AntagPrototype>))]
|
|
public string ZombieRoleId = "Zombie";
|
|
|
|
/// <summary>
|
|
/// The CustomBaseLayers of the humanoid to restore in case of cloning
|
|
/// </summary>
|
|
[DataField("beforeZombifiedCustomBaseLayers")]
|
|
public Dictionary<HumanoidVisualLayers, CustomBaseLayerInfo> BeforeZombifiedCustomBaseLayers = new ();
|
|
|
|
/// <summary>
|
|
/// The skin color of the humanoid to restore in case of cloning
|
|
/// </summary>
|
|
[DataField("beforeZombifiedSkinColor")]
|
|
public Color BeforeZombifiedSkinColor;
|
|
|
|
/// <summary>
|
|
/// The eye color of the humanoid to restore in case of cloning
|
|
/// </summary>
|
|
[DataField("beforeZombifiedEyeColor")]
|
|
public Color BeforeZombifiedEyeColor;
|
|
|
|
[DataField("emoteId")]
|
|
public ProtoId<EmoteSoundsPrototype>? EmoteSoundsId = "Zombie";
|
|
|
|
[DataField("nextTick", customTypeSerializer:typeof(TimeOffsetSerializer))]
|
|
public TimeSpan NextTick;
|
|
|
|
[DataField("zombieStatusIcon")]
|
|
public ProtoId<FactionIconPrototype> StatusIcon { get; set; } = "ZombieFaction";
|
|
|
|
/// <summary>
|
|
/// Healing each second
|
|
/// </summary>
|
|
[DataField("passiveHealing")]
|
|
public DamageSpecifier PassiveHealing = new()
|
|
{
|
|
DamageDict = new()
|
|
{
|
|
// Corvax-Wega-Zombie-Edit-start
|
|
{ "Blunt", -0.8 },
|
|
{ "Slash", -0.6 },
|
|
{ "Piercing", -0.6 },
|
|
{ "Heat", -0.1 },
|
|
{ "Shock", -0.1 }
|
|
// Corvax-Wega-Zombie-Edit-end
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// A multiplier applied to <see cref="PassiveHealing"/> when the entity is in critical condition.
|
|
/// </summary>
|
|
[DataField("passiveHealingCritMultiplier")]
|
|
public float PassiveHealingCritMultiplier = 3.5f; // Corvax-Wega-Zombie-Edit
|
|
|
|
/// <summary>
|
|
/// Healing given when a zombie bites a living being.
|
|
/// </summary>
|
|
[DataField("healingOnBite")]
|
|
public DamageSpecifier HealingOnBite = new()
|
|
{
|
|
DamageDict = new()
|
|
{
|
|
// Corvax-Wega-Zombie-Edit-start
|
|
{ "Blunt", -3 },
|
|
{ "Slash", -3 },
|
|
{ "Piercing", -3 }
|
|
// Corvax-Wega-Zombie-Edit-end
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// The damage dealt on bite, dehardcoded for your enjoyment
|
|
/// </summary>
|
|
[DataField]
|
|
public DamageSpecifier DamageOnBite = new()
|
|
{
|
|
DamageDict = new()
|
|
{
|
|
{ "Slash", 13 },
|
|
{ "Piercing", 7 },
|
|
{ "Structural", 10 }
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// Path to antagonist alert sound.
|
|
/// </summary>
|
|
[DataField("greetSoundNotification")]
|
|
public SoundSpecifier GreetSoundNotification = new SoundPathSpecifier("/Audio/Ambience/Antag/zombie_start.ogg");
|
|
|
|
/// <summary>
|
|
/// Hit sound on zombie bite.
|
|
/// </summary>
|
|
[DataField]
|
|
public SoundSpecifier BiteSound = new SoundPathSpecifier("/Audio/Effects/bite.ogg");
|
|
|
|
/// <summary>
|
|
/// The blood reagents of the humanoid to restore in case of cloning
|
|
/// </summary>
|
|
[DataField("beforeZombifiedBloodReagents")]
|
|
public Solution BeforeZombifiedBloodReagents = new();
|
|
|
|
/// <summary>
|
|
/// The blood reagents to give the zombie. In case you want zombies that bleed milk, or something.
|
|
/// </summary>
|
|
[DataField("newBloodReagents")]
|
|
public Solution NewBloodReagents = new([new("ZombieBlood", 1)]);
|
|
}
|