diff --git a/Content.Client/_Exodus/Movement/Systems/WaddleAnimationSystem.cs b/Content.Client/_Exodus/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index c6aa06a1829..00000000000 --- a/Content.Client/_Exodus/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,162 +0,0 @@ -// Based on https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Client/Movement/Systems/WaddleAnimationSystem.cs -using System.Numerics; -using Content.Client.Buckle; -using Content.Client.Gravity; -using Content.Shared.ActionBlocker; -using Content.Shared.Mobs.Systems; -using Content.Shared.Movement.Components; -using Content.Shared.Standing; // Exodus-Crawling -using Robust.Client.Animations; -using Robust.Client.GameObjects; -using Robust.Shared.Animations; -using Content.Shared.Exodus.Movement.Components; -using Content.Shared.Exodus.Movement.Systems; - -namespace Content.Client.Exodus.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem -{ - [Dependency] private readonly AnimationPlayerSystem _animation = default!; - [Dependency] private readonly GravitySystem _gravity = default!; - [Dependency] private readonly ActionBlockerSystem _actionBlocker = default!; - [Dependency] private readonly BuckleSystem _buckle = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeAllEvent(OnStartWaddling); - SubscribeLocalEvent(OnAnimationCompleted); - SubscribeAllEvent(OnStopWaddling); - } - - private void OnStartWaddling(StartedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StartWaddling((GetEntity(msg.Entity), comp)); - } - - private void OnStopWaddling(StoppedWaddlingEvent msg, EntitySessionEventArgs args) - { - if (TryComp(GetEntity(msg.Entity), out var comp)) - StopWaddling((GetEntity(msg.Entity), comp)); - } - - private void StartWaddling(Entity entity) - { - if (_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - if (_gravity.IsWeightless(entity.Owner)) - return; - - if (!_actionBlocker.CanMove(entity.Owner, mover)) - return; - - // Do nothing if buckled in - if (_buckle.IsBuckled(entity.Owner)) - return; - - // Do nothing if crit or dead (for obvious reasons) - if (_mobState.IsIncapacitated(entity.Owner)) - return; - - // Exodus-Crawling-Start - if (TryComp(entity.Owner, out var standing) && !standing.Standing) - return; - // Exodus-Crawling-End - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private static float CalculateTumbleIntensity(WaddleAnimationComponent component) - { - return component.LastStep ? 360 - component.TumbleIntensity : component.TumbleIntensity; - } - - private static float CalculateAnimationLength(WaddleAnimationComponent component, InputMoverComponent mover) - { - return mover.Sprinting ? component.AnimationLength * component.RunAnimationLengthMultiplier : component.AnimationLength; - } - - private void OnAnimationCompleted(Entity entity, ref AnimationCompletedEvent args) - { - if (args.Key != entity.Comp.KeyName) - return; - - if (!TryComp(entity.Owner, out var mover)) - return; - - // Exodus-WaddlingFix-Start - if (!entity.Comp.IsCurrentlyWaddling) - return; - // Exodus-WaddlingFix-End - - PlayWaddleAnimationUsing( - (entity.Owner, entity.Comp), - CalculateAnimationLength(entity.Comp, mover), - CalculateTumbleIntensity(entity.Comp) - ); - } - - private void StopWaddling(Entity entity) - { - if (!_animation.HasRunningAnimation(entity.Owner, entity.Comp.KeyName)) - return; - - _animation.Stop(entity.Owner, entity.Comp.KeyName); - - if (!TryComp(entity.Owner, out var sprite)) - return; - - sprite.Offset = new Vector2(); - sprite.Rotation = Angle.FromDegrees(0); - } - - private void PlayWaddleAnimationUsing(Entity entity, float len, float tumbleIntensity) - { - entity.Comp.LastStep = !entity.Comp.LastStep; - - var anim = new Animation() - { - Length = TimeSpan.FromSeconds(len), - AnimationTracks = - { - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Rotation), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), 0), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(tumbleIntensity), len/2), - new AnimationTrackProperty.KeyFrame(Angle.FromDegrees(0), len/2), - } - }, - new AnimationTrackComponentProperty() - { - ComponentType = typeof(SpriteComponent), - Property = nameof(SpriteComponent.Offset), - InterpolationMode = AnimationInterpolationMode.Linear, - KeyFrames = - { - new AnimationTrackProperty.KeyFrame(new Vector2(), 0), - new AnimationTrackProperty.KeyFrame(entity.Comp.HopIntensity, len/2), - new AnimationTrackProperty.KeyFrame(new Vector2(), len/2), - } - } - } - }; - - _animation.Play(entity.Owner, anim, entity.Comp.KeyName); - } -} diff --git a/Content.Client/_Exodus/NPC/NpcFactionEui.cs b/Content.Client/_Exodus/NPC/NpcFactionEui.cs deleted file mode 100644 index efbae54229a..00000000000 --- a/Content.Client/_Exodus/NPC/NpcFactionEui.cs +++ /dev/null @@ -1,90 +0,0 @@ -using Content.Client.Eui; -using Content.Client.Exodus.NPC.UI; -using Content.Shared.Exodus.NPC; -using Content.Shared.Eui; -using Robust.Shared.Prototypes; -using Content.Shared.NPC.Prototypes; -using System.Linq; - -namespace Content.Client.Exodus.NPC; - -public sealed class NpcFactionEui : BaseEui -{ - [Dependency] private readonly IEntityManager _entities = default!; - [Dependency] private readonly IPrototypeManager _prototypes = default!; - - private NpcFactionEditWindow? _window = null; - private EntityUid? _target = null; - private HashSet>? _factions = null; - - public NpcFactionEui() - { - IoCManager.InjectDependencies(this); - _prototypes.PrototypesReloaded += OnPrototypesReloaded; - } - - public override void Opened() - { - _window = new NpcFactionEditWindow(); - _window.OnSelectFaction += (faction) => - { - if (_target is not { } target) - return; - - SendMessage(new NpcFactionAddMessage(_entities.GetNetEntity(target), faction)); - }; - _window.OnUnselectFaction += (faction) => - { - if (_target is not { } target) - return; - - SendMessage(new NpcFactionRemoveMessage(_entities.GetNetEntity(target), faction)); - }; - - _window.OpenCentered(); - } - - public override void HandleState(EuiStateBase state) - { - if (state is not NpcFactionEuiState factionState) - return; - - _target = _entities.GetEntity(factionState.Target); - _factions = factionState.Factions; - - if (_window != null && _window.IsOpen) - UpdateUI(); - } - - private void UpdateUI() - { - if (_window is not { } window) - return; - if (_target is not { } target) - return; - - SetNpcName(window, target); - RefreshFactions(window); - } - - private void SetNpcName(NpcFactionEditWindow window, EntityUid target) - { - var metadata = _entities.GetComponent(target); - window.SetNpcName(metadata.EntityName); - } - - private void RefreshFactions(NpcFactionEditWindow window) - { - if (_factions is not { } currentFactions) - return; - - var factions = _prototypes.EnumeratePrototypes().Select(proto => new ProtoId(proto.ID)).ToHashSet(); - - window.SetFactions(factions, currentFactions); - } - - private void OnPrototypesReloaded(PrototypesReloadedEventArgs args) - { - UpdateUI(); - } -} diff --git a/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml b/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml deleted file mode 100644 index 0d0f2517ec4..00000000000 --- a/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - diff --git a/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml.cs b/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml.cs deleted file mode 100644 index 8de8dcb8e47..00000000000 --- a/Content.Client/_Exodus/NPC/UI/NpcFactionEditWindow.xaml.cs +++ /dev/null @@ -1,55 +0,0 @@ -using Content.Shared.NPC.Prototypes; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Prototypes; - -namespace Content.Client.Exodus.NPC.UI; - -[GenerateTypedNameReferences] -public sealed partial class NpcFactionEditWindow : DefaultWindow -{ - public event Action>? OnSelectFaction; - public event Action>? OnUnselectFaction; - - public NpcFactionEditWindow() - { - RobustXamlLoader.Load(this); - } - - public void SetNpcName(string name) - { - NpcName.Text = Loc.GetString("npc-faction-ui-window-name-label", ("name", name)); - } - - public void SetFactions(HashSet> availableFactions, HashSet> selectedFactions) - { - FactionsList.RemoveAllChildren(); - - foreach (var faction in availableFactions) - { - var newButton = new Button - { - ClipText = true, - ToggleMode = true, - Text = faction, - HorizontalExpand = true, - Pressed = selectedFactions.Contains(faction), - }; - newButton.OnToggled += (args) => - { - if (args.Pressed) - { - OnSelectFaction?.Invoke(faction); - } - else - { - OnUnselectFaction?.Invoke(faction); - } - }; - - FactionsList.AddChild(newButton); - } - } -} diff --git a/Content.Client/_Exodus/Seal/SealSystem.cs b/Content.Client/_Exodus/Seal/SealSystem.cs deleted file mode 100644 index c0ab624a9cf..00000000000 --- a/Content.Client/_Exodus/Seal/SealSystem.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Content.Shared.Exodus.Seal; - -namespace Content.Client.Exodus.Seal; - -public sealed class SealSystem : SharedSealSystem -{ -} diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 03fbdfa8a87..b5ddc4bb198 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -37,8 +37,6 @@ using Robust.Shared.Utility; using System.Linq; using static Content.Shared.Configurable.ConfigurationComponent; -using Content.Server.Exodus.NPC; // Exodus-FactionsAdminEditor -using Content.Shared.NPC.Components; // Exodus-FactionsAdminEditor namespace Content.Server.Administration.Systems { @@ -392,22 +390,6 @@ private void AddAdminVerbs(GetVerbsEvent args) Icon = new SpriteSpecifier.Rsi(new ResPath("/Textures/Interface/Actions/actions_borg.rsi"), "state-laws"), }); } - - // Exodus-FactionsAdminEditor-Start - if (HasComp(args.Target)) - { - args.Verbs.Add(new Verb() - { - Text = Loc.GetString("npc-faction-ui-verb"), - Category = VerbCategory.Admin, - Act = () => - { - var ui = new NpcFactionEui(args.Target); - _euiManager.OpenEui(ui, player); - }, - }); - } - // Exodus-FactionsAdminEditor-End } } diff --git a/Content.Server/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index b51afe57fbf..0c78e45f86e 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -14,32 +14,6 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { private static readonly Dictionary ShorthandToEmote = new() { - // Corvax-Localization-Start - { "хд", "chatsan-laughs" }, - { "о-о", "chatsan-wide-eyed" }, // cyrillic о - { "о.о", "chatsan-wide-eyed" }, // cyrillic о - { "0_о", "chatsan-wide-eyed" }, // cyrillic о - { "о/", "chatsan-waves" }, // cyrillic о - { "о7", "chatsan-salutes" }, // cyrillic о - { "0_o", "chatsan-wide-eyed" }, - { "лмао", "chatsan-laughs" }, - { "рофл", "chatsan-laughs" }, - { "яхз", "chatsan-shrugs" }, - { ":0", "chatsan-surprised" }, - // Exodus-Fix | Remove :p replacement for comfy use of default channel shortcut - { "кек", "chatsan-laughs" }, - { "T_T", "chatsan-cries" }, - { "Т_Т", "chatsan-cries" }, // cyrillic T - { "=_(", "chatsan-cries" }, - { "!с", "chatsan-laughs" }, - { "!в", "chatsan-sighs" }, - { "!х", "chatsan-claps" }, - { "!щ", "chatsan-snaps" }, - { "))", "chatsan-smiles-widely" }, - { ")", "chatsan-smiles" }, - { "((", "chatsan-frowns-deeply" }, - { "(", "chatsan-frowns" }, - // Corvax-Localization-End { ":)", "chatsan-smiles" }, { ":]", "chatsan-smiles" }, { "=)", "chatsan-smiles" }, diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index 4c4822ba736..7b43e7f0926 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -13,8 +13,6 @@ using Content.Shared.Mobs.Components; using Content.Shared.Stacks; using Content.Shared.Nutrition.EntitySystems; -using Content.Shared.Whitelist; // Exodus-ThickSyringes -using Content.Shared.EntityEffects; // Exodus-ThickSyringes namespace Content.Server.Chemistry.EntitySystems; @@ -23,7 +21,6 @@ public sealed class InjectorSystem : SharedInjectorSystem [Dependency] private readonly BloodstreamSystem _blood = default!; [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; [Dependency] private readonly OpenableSystem _openable = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; // Exodus-ThickSyringes public override void Initialize() { @@ -31,7 +28,6 @@ public override void Initialize() SubscribeLocalEvent(OnInjectDoAfter); SubscribeLocalEvent(OnInjectorAfterInteract); - SubscribeLocalEvent(OnInjectorUsed); // Exodus-ThickSyringes } private bool TryUseInjector(Entity injector, EntityUid target, EntityUid user) @@ -79,38 +75,9 @@ private void OnInjectDoAfter(Entity entity, ref InjectorDoAft if (args.Cancelled || args.Handled || args.Args.Target == null) return; - // Exodus-ThickSyringes-Start - if (TryComp(args.Args.Target.Value, out var injectable)) - { - if (_whitelist.IsWhitelistFail(injectable.Whitelist, entity)) - { - Popup.PopupEntity( - Loc.GetString("injector-component-target-injectable-whitelist-failed-message", - ("target", Identity.Entity(args.Args.Target.Value, EntityManager))), - args.Args.Target.Value, args.Args.User - ); - return; - } - } - // Exodus-ThickSyringes-End - args.Handled = TryUseInjector(entity, args.Args.Target.Value, args.Args.User); } - // Exodus-ThickSyringes-Start - private void OnInjectorUsed(EntityUid uid, InjectorComponent injector, InjectorUsedEvent args) - { - Log.Info("OnInjectorUsed called!"); - foreach (var effect in injector.EffectsAfterInjection) - { - if (!effect.ShouldApply(new(args.Target, EntityManager))) - continue; - - effect.Effect(new(args.Target, EntityManager)); - } - } - // Exodus-ThickSyringes-End - private void OnInjectorAfterInteract(Entity entity, ref AfterInteractEvent args) { if (args.Handled || !args.CanReach) @@ -233,7 +200,7 @@ private void InjectDoAfter(Entity injector, EntityUid target, } } - var doAfterStarted = DoAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, actualDelay, new InjectorDoAfterEvent(), injector.Owner, target: target, used: injector.Owner) // Exodus-ThickSyringes + DoAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, actualDelay, new InjectorDoAfterEvent(), injector.Owner, target: target, used: injector.Owner) { BreakOnMove = true, BreakOnWeightlessMove = false, @@ -242,18 +209,6 @@ private void InjectDoAfter(Entity injector, EntityUid target, BreakOnHandChange = injector.Comp.BreakOnHandChange, MovementThreshold = injector.Comp.MovementThreshold, }); - // Exodus-ThickSyringes-Start - if (doAfterStarted) - { - foreach (var effect in injector.Comp.EffectsOnInjectionStart) - { - if (!effect.ShouldApply(new(target, EntityManager))) - continue; - - effect.Effect(new(target, EntityManager)); - } - } - // Exodus-ThickSyringes-End } private bool TryInjectIntoBloodstream(Entity injector, Entity target, @@ -349,15 +304,6 @@ private void AfterInject(Entity injector, EntityUid target) // Leave some DNA from the injectee on it var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; RaiseLocalEvent(target, ref ev); - - // Exodus-ThickSyringes-Start - var usedEv = new InjectorUsedEvent() - { - Injector = injector, - Target = target, - }; - RaiseLocalEvent(injector, usedEv); - // Exodus-ThickSyringes-End } private void AfterDraw(Entity injector, EntityUid target) @@ -372,15 +318,6 @@ private void AfterDraw(Entity injector, EntityUid target) // Leave some DNA from the drawee on it var ev = new TransferDnaEvent { Donor = target, Recipient = injector }; RaiseLocalEvent(target, ref ev); - - // Exodus-ThickSyringes-Start - var usedEv = new InjectorUsedEvent() - { - Injector = injector, - Target = target, - }; - RaiseLocalEvent(injector, usedEv); - // Exodus-ThickSyringes-End } private bool TryDraw(Entity injector, Entity target, diff --git a/Content.Server/Explosion/Components/ShockOnTriggerComponent.cs b/Content.Server/Explosion/Components/ShockOnTriggerComponent.cs index 15132db9453..a553cc047ac 100644 --- a/Content.Server/Explosion/Components/ShockOnTriggerComponent.cs +++ b/Content.Server/Explosion/Components/ShockOnTriggerComponent.cs @@ -34,9 +34,4 @@ public sealed partial class ShockOnTriggerComponent : Component [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] [AutoPausedField] public TimeSpan NextTrigger = TimeSpan.Zero; - - // Exodus-ShockCollar-Start - [DataField] - public bool IgnoreInsulation = false; - // Exodus-ShockCollar-End } diff --git a/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs b/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs index 13bd3c3221c..bb27ae8868f 100644 --- a/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs +++ b/Content.Server/NPC/HTN/Preconditions/TargetInLOSPrecondition.cs @@ -1,4 +1,4 @@ -using Content.Server.NPC.Systems; // Exodus-TurretsImprovement-Start +using Content.Server.Interaction; using Content.Shared.Physics; namespace Content.Server.NPC.HTN.Preconditions; @@ -6,7 +6,7 @@ namespace Content.Server.NPC.HTN.Preconditions; public sealed partial class TargetInLOSPrecondition : HTNPrecondition { [Dependency] private readonly IEntityManager _entManager = default!; - private NPCCombatSystem _npcCombat = default!; // Exodus-TurretsImprovement-Start + private InteractionSystem _interaction = default!; [DataField("targetKey")] public string TargetKey = "Target"; @@ -20,7 +20,7 @@ public sealed partial class TargetInLOSPrecondition : HTNPrecondition public override void Initialize(IEntitySystemManager sysManager) { base.Initialize(sysManager); - _npcCombat = sysManager.GetEntitySystem(); // Exodus-TurretsImprovement-Start + _interaction = sysManager.GetEntitySystem(); } public override bool IsMet(NPCBlackboard blackboard) @@ -33,6 +33,6 @@ public override bool IsMet(NPCBlackboard blackboard) var range = blackboard.GetValueOrDefault(RangeKey, _entManager); var collisionGroup = UseOpaqueForLOSChecksKey ? CollisionGroup.Opaque : (CollisionGroup.Impassable | CollisionGroup.InteractImpassable); - return _npcCombat.IsEnemyInLOS(owner, target, range, collisionGroup); // Exodus-TurretsImprovement-Start + return _interaction.InRangeUnobstructed(owner, target, range, collisionGroup); } } diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs index 5455bf9f872..f4e312fbd4e 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs @@ -1,8 +1,7 @@ using Content.Server.NPC.Components; using Content.Shared.CombatMode; using Content.Shared.Interaction; -using Content.Shared.NPC.Systems; // Exodus-TurretsImprovement -using Content.Shared.Physics; // Exodus-TurretsImprovement +using Content.Shared.Physics; using Content.Shared.Weapons.Ranged.Components; using Content.Shared.Weapons.Ranged.Events; using Robust.Shared.Map; @@ -14,7 +13,6 @@ public sealed partial class NPCCombatSystem { [Dependency] private readonly SharedCombatModeSystem _combat = default!; [Dependency] private readonly RotateToFaceSystem _rotate = default!; - [Dependency] private readonly NpcFactionSystem _faction = default!; // Exodus-TurretsImprovement private EntityQuery _combatQuery; private EntityQuery _steeringQuery; @@ -138,7 +136,7 @@ private void UpdateRanged(float frameTime) // For consistency with NPC steering. var collisionGroup = comp.UseOpaqueForLOSChecks ? CollisionGroup.Opaque : (CollisionGroup.Impassable | CollisionGroup.InteractImpassable); - comp.TargetInLOS = IsEnemyInLOS(uid, comp.Target, distance + 0.1f, collisionGroup); // Exodus-TurretsImprovement + comp.TargetInLOS = _interaction.InRangeUnobstructed(uid, comp.Target, distance + 0.1f, collisionGroup); } if (!comp.TargetInLOS) @@ -193,7 +191,7 @@ private void UpdateRanged(float frameTime) if (_mapManager.TryFindGridAt(xform.MapID, targetPos, out var gridUid, out var mapGrid)) { - targetCordinates = new EntityCoordinates(gridUid, _map.WorldToLocal(gridUid, mapGrid, targetSpot)); + targetCordinates = new EntityCoordinates(gridUid, mapGrid.WorldToLocal(targetSpot)); } else { @@ -207,17 +205,7 @@ private void UpdateRanged(float frameTime) return; } - _gun.AttemptShoot(uid, gunUid, gun, targetCordinates, /* Exodus-NPCsAbilityToTargetEnemy-Start */ comp.Target /* Exodus-NPCsAbilityToTargetEnemy-End */); + _gun.AttemptShoot(uid, gunUid, gun, targetCordinates); } } - - // Exodus-TurretsImprovement-Start - public bool IsEnemyInLOS(EntityUid uid, EntityUid target, float range, CollisionGroup collisionGroup) - { - return - _interaction.InRangeUnobstructed(uid, target, range) && - _interaction.InRangeUnobstructed(uid, target, range, collisionGroup, - (ent) => !_faction.IsEntityFriendly(uid, ent)); - } - // Exodus-TurretsImprovement-End } diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index d61d4d33997..496cb387e82 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -95,52 +95,8 @@ public override void Initialize() Subs.CVar(_configManager, CVars.NetMaxUpdateRange, SetLoadRange, true); InitializeCommands(); SubscribeLocalEvent(ProtoReload); - SubscribeLocalEvent(OnEntityRemove); // Exodus-MapSavingFix } - // Exodus-MapSavingFix-Start - private void OnEntityRemove(EntityUid uid, TransformComponent transform, ref EntityTerminatingEvent ev) - { - // this is needed for clearing entities from BiomeComponent.LoadedEntities when they're getting deleted or else the biome cannot be saved - // this is happens due to transforming of EntityUid to the zero (or invalid entityuid in other words) which creates key duplicates in dictionary - // cuz of that serializer crashes - - // is entity on biome - if (!_biomeQuery.TryGetComponent(transform.MapUid, out var biome)) - return; - - // is map initialized, if it is - we have nothing to do here - if (TryComp(transform.MapUid, out var map) && map.MapInitialized) - { - return; - } - - // get chunk coordinates - var cords = _transform.GetWorldPosition(transform); - var vector = new Vector2i((int)Math.Floor(cords.X / ChunkSize) * ChunkSize, (int)Math.Floor(cords.Y / ChunkSize) * ChunkSize); - - // get chunk containing deleted entity - biome.LoadedEntities.TryGetValue(vector, out var entities); - DebugTools.Assert(entities is not null, $"Cannot get chunk for entity {ev.Entity}"); - // the actual fix - entities.Remove(ev.Entity); - - // needed to prevent maps from regenerating - // when chunk is getting unloaded and then loaded again - deleted entities will be generated again - // did it manually cuz using of ReserveTiles is a high overhead to edit only one tile - var modifiedTileCords = cords.Floored(); - if (biome.ModifiedTiles.TryGetValue(vector, out var modifiedTilesChunk)) - { - if (!modifiedTilesChunk.TryGetValue(modifiedTileCords, out _)) - modifiedTilesChunk.Add(modifiedTileCords); - } - else - { - biome.ModifiedTiles.Add(vector, new() { modifiedTileCords }); - } - } - // Exodus-MapSavingFix-End - private void ProtoReload(PrototypesReloadedEventArgs obj) { if (!obj.ByType.TryGetValue(typeof(BiomeTemplatePrototype), out var reloads)) diff --git a/Content.Server/_Exodus/EntityEffects/PassiveEffectsComponent.cs b/Content.Server/_Exodus/EntityEffects/PassiveEffectsComponent.cs deleted file mode 100644 index 20df8c80e02..00000000000 --- a/Content.Server/_Exodus/EntityEffects/PassiveEffectsComponent.cs +++ /dev/null @@ -1,17 +0,0 @@ -using Content.Shared.EntityEffects; -using Content.Shared.FixedPoint; - -namespace Content.Server.Exodus.EntityEffects; - -[RegisterComponent] -public sealed partial class PassiveEffectsComponent : Component -{ - [DataField] - public FixedPoint2 Accumulator = 0; - - [DataField] - public FixedPoint2 Rate = 1.0f; - - [DataField] - public EntityEffect[] Effects = []; -} diff --git a/Content.Server/_Exodus/EntityEffects/PassiveEffectsSystem.cs b/Content.Server/_Exodus/EntityEffects/PassiveEffectsSystem.cs deleted file mode 100644 index 10120a35bb3..00000000000 --- a/Content.Server/_Exodus/EntityEffects/PassiveEffectsSystem.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Content.Shared.EntityEffects; - -namespace Content.Server.Exodus.EntityEffects; - -public sealed partial class PassiveEffectsSystem : EntitySystem -{ - public override void Update(float frameTime) - { - var query = EntityQueryEnumerator(); - - while (query.MoveNext(out var uid, out var comp)) - { - comp.Accumulator += frameTime; - - if (comp.Accumulator < comp.Rate) - continue; - - comp.Accumulator = 0; - - foreach (var effect in comp.Effects) - { - if (effect.ShouldApply(new(uid, EntityManager))) - effect.Effect(new(uid, EntityManager)); - } - } - } -} diff --git a/Content.Server/_Exodus/Geras/GerasComponent.cs b/Content.Server/_Exodus/Geras/GerasComponent.cs deleted file mode 100644 index ea31ef97d05..00000000000 --- a/Content.Server/_Exodus/Geras/GerasComponent.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Content.Shared.Actions; -using Content.Shared.Polymorph; -using Robust.Shared.Prototypes; - -namespace Content.Server.Exodus.Geras; - -/// -/// This component assigns the entity with a polymorph action. -/// -[RegisterComponent] -public sealed partial class GerasComponent : Component -{ - [DataField] public ProtoId GerasPolymorphId = "SlimeMorphGeras"; - - [DataField] public EntProtoId GerasAction = "ActionMorphGeras"; - - [DataField] public EntityUid? GerasActionEntity; -} diff --git a/Content.Server/_Exodus/Geras/GerasSystem.cs b/Content.Server/_Exodus/Geras/GerasSystem.cs deleted file mode 100644 index 553d1a5ee24..00000000000 --- a/Content.Server/_Exodus/Geras/GerasSystem.cs +++ /dev/null @@ -1,66 +0,0 @@ -using Content.Server.Polymorph.Systems; -using Content.Shared.Zombies; -using Content.Server.Actions; -using Content.Server.Popups; -using Content.Shared.Exodus.Geras; -using Content.Shared.SS220.TTS; //RPSX | CloneVoiceFix -using Content.Shared.Cloning; -using Robust.Shared.Player; - -namespace Content.Server.Exodus.Geras; - -/// -public sealed class GerasSystem : SharedGerasSystem -{ - [Dependency] private readonly PolymorphSystem _polymorphSystem = default!; - [Dependency] private readonly ActionsSystem _actionsSystem = default!; - [Dependency] private readonly PopupSystem _popupSystem = default!; - [Dependency] private readonly EntityManager _entityManager = default!; // RPSX edit | GerasCloningBreakingfix - - - /// - public override void Initialize() - { - SubscribeLocalEvent(OnMorphIntoGeras); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnZombification); - } - - private void OnZombification(EntityUid uid, GerasComponent component, EntityZombifiedEvent args) - { - _actionsSystem.RemoveAction(uid, component.GerasActionEntity); - } - - private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent args) - { - // try to add geras action - _actionsSystem.AddAction(uid, ref component.GerasActionEntity, component.GerasAction); - } - - private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphIntoGeras args) - { - if (HasComp(uid)) - return; // i hate zomber. - - if (_entityManager.HasComponent(Transform(uid).ParentUid)) // RPSX edit | GerasCloningBreakingfix - return; - - var ent = _polymorphSystem.PolymorphEntity(uid, component.GerasPolymorphId); - - if (!ent.HasValue) - return; - - //RPSX start | CloneVoiceFix - if (EntityManager.TryGetComponent(uid, out var originalTTS) && - EntityManager.TryGetComponent(ent.Value, out var gerasTTS)) - { - gerasTTS.VoicePrototypeId = originalTTS.VoicePrototypeId; - } - //RPSX end | CloneVoiceFix - - _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-others", ("entity", ent.Value)), ent.Value, Filter.PvsExcept(ent.Value), true); - _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-user"), ent.Value, ent.Value); - - args.Handled = true; - } -} diff --git a/Content.Server/_Exodus/Implants/InjectImplantSystem.cs b/Content.Server/_Exodus/Implants/InjectImplantSystem.cs deleted file mode 100644 index e2352555c3a..00000000000 --- a/Content.Server/_Exodus/Implants/InjectImplantSystem.cs +++ /dev/null @@ -1,111 +0,0 @@ -using Content.Server.Administration.Logs; -using Content.Server.Chemistry.Containers.EntitySystems; -using Content.Shared.Chemistry.Components; -using Content.Shared.Database; -using Content.Shared.Implants.Components; -using Content.Shared.FixedPoint; -using Robust.Shared.Audio.Systems; -using Content.Shared.Chemistry; -using Content.Shared.IdentityManagement; -using Content.Server.Explosion.EntitySystems; -using Content.Shared.Chemistry.EntitySystems; -using Content.Shared.Popups; - - -namespace Content.Server.Exodus.Implants -{ - public sealed partial class InjectImplantSystem : EntitySystem - { - [Dependency] private readonly IAdminLogManager _adminLogger = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; - [Dependency] private readonly IEntityManager _entMan = default!; - [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; - [Dependency] private readonly SharedPopupSystem _popup = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInjectOnTrigger); - } - - public bool InjectSolution(EntityUid user, Entity implantEnt, string solutionName, float transferAmount) - { - var (implant, injectComp) = implantEnt; - - // Try get initial solution - if (!_solutionContainer.TryGetSolution(implant, solutionName, out var initialSoln, out var initialSolution)) - { - Log.Error($"Couldnt find solution named {solutionName} in entity {user}"); - return false; - } - - // Try get insert solution - if (!_solutionContainer.TryGetInjectableSolution(user, out var targetSoln, out var targetSolution)) - { - _popup.PopupEntity(Loc.GetString("inject-trigger-cant-inject-message", ("target", Identity.Entity(user, _entMan))), user, user); - return false; - } - - var realtransferAmount = FixedPoint2.Min(initialSolution.Volume, targetSolution.AvailableVolume, transferAmount); - if (realtransferAmount <= 0) - { - _popup.PopupEntity(Loc.GetString("inject-trigger-empty-capsule-message"), user, user); - return false; - } - - // Move units from init solution to target solution - var removedSolution = _solutionContainer.SplitSolution(initialSoln.Value, realtransferAmount); - if (!targetSolution.CanAddSolution(removedSolution)) - { - _popup.PopupEntity(Loc.GetString("inject-trigger-cant-inject-message", ("target", Identity.Entity(user, _entMan))), user, user); - return false; - } - - _audio.PlayPvs(injectComp.InjectSound, user); - - _reactiveSystem.DoEntityReaction(user, removedSolution, ReactionMethod.Injection); - _solutionContainer.TryAddSolution(targetSoln.Value, removedSolution); - - _popup.PopupEntity(Loc.GetString("inject-trigger-feel-prick-message"), user, user); - _adminLogger.Add(LogType.ForceFeed, $"{_entMan.ToPrettyString(user):user} used inject implant with a solution {SolutionContainerSystem.ToPrettyString(removedSolution):removedSolution}"); - - return true; - } - - private void OnInjectOnTrigger(EntityUid uid, InjectOnTriggerComponent component, TriggerEvent args) - { - // Get user uid - if (!TryComp(uid, out var implantComp) || - implantComp.ImplantedEntity == null) - return; - var user = implantComp.ImplantedEntity.Value; - - var solution = GetSolutionToInject(component.InjectSolutions); - - if (solution is null) - { - _popup.PopupEntity(Loc.GetString("inject-trigger-empty-message"), user, user); - return; - } - - InjectSolution(user, (uid, component), solution.Name, solution.TransferAmount); - solution.UsedCount += 1; - args.Handled = true; - } - - private InjectSolutionData? GetSolutionToInject(List solutions) - { - foreach (var data in solutions) - { - if (data.UsedCount >= data.Charges) - continue; - - return data; - } - - return null; - } - } -} diff --git a/Content.Server/_Exodus/Implants/InjectOnTriggerComponent.cs b/Content.Server/_Exodus/Implants/InjectOnTriggerComponent.cs deleted file mode 100644 index e48b9bed77c..00000000000 --- a/Content.Server/_Exodus/Implants/InjectOnTriggerComponent.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Robust.Shared.Audio; - -namespace Content.Server.Exodus.Implants; - -[RegisterComponent] -public sealed partial class InjectOnTriggerComponent : Component -{ - [DataField("solutions")] - public List InjectSolutions = []; - - [DataField] - public SoundSpecifier InjectSound = new SoundPathSpecifier("/Audio/Items/hypospray.ogg"); -} - -[Serializable] -[DataRecord] -public sealed partial class InjectSolutionData() -{ - public string Name = ""; - public int Charges = 1; - public float TransferAmount = 10.0f; - public int UsedCount = 0; - -} diff --git a/Content.Server/_Exodus/Movement/Systems/WaddleAnimationSystem.cs b/Content.Server/_Exodus/Movement/Systems/WaddleAnimationSystem.cs deleted file mode 100644 index 2ec7ad962fd..00000000000 --- a/Content.Server/_Exodus/Movement/Systems/WaddleAnimationSystem.cs +++ /dev/null @@ -1,6 +0,0 @@ -// Based on https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Server/Movement/Systems/WaddleAnimationSystem.cs -using Content.Shared.Exodus.Movement.Systems; - -namespace Content.Server.Movement.Systems; - -public sealed class WaddleAnimationSystem : SharedWaddleAnimationSystem; diff --git a/Content.Server/_Exodus/NPC/NpcFactionEui.cs b/Content.Server/_Exodus/NPC/NpcFactionEui.cs deleted file mode 100644 index 769048a0dcb..00000000000 --- a/Content.Server/_Exodus/NPC/NpcFactionEui.cs +++ /dev/null @@ -1,95 +0,0 @@ -using Content.Server.Administration.Managers; -using Content.Server.EUI; -using Content.Shared.Administration; -using Content.Shared.Eui; -using Content.Shared.Exodus.NPC; -using Content.Shared.NPC.Components; -using Content.Shared.NPC.Systems; - -namespace Content.Server.Exodus.NPC; - -public sealed class NpcFactionEui : BaseEui -{ - [Dependency] private readonly IEntitySystemManager _entitySystemManager = default!; - [Dependency] private readonly EntityManager _entityManager = default!; - [Dependency] private readonly IAdminManager _adminManager = default!; - - private readonly NpcFactionSystem _factionSystem; - - private ISawmill _sawmill = default!; - private EntityUid _target; - - public NpcFactionEui(EntityUid target) - { - IoCManager.InjectDependencies(this); - - _target = target; - _factionSystem = _entitySystemManager.GetEntitySystem(); - _sawmill = Logger.GetSawmill("npc-faction-eui"); - } - - public override EuiStateBase GetNewState() - { - _entityManager.TryGetComponent(_target, out var factions); - return new NpcFactionEuiState(_entityManager.GetNetEntity(_target), factions?.Factions ?? []); - } - - public override void Opened() - { - base.Opened(); - - StateDirty(); - } - - public override void HandleMessage(EuiMessageBase msg) - { - if (!IsAllowed()) - return; - - switch (msg) - { - case NpcFactionAddMessage message: - _target = _entityManager.GetEntity(message.Target); - - if (_factionSystem.IsMember(_target, message.Faction)) - { - StateDirty(); - return; - } - - _factionSystem.AddFaction(_target, message.Faction); - break; - case NpcFactionRemoveMessage message: - _target = _entityManager.GetEntity(message.Target); - - if (!_factionSystem.IsMember(_target, message.Faction)) - { - StateDirty(); - return; - } - - _factionSystem.RemoveFaction(_target, message.Faction); - break; - case NpcFactionCreateComponentMessage message: - _target = _entityManager.GetEntity(message.Target); - _entityManager.EnsureComponent(_target); - break; - default: - return; - } - - StateDirty(); - } - - private bool IsAllowed() - { - var adminData = _adminManager.GetAdminData(Player); - if (adminData == null || !adminData.HasFlag(AdminFlags.Moderator)) - { - _sawmill.Warning("Player {0} tried to open / use NPC faction UI without permission.", Player.UserId); - return false; - } - - return true; - } -} diff --git a/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordComponent.cs b/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordComponent.cs deleted file mode 100644 index ed5eafe1fcc..00000000000 --- a/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordComponent.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Content.Server.Exodus.Nuke.NukeCodeRecord; - -[RegisterComponent] -public sealed partial class NukeCodeRecordComponent : Component -{ - [DataField] - public string? NukeName; - - [DataField] - public string? NukeCodes; -} diff --git a/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordSystem.cs b/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordSystem.cs deleted file mode 100644 index 1c67aaf7e7c..00000000000 --- a/Content.Server/_Exodus/NukeCodeRecord/NukeCodeRecordSystem.cs +++ /dev/null @@ -1,73 +0,0 @@ -using Content.Server.Nuke; -using Content.Server.Station.Systems; -using Content.Shared.Examine; -using Robust.Shared.Random; -using Robust.Shared.Utility; -using System.Diagnostics.CodeAnalysis; - -namespace Content.Server.Exodus.Nuke.NukeCodeRecord; - -public sealed class NukeCodeRecordSystem : EntitySystem -{ - [Dependency] private readonly IRobustRandom _random = default!; - [Dependency] private readonly StationSystem _station = default!; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnInit); - SubscribeLocalEvent(OnExamine); - } - - private void OnInit(EntityUid uid, NukeCodeRecordComponent component, ComponentInit args) - { - TrySetRelativeNukeCode(uid, component); - } - - private void OnExamine(EntityUid uid, NukeCodeRecordComponent component, ExaminedEvent args) - { - if (component.NukeName != null && component.NukeCodes != null) - args.PushMarkup(Loc.GetString("nuke-codes-record-examine-filled", ("nukeName", component.NukeName), ("nukeCode", component.NukeCodes))); - else - args.PushText(Loc.GetString("nuke-codes-record-examine-empty")); - } - - private bool TrySetRelativeNukeCode( - EntityUid uid, - NukeCodeRecordComponent component, - EntityUid? station = null, - TransformComponent? transform = null) - { - if (!Resolve(uid, ref transform)) - { - return false; - } - - bool nukeFound = false; - var owningStation = station ?? _station.GetOwningStation(uid); - var nukes = new List>(); - var query = EntityQueryEnumerator(); - - while (query.MoveNext(out var nukeUid, out var nuke)) - { - nukes.Add((nukeUid, nuke)); - } - - _random.Shuffle(nukes); - - foreach (var (nukeUid, nuke) in nukes) - { - if (nuke.OriginStation != owningStation) - { - continue; - } - - nukeFound = true; - component.NukeName = MetaData(nukeUid).EntityName; - component.NukeCodes = nuke.Code; - break; - } - - return nukeFound; - } -} diff --git a/Content.Server/_Exodus/Seal/SealSystem.cs b/Content.Server/_Exodus/Seal/SealSystem.cs deleted file mode 100644 index fa5d3d55d0a..00000000000 --- a/Content.Server/_Exodus/Seal/SealSystem.cs +++ /dev/null @@ -1,156 +0,0 @@ -using Content.Server.Chat.Systems; -using Content.Server.Popups; -using Content.Shared.DoAfter; -using Content.Shared.Exodus.Seal; -using Content.Shared.Hands.Components; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Verbs; -using Robust.Shared.Utility; - -namespace Content.Server.Exodus.Seal; - -public sealed class SealSystem : SharedSealSystem -{ - [Dependency] private readonly ChatSystem _chatSystem = default!; - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnStartup); - SubscribeLocalEvent(OnActivated); - SubscribeLocalEvent(OnDoAfter); - SubscribeLocalEvent>(AddUnsealVerb); - } - - private void OnStartup(EntityUid uid, SealComponent component, ComponentStartup args) - { - AppearanceSystem.SetData(uid, SealVisual.Sealed, true); - } - public void OnActivated(EntityUid uid, SealComponent component, ActivateInWorldEvent args) - { - if (args.Handled) - return; - - if (component.Sealed) - { - TryUnseal(uid, args.User, component); - args.Handled = true; - } - } - - public bool CanStartUnseal(EntityUid uid, EntityUid user, bool quiet = true) - { - if (!HasComp(user)) - return false; - - var ev = new UnsealAttemptEvent(user, quiet); - RaiseLocalEvent(uid, ref ev, true); - return !ev.Cancelled; - } - - public bool CanUnsealByAccess(EntityUid uid, EntityUid user, SealComponent component, bool quiet = true) - { - switch (component.SealType) - { - case SealLockType.None: - return true; - - case SealLockType.AccessSeal: - return CheckAccess(uid, user, quiet: false); - - case SealLockType.IDNameSeal: - return CheckIdentity(uid, user, component, quiet: false); - - case SealLockType.AccessNameSeal: - return (CheckAccess(uid, user, quiet: false) && CheckIdentity(uid, user, component, quiet: false)); - - default: - return false; - } - } - - public bool TryUnseal(EntityUid uid, EntityUid user, SealComponent? component = null, bool skipDoAfter = false) - { - if (!Resolve(uid, ref component)) - return false; - - if (!CanStartUnseal(uid, user, quiet: false)) - return false; - - if (!CanUnsealByAccess(uid, user, component, quiet: false)) - return false; - - if (!skipDoAfter && component.UnsealTime != TimeSpan.Zero) - { - return DoAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, user, component.UnsealTime, new UnsealDoAfter(), uid, uid) - { - BreakOnDamage = true, BreakOnMove = true, RequireCanInteract = true, - NeedHand = true - }); - } - - Unseal(uid, user, component); - return true; - - } - - public void OnDoAfter(EntityUid uid, SealComponent component, UnsealDoAfter args) - { - if (args.Cancelled) - return; - - TryUnseal(uid, args.User, component, true); - } - - public void Unseal(EntityUid uid, EntityUid? user, SealComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - if (user is not null) - { - PopupSystem.PopupEntity(Loc.GetString("seal-comp-do-unseal-success", ("entityName", Identity.Name(uid, EntityManager))), uid, user.Value); - AudioSystem.PlayPredicted(component.UnsealingSound, uid, user.Value); - } - - component.Sealed = false; - AppearanceSystem.SetData(uid, SealVisual.Sealed, false); - Dirty(uid, component); - - if (component.WillAnnounce) - MakeAnnouncement(uid, component); - - var ev = new UnsealedEvent(); - RaiseLocalEvent(uid, ref ev, true); - - if (component.SpawnOnUnseal != null) - SpawnNextToOrDrop(component.SpawnOnUnseal, uid); - - if (component.RemoveOnUnseal) - RemComp(uid, component); - } - - private void AddUnsealVerb(EntityUid uid, SealComponent component, GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - if (!component.Sealed) - return; - - AlternativeVerb verb = new() - { - Act = () => TryUnseal(uid, args.User, component), - Text = Loc.GetString("unseal-verb"), - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/unlock.svg.192dpi.png")), - }; - args.Verbs.Add(verb); - } - - public void MakeAnnouncement(EntityUid uid, SealComponent component) - { - if (component.AnnounceText.HasValue && component.AnnounceTitle.HasValue) - _chatSystem.DispatchStationAnnouncement(uid, Loc.GetString(component.AnnounceText), Loc.GetString(component.AnnounceTitle), colorOverride: Color.Red); - } -} diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index 2ceeddacb16..ebd6654d9f5 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -1,7 +1,6 @@ using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reagent; using Content.Shared.DoAfter; -using Content.Shared.EntityEffects; // Exodus-ThickSyringes using Content.Shared.FixedPoint; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -14,14 +13,6 @@ public sealed partial class InjectorDoAfterEvent : SimpleDoAfterEvent { } -// Exodus-ThickSyringes-Start -public sealed partial class InjectorUsedEvent : EntityEventArgs -{ - public EntityUid Target; - public EntityUid Injector; -} -// Exodus-ThickSyringes-End - /// /// Implements draw/inject behavior for droppers and syringes. /// @@ -131,20 +122,6 @@ public sealed partial class InjectorComponent : Component public float MovementThreshold = 0.1f; #endregion - - // Exodus-ThickSyringe-Start - /// - /// Which effects is applied to target after injection - /// - [DataField(serverOnly: true)] - public EntityEffect[] EffectsAfterInjection = []; - - /// - /// Which effects is applied to target when injection do after starts - /// - [DataField(serverOnly: true)] - public EntityEffect[] EffectsOnInjectionStart = []; - // Exodus-ThickSyringe-End } /// diff --git a/Content.Shared/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs b/Content.Shared/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs index 1ef26474f37..97266764dcc 100644 --- a/Content.Shared/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionManager/InjectableSolutionComponent.cs @@ -1,6 +1,4 @@ -using Content.Shared.Whitelist; // Exodus-ThickSyringes - -namespace Content.Shared.Chemistry.Components.SolutionManager; +namespace Content.Shared.Chemistry.Components.SolutionManager; /// /// Denotes a solution which can be added with syringes. @@ -14,13 +12,4 @@ public sealed partial class InjectableSolutionComponent : Component /// [DataField, ViewVariables(VVAccess.ReadWrite)] public string Solution = "default"; - - // Exodus-ThickSyringes-Start - /// - /// When not null this entity could be injected only by specified entities. - /// It only works when injection performs an entity through interactions. - /// - [DataField] - public EntityWhitelist? Whitelist = null; - // Exodus-ThickSyringes-End } diff --git a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs index e1fb6019690..34bc44f1cb0 100644 --- a/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/HypospraySystem.cs @@ -16,7 +16,6 @@ using Content.Shared.Verbs; using Content.Shared.Weapons.Melee.Events; using Robust.Shared.Audio.Systems; -using Content.Shared.Whitelist; // RPS-Exodus-ThickSyringes namespace Content.Shared.Chemistry.EntitySystems; @@ -28,7 +27,6 @@ public sealed class HypospraySystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly SharedSolutionContainerSystem _solutionContainers = default!; [Dependency] private readonly UseDelaySystem _useDelay = default!; - [Dependency] private readonly EntityWhitelistSystem _whitelist = default!; // RPS-Exodus-ThickSyringes public override void Initialize() { @@ -140,28 +138,12 @@ public bool TryDoInject(Entity entity, EntityUid target, Ent return true; } - // RPS-Exodus-ThickSyringes-Start - if (!TryComp(target, out var injectable)) - { - _popup.PopupEntity(Loc.GetString("hypospray-cant-inject", ("target", Identity.Entity(target, EntityManager))), target, user); - return false; - } - // RPS-Exodus-ThickSyringes-End - if (!_solutionContainers.TryGetInjectableSolution(target, out var targetSoln, out var targetSolution)) { _popup.PopupClient(Loc.GetString("hypospray-cant-inject", ("target", Identity.Entity(target, EntityManager))), target, user); return false; } - // RPS-Exodus-ThickSyringes-Start - if (_whitelist.IsWhitelistFail(injectable.Whitelist, entity.Owner)) - { - _popup.PopupEntity(Loc.GetString("hypospray-cant-inject", ("target", Identity.Entity(target, EntityManager))), target, user); - return false; - } - // RPS-Exodus-ThickSyringes-End - _popup.PopupClient(Loc.GetString(msgFormat ?? "hypospray-component-inject-other-message", ("other", target)), target, user); if (target != user) diff --git a/Content.Shared/Nutrition/EntitySystems/FoodSystem.cs b/Content.Shared/Nutrition/EntitySystems/FoodSystem.cs index 9cfa6eb26ef..ee2c9f3a4a9 100644 --- a/Content.Shared/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/FoodSystem.cs @@ -27,12 +27,6 @@ using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Utility; -// RPS-Exodus-EatTheMice-Start -using Content.Shared.Damage; -using Content.Shared.Damage.Prototypes; -using Robust.Shared.Prototypes; -using Content.Shared.Mobs.Components; -// RPS-Exodus-EatTheMice-End namespace Content.Shared.Nutrition.EntitySystems; @@ -59,11 +53,6 @@ public sealed class FoodSystem : EntitySystem [Dependency] private readonly StomachSystem _stomach = default!; [Dependency] private readonly UtensilSystem _utensil = default!; [Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!; - // RPS-Exodus-EatTheMice-Start - [Dependency] private readonly DamageableSystem _damageable = default!; - [Dependency] private readonly MobThresholdSystem _mobThreshold = default!; - [Dependency] private readonly IPrototypeManager _prototypeManager = default!; - // RPS-Exodus-EatTheMice-End public const float MaxFeedDistance = 1.0f; @@ -245,7 +234,7 @@ private void OnDoAfter(Entity entity, ref ConsumeDoAfterEvent arg var forceFeed = args.User != args.Target; args.Handled = true; - var transferAmount = entity.Comp.TransferAmount != null ? FixedPoint2.Min((FixedPoint2)entity.Comp.TransferAmount, solution.Volume) : solution.Volume; + var transferAmount = entity.Comp.TransferAmount != null ? FixedPoint2.Min((FixedPoint2) entity.Comp.TransferAmount, solution.Volume) : solution.Volume; var split = _solutionContainer.SplitSolution(soln.Value, transferAmount); @@ -279,14 +268,6 @@ private void OnDoAfter(Entity entity, ref ConsumeDoAfterEvent arg _reaction.DoEntityReaction(args.Target.Value, solution, ReactionMethod.Ingestion); _stomach.TryTransferSolution(stomachToUse!.Value.Owner, split, stomachToUse); - // RPS-Exodus-EatTheMice-Start - if (TryComp(entity, out var mobThresholds) && _mobThreshold.TryGetDeadThreshold(entity, out var deadThreshold, mobThresholds)) - { - var damage = (FixedPoint2)(transferAmount * deadThreshold * 2 / solution.MaxVolume); - _damageable.TryChangeDamage(entity, new(_prototypeManager.Index("Blunt"), damage)); - } - // RPS-Exodus-EatTheMice-End - var flavors = args.FlavorMessage; if (forceFeed) @@ -567,6 +548,6 @@ public int GetUsesRemaining(EntityUid uid, FoodComponent? comp = null) if (comp.TransferAmount == null) return 1; - return Math.Max(1, (int)Math.Ceiling((solution.Volume / (FixedPoint2)comp.TransferAmount).Float())); + return Math.Max(1, (int) Math.Ceiling((solution.Volume / (FixedPoint2) comp.TransferAmount).Float())); } } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 1ecb0c904f0..7e578657ebd 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -140,7 +140,7 @@ private void OnShootRequest(RequestShootEvent msg, EntitySessionEventArgs args) return; gun.ShootCoordinates = GetCoordinates(msg.Coordinates); - // gun.Target = GetEntity(msg.Target); // Exodus-NPCsAbilityToTargetEnemy + gun.Target = GetEntity(msg.Target); AttemptShoot(user.Value, ent, gun); } @@ -207,10 +207,10 @@ private void StopShooting(EntityUid uid, GunComponent gun) /// /// Attempts to shoot at the target coordinates. Resets the shot counter after every shot. /// - public void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, EntityCoordinates toCoordinates, /* Exodus-NPCsAbilityToTargetEnemy-Start */ EntityUid? target = null /* Exodus-NPCsAbilityToTargetEnemy-End */) + public void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, EntityCoordinates toCoordinates) { gun.ShootCoordinates = toCoordinates; - AttemptShoot(user, gunUid, gun, /* Exodus-NPCsAbilityToTargetEnemy-Start */ target /* Exodus-NPCsAbilityToTargetEnemy-End */); + AttemptShoot(user, gunUid, gun); gun.ShotCounter = 0; DirtyField(gunUid, gun, nameof(GunComponent.ShotCounter)); } @@ -218,15 +218,15 @@ public void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, Ent /// /// Shoots by assuming the gun is the user at default coordinates. /// - public void AttemptShoot(EntityUid gunUid, GunComponent gun, /* Exodus-NPCsAbilityToTargetEnemy-Start */ EntityUid? target = null /* Exodus-NPCsAbilityToTargetEnemy-End */) + public void AttemptShoot(EntityUid gunUid, GunComponent gun) { var coordinates = new EntityCoordinates(gunUid, gun.DefaultDirection); gun.ShootCoordinates = coordinates; - AttemptShoot(gunUid, gunUid, gun, /* Exodus-NPCsAbilityToTargetEnemy-Start */ target /* Exodus-NPCsAbilityToTargetEnemy-End */); + AttemptShoot(gunUid, gunUid, gun); gun.ShotCounter = 0; } - private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, /* Exodus-NPCsAbilityToTargetEnemy-Start */ EntityUid? target = null /* Exodus-NPCsAbilityToTargetEnemy-End */) + private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun) { if (gun.FireRateModified <= 0f || !_actionBlockerSystem.CanAttack(user)) @@ -234,11 +234,6 @@ private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun, /* return; } - // Exodus-NPCsAbilityToTargetEnemy-Start - if (target != null) - gun.Target = target.Value; - // Exodus-NPCsAbilityToTargetEnemy-End - var toCoordinates = gun.ShootCoordinates; if (toCoordinates == null) diff --git a/Content.Shared/_Exodus/Clothing/Components/WaddleWhenWornComponent.cs b/Content.Shared/_Exodus/Clothing/Components/WaddleWhenWornComponent.cs deleted file mode 100644 index b858ad0b7c1..00000000000 --- a/Content.Shared/_Exodus/Clothing/Components/WaddleWhenWornComponent.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Based on https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Shared/Clothing/Components/WaddleWhenWornComponent.cs -using System.Numerics; -using Robust.Shared.GameStates; - -namespace Content.Shared.Exodus.Clothing.Components; - -/// -/// Defines something as causing waddling when worn. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class WaddleWhenWornComponent : Component -{ - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; -} diff --git a/Content.Shared/_Exodus/Clothing/EntitySystems/WaddleClothingSystem.cs b/Content.Shared/_Exodus/Clothing/EntitySystems/WaddleClothingSystem.cs deleted file mode 100644 index 26a966cd941..00000000000 --- a/Content.Shared/_Exodus/Clothing/EntitySystems/WaddleClothingSystem.cs +++ /dev/null @@ -1,32 +0,0 @@ -// Based on https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Shared/Clothing/EntitySystems/WaddleClothingSystem.cs -using Content.Shared.Clothing; -using Content.Shared.Exodus.Clothing.Components; -using Content.Shared.Exodus.Movement.Components; - -namespace Content.Shared.Exodus.Clothing.EntitySystems; - -public sealed class WaddleClothingSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnGotUnequipped); - } - - private void OnGotEquipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotEquippedEvent args) - { - var waddleAnimComp = EnsureComp(args.Wearer); - - waddleAnimComp.AnimationLength = comp.AnimationLength; - waddleAnimComp.HopIntensity = comp.HopIntensity; - waddleAnimComp.RunAnimationLengthMultiplier = comp.RunAnimationLengthMultiplier; - waddleAnimComp.TumbleIntensity = comp.TumbleIntensity; - } - - private void OnGotUnequipped(EntityUid entity, WaddleWhenWornComponent comp, ClothingGotUnequippedEvent args) - { - RemComp(args.Wearer); - } -} \ No newline at end of file diff --git a/Content.Shared/_Exodus/Geras/SharedGerasSystem.cs b/Content.Shared/_Exodus/Geras/SharedGerasSystem.cs deleted file mode 100644 index 3abfa668374..00000000000 --- a/Content.Shared/_Exodus/Geras/SharedGerasSystem.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Content.Shared.Actions; - -namespace Content.Shared.Exodus.Geras; - -/// -/// Geras is the god of old age, and A geras is the small morph of a slime. This system allows the slimes to have the morphing action. -/// -public abstract class SharedGerasSystem : EntitySystem -{ - -} - -public sealed partial class MorphIntoGeras : InstantActionEvent -{ - -} diff --git a/Content.Shared/_Exodus/Movement/Components/WaddleAnimationComponent.cs b/Content.Shared/_Exodus/Movement/Components/WaddleAnimationComponent.cs deleted file mode 100644 index fd1d28da01b..00000000000 --- a/Content.Shared/_Exodus/Movement/Components/WaddleAnimationComponent.cs +++ /dev/null @@ -1,75 +0,0 @@ -// Taken from https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Shared/Movement/Components/WaddleAnimationComponent.cs -using System.Numerics; -using Robust.Shared.Serialization; - -namespace Content.Shared.Exodus.Movement.Components; - -/// -/// Declares that an entity has started to waddle like a duck/clown. -/// -/// The newly be-waddled. -[Serializable, NetSerializable] -public sealed class StartedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Declares that an entity has stopped waddling like a duck/clown. -/// -/// The former waddle-er. -[Serializable, NetSerializable] -public sealed class StoppedWaddlingEvent(NetEntity entity) : EntityEventArgs -{ - public NetEntity Entity = entity; -} - -/// -/// Defines something as having a waddle animation when it moves. -/// -[RegisterComponent, AutoGenerateComponentState] -public sealed partial class WaddleAnimationComponent : Component -{ - /// - /// What's the name of this animation? Make sure it's unique so it can play along side other animations. - /// This prevents someone accidentally causing two identical waddling effects to play on someone at the same time. - /// - [DataField] - public string KeyName = "Waddle"; - - /// - /// How high should they hop during the waddle? Higher hop = more energy. - /// - [DataField, AutoNetworkedField] - public Vector2 HopIntensity = new(0, 0.25f); - - /// - /// How far should they rock backward and forward during the waddle? - /// Each step will alternate between this being a positive and negative rotation. More rock = more scary. - /// - [DataField, AutoNetworkedField] - public float TumbleIntensity = 20.0f; - - /// - /// How long should a complete step take? Less time = more chaos. - /// - [DataField, AutoNetworkedField] - public float AnimationLength = 0.66f; - - /// - /// How much shorter should the animation be when running? - /// - [DataField, AutoNetworkedField] - public float RunAnimationLengthMultiplier = 0.568f; - - /// - /// Stores which step we made last, so if someone cancels out of the animation mid-step then restarts it looks more natural. - /// - public bool LastStep; - - /// - /// Stores if we're currently waddling so we can start/stop as appropriate and can tell other systems our state. - /// - [AutoNetworkedField] - public bool IsCurrentlyWaddling; -} diff --git a/Content.Shared/_Exodus/Movement/Systems/SharedWaddleAnimationSystem.cs b/Content.Shared/_Exodus/Movement/Systems/SharedWaddleAnimationSystem.cs deleted file mode 100644 index 54b66e5342b..00000000000 --- a/Content.Shared/_Exodus/Movement/Systems/SharedWaddleAnimationSystem.cs +++ /dev/null @@ -1,110 +0,0 @@ -// Based on https://github.com/space-exodus/space-station-14/blob/e0174a7cb79c080db69a12c0c36121830df30f9d/Content.Shared/Movement/Systems/SharedWaddleAnimationSystem.cs -using Content.Shared.Buckle.Components; -using Content.Shared.Exodus.Movement.Components; -using Content.Shared.Gravity; -using Content.Shared.Movement.Components; -using Content.Shared.Movement.Events; -using Content.Shared.Movement.Systems; -using Content.Shared.Standing; -using Content.Shared.Stunnable; -using Robust.Shared.Timing; - -namespace Content.Shared.Exodus.Movement.Systems; - -public abstract class SharedWaddleAnimationSystem : EntitySystem -{ - [Dependency] private readonly IGameTiming _timing = default!; - - public override void Initialize() - { - // Startup - SubscribeLocalEvent(OnComponentStartup); - - // Start moving possibilities - SubscribeLocalEvent(OnMovementInput); - SubscribeLocalEvent(OnStood); - - // Stop moving possibilities - SubscribeLocalEvent((Entity ent, ref StunnedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref DownedEvent _) => StopWaddling(ent)); - SubscribeLocalEvent((Entity ent, ref BuckledEvent _) => StopWaddling(ent)); - SubscribeLocalEvent(OnGravityChanged); - } - - private void OnGravityChanged(Entity ent, ref GravityChangedEvent args) - { - if (!args.HasGravity && ent.Comp.IsCurrentlyWaddling) - StopWaddling(ent); - } - - private void OnComponentStartup(Entity entity, ref ComponentStartup args) - { - if (!TryComp(entity.Owner, out var moverComponent)) - return; - - // If the waddler is currently moving, make them start waddling - if ((moverComponent.HeldMoveButtons & MoveButtons.AnyDirection) != MoveButtons.None) - { - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - } - - private void OnMovementInput(Entity entity, ref MoveInputEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!args.HasDirectionalMovement && entity.Comp.IsCurrentlyWaddling) - { - StopWaddling(entity); - - return; - } - - // Only start waddling if we're not currently AND we're actually moving. - if (entity.Comp.IsCurrentlyWaddling || !args.HasDirectionalMovement) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void OnStood(Entity entity, ref StoodEvent args) - { - // Prediction mitigation. Prediction means that MoveInputEvents are spammed repeatedly, even though you'd assume - // they're once-only for the user actually doing something. As such do nothing if we're just repeating this FoR. - if (!_timing.IsFirstTimePredicted) - { - return; - } - - if (!TryComp(entity.Owner, out var mover)) - { - return; - } - - if ((mover.HeldMoveButtons & MoveButtons.AnyDirection) == MoveButtons.None) - return; - - if (entity.Comp.IsCurrentlyWaddling) - return; - - entity.Comp.IsCurrentlyWaddling = true; - - RaiseNetworkEvent(new StartedWaddlingEvent(GetNetEntity(entity.Owner))); - } - - private void StopWaddling(Entity entity) - { - entity.Comp.IsCurrentlyWaddling = false; - - RaiseNetworkEvent(new StoppedWaddlingEvent(GetNetEntity(entity.Owner))); - } -} diff --git a/Content.Shared/_Exodus/NPC/NpcFactionEditEuiState.cs b/Content.Shared/_Exodus/NPC/NpcFactionEditEuiState.cs deleted file mode 100644 index 403dc3ffaaa..00000000000 --- a/Content.Shared/_Exodus/NPC/NpcFactionEditEuiState.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Content.Shared.Eui; -using Content.Shared.NPC.Prototypes; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; - -namespace Content.Shared.Exodus.NPC; - -[Serializable, NetSerializable] -public sealed class NpcFactionEuiState : EuiStateBase -{ - public NetEntity Target { get; } - public HashSet> Factions { get; } - - public NpcFactionEuiState(NetEntity target, HashSet> factions) - { - Target = target; - Factions = factions; - } -} - -[Serializable, NetSerializable] -public sealed class NpcFactionCreateComponentMessage : EuiMessageBase -{ - public NetEntity Target { get; } - - public NpcFactionCreateComponentMessage(NetEntity target) - { - Target = target; - } -} - -[Serializable, NetSerializable] -public sealed class NpcFactionAddMessage : EuiMessageBase -{ - public NetEntity Target { get; } - public ProtoId Faction { get; } - - public NpcFactionAddMessage(NetEntity target, ProtoId faction) - { - Target = target; - Faction = faction; - } -} - -[Serializable, NetSerializable] -public sealed class NpcFactionRemoveMessage : EuiMessageBase -{ - public NetEntity Target { get; } - public ProtoId Faction { get; } - - public NpcFactionRemoveMessage(NetEntity target, ProtoId faction) - { - Target = target; - Faction = faction; - } -} diff --git a/Content.Shared/_Exodus/Seal/SealComponent.cs b/Content.Shared/_Exodus/Seal/SealComponent.cs deleted file mode 100644 index 7e8cfb32c59..00000000000 --- a/Content.Shared/_Exodus/Seal/SealComponent.cs +++ /dev/null @@ -1,89 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Exodus.Seal; - -/// -/// Component using to make one time lock -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -[Access(typeof(SharedSealSystem))] -public sealed partial class SealComponent : Component -{ - [DataField("sealed"), ViewVariables(VVAccess.ReadWrite)] - [AutoNetworkedField] - public bool Sealed = true; - - /// - /// Will make station announcment on open - /// - [DataField("willAnnounce"), ViewVariables(VVAccess.ReadWrite)] - public bool WillAnnounce = false; - - /// - /// Spawns entity on unseal or do nothing if empty - /// - - [DataField("spawnOnUnseal"), ViewVariables(VVAccess.ReadWrite)] - public string? SpawnOnUnseal; - - [DataField("breakOnEmag")] - [AutoNetworkedField] - public bool BreakOnEmag = true; - - [DataField("removeOnUnseal")] - [AutoNetworkedField] - public bool RemoveOnUnseal = true; - - [DataField("UnsealTime")] - [AutoNetworkedField] - public TimeSpan UnsealTime = TimeSpan.FromSeconds(5); - - [DataField("sealType")] - [AutoNetworkedField] - public SealLockType SealType = 0; - - [DataField] - public string? NameToAccess; - - [DataField("unsealingSound"), ViewVariables(VVAccess.ReadWrite)] - public SoundSpecifier UnsealingSound = new SoundPathSpecifier("/Audio/Machines/door_lock_off.ogg") - { - Params = AudioParams.Default.WithVolume(-5f), - }; - - /// - /// Title and Text of announcment if enabled - /// - [DataField("announceTitle")] - public LocId? AnnounceTitle; - - [DataField("announceText")] - public LocId? AnnounceText; - -} - -[ByRefEvent] -public record struct UnsealAttemptEvent(EntityUid User, bool Silent = false, bool Cancelled = false); - -[ByRefEvent] -public readonly record struct UnsealedEvent(); - -[Serializable, NetSerializable] -public enum SealVisual : byte -{ - Sealed -} - -[Serializable, NetSerializable] -public sealed partial class UnsealDoAfter : DoAfterEvent -{ - public override DoAfterEvent Clone() - { - return this; - } -} - - diff --git a/Content.Shared/_Exodus/Seal/SharedSealSystem.cs b/Content.Shared/_Exodus/Seal/SharedSealSystem.cs deleted file mode 100644 index 832558fe80b..00000000000 --- a/Content.Shared/_Exodus/Seal/SharedSealSystem.cs +++ /dev/null @@ -1,123 +0,0 @@ -using Content.Shared.Access.Components; -using Content.Shared.Access.Systems; -using Content.Shared.Containers.ItemSlots; -using Content.Shared.DoAfter; -using Content.Shared.Emag.Systems; -using Content.Shared.Examine; -using Content.Shared.IdentityManagement; -using Content.Shared.Popups; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Serialization; - -namespace Content.Shared.Exodus.Seal; - -public abstract class SharedSealSystem : EntitySystem -{ - [Dependency] private readonly SharedIdCardSystem _idCardSystem = default!; - [Dependency] protected readonly AccessReaderSystem AccessReader = default!; - [Dependency] protected readonly SharedAudioSystem AudioSystem = default!; - [Dependency] protected readonly SharedAppearanceSystem AppearanceSystem = default!; - [Dependency] protected readonly SharedPopupSystem PopupSystem = default!; - [Dependency] protected readonly SharedDoAfterSystem DoAfter = default!; - public override void Initialize() - { - SubscribeLocalEvent(OnExamined); - SubscribeLocalEvent(OnEjectAttempt); - SubscribeLocalEvent(OnInsertAttempt); - SubscribeLocalEvent(OnEmag); - } - - private void OnEjectAttempt(EntityUid uid, SealComponent component, ref ItemSlotEjectAttemptEvent args) - { - if (!component.Sealed) - return; - - args.Cancelled = true; - } - - private void OnInsertAttempt(EntityUid uid, SealComponent component, ref ItemSlotInsertAttemptEvent args) - { - if (!component.Sealed) - return; - - args.Cancelled = true; - } - - private void OnExamined(EntityUid uid, SealComponent component, ExaminedEvent args) - { - if (component.Sealed) - args.PushText(Loc.GetString("seal-component-on-examine-is-sealed", ("entityName", Identity.Name(uid, EntityManager)))); - } - - protected bool CheckAccess(EntityUid uid, EntityUid user, AccessReaderComponent? reader = null, bool quiet = false) - { - if (!Resolve(uid, ref reader, false)) - return true; - - if (AccessReader.IsAllowed(user, uid, reader)) - return true; - - if (!quiet) - PopupSystem.PopupEntity(Loc.GetString("seal-comp-access-fail"), uid, user); - return false; - } - - protected bool CheckIdentity(EntityUid uid, EntityUid user, SealComponent component, bool quiet = false) - { - if (component.NameToAccess == null) - return true; - - if (!_idCardSystem.TryFindIdCard(user, out var idCard)) - { - PopupSystem.PopupEntity(Loc.GetString("seal-comp-user-fail"), uid, user); - return false; - } - if (!TryComp(idCard, out var idcomp)) - { - PopupSystem.PopupEntity(Loc.GetString("seal-comp-user-fail"), uid, user); - return false; - } - if (idcomp.FullName == component.NameToAccess) - return true; - - if (!quiet) - PopupSystem.PopupEntity(Loc.GetString("seal-comp-user-fail"), uid, user); - return false; - } - - public void OnEmag(EntityUid uid, SealComponent component, ref GotEmaggedEvent args) - { - if (!component.BreakOnEmag && !component.Sealed) - return; - - component.SealType = SealLockType.None; - - args.Handled = true; - } - -} - -[Serializable, NetSerializable] -public enum SealLockType : byte -{ - /// - /// No access needed - /// - None = 0, - - /// - /// Access needed - /// - AccessSeal = 1, - - /// - /// ID card of player needed - /// - IDNameSeal = 2, - - /// - /// ID card of player and access needed - /// - AccessNameSeal = 3 -} - diff --git a/Resources/Audio/Exodus/Lobby/attributions.yml b/Resources/Audio/Exodus/Lobby/attributions.yml deleted file mode 100644 index 96a9c875f88..00000000000 --- a/Resources/Audio/Exodus/Lobby/attributions.yml +++ /dev/null @@ -1,52 +0,0 @@ -- files: ["flames.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Ramli" - source: "https://www.youtube.com/watch?v=S04JugcHhjA" - -- files: ["hopeful.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Ramli" - source: "https://www.youtube.com/watch?v=uCw3Aa4MigY" - -- files: ["owl.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Ramli" - source: "https://www.youtube.com/watch?v=gK6kKSDWqMY" - -- files: ["voided.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Ramli" - source: "https://www.youtube.com/watch?v=0ExfinQJYgg" - -- files: ["weightlessness.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Ramli" - source: "https://www.youtube.com/watch?v=e1PkrzH-ybc" - - -- files: ["theme_of_space.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Gundatsch" - source: "https://opengameart.org/users/gundatsch" - - -- files: ["larik.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Gundatsch" - source: "https://opengameart.org/users/gundatsch" - -- files: ["space.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Gundatsch" - source: "https://opengameart.org/users/gundatsch" - -- files: ["space_oddity.ogg"] - license: "CC-BY-3.0" - copyright: "Made by Dawid Bowie" - source: "https://opengameart.org/users/gundatsch" - - -- files: ["endless_space.ogg"] - license: "CC-BY-3.0" - copyright: "Endless Space by SolusLunes, Remix by Ramli" - source: "https://www.youtube.com/watch?v=x4uatkFdZoU" diff --git a/Resources/Audio/Exodus/Lobby/endless_space.ogg b/Resources/Audio/Exodus/Lobby/endless_space.ogg deleted file mode 100644 index b694ed036ce..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/endless_space.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/flames.ogg b/Resources/Audio/Exodus/Lobby/flames.ogg deleted file mode 100644 index ec8a57667ca..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/flames.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/hopeful.ogg b/Resources/Audio/Exodus/Lobby/hopeful.ogg deleted file mode 100644 index 76446298d39..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/hopeful.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/larik.ogg b/Resources/Audio/Exodus/Lobby/larik.ogg deleted file mode 100644 index e6f362a7c9b..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/larik.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/owl.ogg b/Resources/Audio/Exodus/Lobby/owl.ogg deleted file mode 100644 index d22baa52cd5..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/owl.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/space.ogg b/Resources/Audio/Exodus/Lobby/space.ogg deleted file mode 100644 index 8bae9c1e2bb..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/space.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/space_oddity.ogg b/Resources/Audio/Exodus/Lobby/space_oddity.ogg deleted file mode 100644 index a879eb705ca..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/space_oddity.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/storm_resurrection.ogg b/Resources/Audio/Exodus/Lobby/storm_resurrection.ogg deleted file mode 100644 index c331548144e..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/storm_resurrection.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/theme_of_space.ogg b/Resources/Audio/Exodus/Lobby/theme_of_space.ogg deleted file mode 100644 index 16956bfb8fa..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/theme_of_space.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/voided.ogg b/Resources/Audio/Exodus/Lobby/voided.ogg deleted file mode 100644 index 55b11f40b1e..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/voided.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Lobby/weightlessness.ogg b/Resources/Audio/Exodus/Lobby/weightlessness.ogg deleted file mode 100644 index d6ad04d0358..00000000000 Binary files a/Resources/Audio/Exodus/Lobby/weightlessness.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/StationEvents/attributions.yml b/Resources/Audio/Exodus/StationEvents/attributions.yml deleted file mode 100644 index 67f531f6b5f..00000000000 --- a/Resources/Audio/Exodus/StationEvents/attributions.yml +++ /dev/null @@ -1,9 +0,0 @@ -- files: ["singularity.ogg"] - license: "CC-BY-3.0" - copyright: "Created by Ramli (discord, 342235263550095360)" - source: "https://www.youtube.com/watch?v=BlhXh-hy5YM" - -- files: ["clearly_nuclear.ogg"] - license: "CC-BY-3.0" - copyright: "Created by mryikes" - source: "https://www.youtube.com/watch?v=chix8uz-oUQ" diff --git a/Resources/Audio/Exodus/StationEvents/clearly_nuclear.ogg b/Resources/Audio/Exodus/StationEvents/clearly_nuclear.ogg deleted file mode 100644 index 2c8b18e1b14..00000000000 Binary files a/Resources/Audio/Exodus/StationEvents/clearly_nuclear.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/StationEvents/singularity.ogg b/Resources/Audio/Exodus/StationEvents/singularity.ogg deleted file mode 100644 index 8f4e289ad41..00000000000 Binary files a/Resources/Audio/Exodus/StationEvents/singularity.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/attributions.yml b/Resources/Audio/Exodus/Voice/Reptilian/attributions.yml deleted file mode 100644 index 6ad662ef8e8..00000000000 --- a/Resources/Audio/Exodus/Voice/Reptilian/attributions.yml +++ /dev/null @@ -1,4 +0,0 @@ -- files: ["f_sneeze.ogg", "m_sneeze.ogg", "roar.ogg", "roar2.ogg", "roar3.ogg", "rumble.ogg", "rumble2.ogg", "threat.ogg", "threat2.ogg", "whip_short.ogg", "whip.ogg"] - license: "CC-BY-SA-3.0" - copyright: "Taken from Paradise SS13" - source: "https://github.com/ss220-space/Paradise/pull/2973" diff --git a/Resources/Audio/Exodus/Voice/Reptilian/f_sneeze.ogg b/Resources/Audio/Exodus/Voice/Reptilian/f_sneeze.ogg deleted file mode 100644 index a156df6b617..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/f_sneeze.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/m_sneeze.ogg b/Resources/Audio/Exodus/Voice/Reptilian/m_sneeze.ogg deleted file mode 100644 index 8a4c0ff9e13..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/m_sneeze.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/roar.ogg b/Resources/Audio/Exodus/Voice/Reptilian/roar.ogg deleted file mode 100644 index 2ef07eebdee..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/roar.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/roar2.ogg b/Resources/Audio/Exodus/Voice/Reptilian/roar2.ogg deleted file mode 100644 index 3fe50ab10b4..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/roar2.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/roar3.ogg b/Resources/Audio/Exodus/Voice/Reptilian/roar3.ogg deleted file mode 100644 index dc472bbf4dd..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/roar3.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/rumble.ogg b/Resources/Audio/Exodus/Voice/Reptilian/rumble.ogg deleted file mode 100644 index afd2b1f4bdd..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/rumble.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/rumble2.ogg b/Resources/Audio/Exodus/Voice/Reptilian/rumble2.ogg deleted file mode 100644 index 4d58fe10b62..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/rumble2.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/threat.ogg b/Resources/Audio/Exodus/Voice/Reptilian/threat.ogg deleted file mode 100644 index adfee3e065a..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/threat.ogg and /dev/null differ diff --git a/Resources/Audio/Exodus/Voice/Reptilian/threat2.ogg b/Resources/Audio/Exodus/Voice/Reptilian/threat2.ogg deleted file mode 100644 index 0a5d333e3e4..00000000000 Binary files a/Resources/Audio/Exodus/Voice/Reptilian/threat2.ogg and /dev/null differ diff --git a/Resources/Locale/ru-RU/exodus/administration/ui/npc-faction-ui.ftl b/Resources/Locale/ru-RU/exodus/administration/ui/npc-faction-ui.ftl deleted file mode 100644 index 285d8defcd4..00000000000 --- a/Resources/Locale/ru-RU/exodus/administration/ui/npc-faction-ui.ftl +++ /dev/null @@ -1,7 +0,0 @@ -npc-faction-ui-verb = Изменить фракции -npc-faction-ui-window-title = Панель управления фракциями -npc-faction-ui-window-name-label = Имя сущности: { $name } -npc-faction-ui-window-name-label-loading = Загрузка... -npc-faction-ui-window-factions-list-label = Фракции -npc-faction-ui-window-no-component-label = У этой сущности нет компонента NpcFactionMember! -npc-faction-ui-window-create-component-button = Создать компонент diff --git a/Resources/Locale/ru-RU/exodus/chat/emotes.ftl b/Resources/Locale/ru-RU/exodus/chat/emotes.ftl deleted file mode 100644 index 29bf1438be5..00000000000 --- a/Resources/Locale/ru-RU/exodus/chat/emotes.ftl +++ /dev/null @@ -1 +0,0 @@ -chat-emote-name-rumble = Урчать diff --git a/Resources/Locale/ru-RU/exodus/geras/geras.ftl b/Resources/Locale/ru-RU/exodus/geras/geras.ftl deleted file mode 100644 index e4446e5b90f..00000000000 --- a/Resources/Locale/ru-RU/exodus/geras/geras.ftl +++ /dev/null @@ -1,2 +0,0 @@ -geras-popup-morph-message-user = Вы превращаетесь в уменьшенную версию себя! -geras-popup-morph-message-others = { CAPITALIZE($entity) } превращается в уменьшенную версию себя! diff --git a/Resources/Locale/ru-RU/exodus/inject-implants/inject-implants.ftl b/Resources/Locale/ru-RU/exodus/inject-implants/inject-implants.ftl deleted file mode 100644 index e79f836c34d..00000000000 --- a/Resources/Locale/ru-RU/exodus/inject-implants/inject-implants.ftl +++ /dev/null @@ -1,4 +0,0 @@ -inject-trigger-empty-message = В импланте нет полных капсул! -inject-trigger-cant-inject-message = Нельзя сделать инъекцию в { $target }! -inject-trigger-empty-capsule-message = Капсула в импланте пустая! -inject-trigger-feel-prick-message = Вы чувствуете как жидкость растекается в вашей крови! diff --git a/Resources/Locale/ru-RU/exodus/markings/vulpkanin.ftl b/Resources/Locale/ru-RU/exodus/markings/vulpkanin.ftl deleted file mode 100644 index e754cc31bbc..00000000000 --- a/Resources/Locale/ru-RU/exodus/markings/vulpkanin.ftl +++ /dev/null @@ -1,186 +0,0 @@ -marking-VulpkaninSpotThroat = Волчья морда -marking-VulpkaninSpotThroat-throat = Волчья морда -marking-VulpkaninSpotArrow = Пятно, Ван -marking-VulpkaninSpotArrow-arrow = Пятно, Ван -marking-VulpkaninSpotRaccoon = Пятно, Маска -marking-VulpkaninSpotRaccoon-raccoon = Пятно, Маска -marking-VulpkaninSpotArrows = Пятно, Стрелки -marking-VulpkaninSpotArrows-arrows = Пятно, Стрелки -marking-VulpkaninSpotBelt = Пятно, Бельмо -marking-VulpkaninSpotBelt-belt = Пятно, Бельмо -marking-VulpkaninSpotCase = Пятно, Кейс -marking-VulpkaninSpotCase-case = Пятно, Кейс -marking-VulpkaninSpotEyebrows = Пятно, Брови -marking-VulpkaninSpotEyebrows-eyebrows = Пятно, Брови -marking-VulpkaninSpotHelmet = Пятно, Шлем -marking-VulpkaninSpotHelmet-helmet = Пятно, Шлем -marking-VulpkaninSpotLadle = Пятно, Черпак -marking-VulpkaninSpotLadle-ladle = Пятно, Черпак -marking-VulpkaninSpotLantern = Пятно, Лампа -marking-VulpkaninSpotLantern-lantern = Пятно, Лампа -marking-VulpkaninSpotMask = Пятно, Маска -marking-VulpkaninSpotMask-mask = Пятно, Маска -marking-VulpkaninSpotSiamisblurred = Пятно, Сиам -marking-VulpkaninSpotStar = Пятно, Звезда -marking-VulpkaninSpotStar-star = Пятно, Звезда -marking-VulpkaninSpotTear = Пятно, Слёзы -marking-VulpkaninSpotTear-tear = Пятно, Слёзы -marking-VulpkaninSpotThai = Пятно, Таец -marking-VulpkaninSpotThai-thai = Пятно, Таец -marking-VulpkaninEarsCutoff = Уши, Купированные -marking-VulpkaninEarsCutoff-ears_cutoff_outer = Уши, Купированные (внешние) -marking-VulpkaninEarsCutoff-ears_cutoff_inner = Уши, Купированные (внутренние) -marking-VulpkaninEarsFennec = Уши, Лапоухий -marking-VulpkaninEarsFennec-ears_fennec_outer = Уши, Лапоухий (внешние) -marking-VulpkaninEarsFennec-ears_fennec_inner = Уши, Лапоухий (внутренние) -marking-VulpkaninEarsHyena = Уши, Гиена -marking-VulpkaninEarsHyena-ears_hyena_outer = Уши, Гиена (внешние) -marking-VulpkaninEarsHyena-ears_hyena_inner = Уши, Гиена (внутренние) -marking-VulpkaninEarsLinx = Уши, Рысь -marking-VulpkaninEarsLinx-ears_linx_outer = Уши, Рысь (внешние) -marking-VulpkaninEarsLinx-ears_linx_inner = Уши, Рысь (внутренние) -marking-VulpkaninEarsRound = Уши, Круглые -marking-VulpkaninEarsRound-ears_round_outer = Уши, Круглые (внешние) -marking-VulpkaninEarsRound-ears_round_inner = Уши, Круглые (внутренние) -marking-VulpkaninEarsSharp = Уши, Острые -marking-VulpkaninEarsSharp-ears_sharp_outer = Уши, Острые (внешние) -marking-VulpkaninEarsSharp-ears_sharp_inner = Уши, Острые (внутренние) -marking-VulpkaninEarsSkarLeft = Левое ухо, Шрам -marking-VulpkaninEarsSkarLeft-ears_skar_left_outer = Левое ухо, Шрам (внешнее) -marking-VulpkaninEarsSkarLeft-ears_skar_left_inner = Левое ухо, Шрам (внутреннее) -marking-VulpkaninEarsSkarRight = Правое ухо, Шрам -marking-VulpkaninEarsSkarRight-ears_skar_right_outer = Правое ухо, Шрам (внешнее) -marking-VulpkaninEarsSkarRight-ears_skar_right_inner = Правое ухо, Шрам (внутреннее) -marking-VulpkaninEarsSpaniel = Уши, Спаниэль -marking-VulpkaninEarsSpaniel-ears_spaniel = Уши, Спаэль -marking-VulpkaninFootsDotFootRight = Правая пята, След -marking-VulpkaninFootsDotFootRight-dot_foot_r = След -marking-VulpkaninFootsFullRight = Правая пята, Носок -marking-VulpkaninFootsFullRight-foots_r = Носок -marking-VulpkaninFootsTrailFootRight = Правая пята, Пальцы -marking-VulpkaninFootsTrailFootRight-trail_foot_r = Пальцы -marking-VulpkaninFootsDotFootLeft = Левая пята, След -marking-VulpkaninFootsDotFootLeft-dot_foot_l = След -marking-VulpkaninFootsFullLeft = Левая пята, Носок -marking-VulpkaninFootsFullLeft-foots_l = Носок -marking-VulpkaninFootsTrailFootLeft = Левая пята, Пальцы -marking-VulpkaninFootsTrailFootLeft-trail_foot_l = Пальцы -marking-VulpkaninRightLegBun = Правое бедро, отметина -marking-VulpkaninRightLegBun-bun_r = Отметина -marking-VulpkaninLeftLegBun = Левое бедро, отметина -marking-VulpkaninLeftLegBun-bun_l = Отметина -marking-VulpkaninRightLegHips = Правое бедро -marking-VulpkaninRightLegHips-hips_r = Бедро -marking-VulpkaninLeftLegHips = Левое бедро -marking-VulpkaninLeftLegHips-hips_l = Бедро -marking-VulpkaninRightLegIncisionMark = Правое бедро, рваные отметины -marking-VulpkaninRightLegIncisionMark-incision_mark_r = Рваные отметины -marking-VulpkaninLeftLegIncisionMark = Левое бедро, рваные отметины -marking-VulpkaninLeftLegIncisionMark-incision_mark_l = Рваные отметины -marking-VulpkaninRightLegInnerThigh = Правое бедро, большое пятно -marking-VulpkaninRightLegInnerThigh-inner_thigh_r = Пятно -marking-VulpkaninLeftLegInnerThigh = Левое бедро, большое пятно -marking-VulpkaninLeftLegInnerThigh-inner_thigh_l = Пятно -marking-VulpkaninRightLegKneesocks = Правое бедро, браслет -marking-VulpkaninRightLegKneesocks-kneesocks_r = Браслет -marking-VulpkaninLeftLegKneesocks = Левое бедро, браслет -marking-VulpkaninLeftLegKneesocks-kneesocks_l = Браслет -marking-VulpkaninRightLegLongStripes = Правая нога, длинные полосы -marking-VulpkaninRightLegLongStripes-long_stripes_leg_r = Длинные полосы -marking-VulpkaninLeftLegLongStripes = Левая нога, длинные полосы -marking-VulpkaninLeftLegLongStripes-long_stripes_leg_l = Длинные полосы -marking-VulpkaninRightLegSocks = Правая нога, резинка носка -marking-VulpkaninRightLegSocks-socksleg_r = Резинка носка -marking-VulpkaninLeftLegSocks = Левая нога, резинка носка -marking-VulpkaninLeftLegSocks-socksleg_l = Резинка носка -marking-VulpkaninChestMaleBelly = Пузико -marking-VulpkaninChestMaleBelly-belly_m = Пузико -marking-VulpkaninChestFemaleBelly = Пузико -marking-VulpkaninChestFemaleBelly-belly_f = Пузико -marking-VulpkaninChestBelt = Широкий ремень -marking-VulpkaninChestBelt-belt = Широкий ремень -marking-VulpkaninChestBelt2 = Узкий ремень -marking-VulpkaninChestBelt2-belt2 = Узкий ремень -marking-VulpkaninChestMaleBreast = Отметины -marking-VulpkaninChestMaleBreast-breast_m = Отметины -marking-VulpkaninChestFemaleBreast = Отметины -marking-VulpkaninChestFemaleBreast-breast_f = Отметины -marking-VulpkaninChestMaleChestAndThroat = Горло и грудь -marking-VulpkaninChestMaleChestAndThroat-chest_and_throat_m = Горло и грудь -marking-VulpkaninChestFemaleChestAndThroat = Горло и грудь -marking-VulpkaninChestFemaleChestAndThroat-chest_and_throat_f = Горло и грудь -marking-VulpkaninChestMaleCross = Черпачный крест -marking-VulpkaninChestMaleCross-cross_m = Черпачный крест -marking-VulpkaninChestFemaleCross = Черпачный крест -marking-VulpkaninChestFemaleCross-cross_f = Черпачный крест -marking-VulpkaninChestMaleHorza = Хорза -marking-VulpkaninChestMaleHorza-horza_m = Хорза -marking-VulpkaninChestFemaleHorza = Хорза -marking-VulpkaninChestFemaleHorza-horza_f = Хорза -marking-VulpkaninChestHyena = Узор -marking-VulpkaninChestHyena-hyena = Узор -marking-VulpkaninChestFemaleJackal = Шакал -marking-VulpkaninChestFemaleJackal-jackal1_f = Шакал, шкура -marking-VulpkaninChestFemaleJackal-jackal2_f = Шакал, полосы -marking-VulpkaninChestMaleJackal = Шакал -marking-VulpkaninChestMaleJackal-jackal1_m = Шакал, шкура -marking-VulpkaninChestMaleJackal-jackal2_m = Шакал, полосы -marking-VulpkaninChestMaleMane = Мантия -marking-VulpkaninChestMaleMane-mane_m = Мантия -marking-VulpkaninChestFemaleMane = Мантия -marking-VulpkaninChestFemaleMane-mane_f = Мантия -marking-VulpkaninChestMaleMantle = Рваные отметины -marking-VulpkaninChestMaleMantle-mantle_m = Рваные отметины -marking-VulpkaninChestFemaleMantle = Рваные отметины -marking-VulpkaninChestFemaleMantle-mantle_f = Рваные отметины -marking-VulpkaninChestMaleNecklac = Ожерелье -marking-VulpkaninChestMaleNecklac-necklac_m = Ожерелье -marking-VulpkaninChestFemaleNecklac = Ожерелье -marking-VulpkaninChestFemaleNecklac-necklace_f = Ожерелье -marking-VulpkaninChestMaleNecklac2 = Отметины -marking-VulpkaninChestMaleNecklac2-necklace2_m = Отметины -marking-VulpkaninChestFemaleNecklac2 = Отметины -marking-VulpkaninChestFemaleNecklac2-necklace2_f = Отметины -marking-VulpkaninChestSections = Рваные полосы -marking-VulpkaninChestSections-sections1_f = Рваные полосы внешние -marking-VulpkaninChestSections-sections2_f = Рваные полосы внутренние -marking-VulpkaninChestMaleSheet = Грудь -marking-VulpkaninChestMaleSheet-sheet_m = Грудь -marking-VulpkaninChestFemaleSheet = Грудь -marking-VulpkaninChestFemaleSheet-sheet_f = Грудь -marking-VulpkaninChestMaleSpot = Подпалены -marking-VulpkaninChestMaleSpot-spot_m = Подпалены -marking-VulpkaninChestFemaleSpot = Подпалены -marking-VulpkaninChestFemaleSpot-spot_f = Подпалены -marking-VulpkaninChestFemaleSrite = Пучки -marking-VulpkaninChestFemaleSrite-srite = Пучки -marking-VulpkaninChestMaleStripesAreFron = Длинные полосы -marking-VulpkaninChestMaleStripesAreFron-stripes_are_fron_m = Длинные полосы -marking-VulpkaninChestFemaleStripesAreFron = Длинные полосы -marking-VulpkaninChestFemaleStripesAreFron-stripes_are_torn_f = Длинные полосы -marking-VulpkaninArmRightArrowarm = Перчатка правая -marking-VulpkaninArmRightArrowarm-arrowarm_r = Перчатка -marking-VulpkaninArmLeftArrowarm = Перчатка левая -marking-VulpkaninArmLeftArrowarm-arrowarm_l = Перчатка -marking-VulpkaninArmRightMittens = Рукав правый -marking-VulpkaninArmRightMittens-mittens_r = Рукав -marking-VulpkaninArmLeftMittens = Рукав левый -marking-VulpkaninArmLeftMittens-mittens_l = Рукав -marking-VulpkaninArmRightShoulders = Плечи, Правый -marking-VulpkaninArmRightShoulders-shoulders_r = Плечи -marking-VulpkaninArmLeftShoulders = Плечи, Левый -marking-VulpkaninArmLeftShoulders-shoulders_l = Плечи -marking-VulpkaninArmRightStripesarm = Полосы, Правый -marking-VulpkaninArmRightStripesarm-stripesarm_r = Полосы -marking-VulpkaninArmLeftStripesarm = Полосы, Левый -marking-VulpkaninArmLeftStripesarm-stripesarm_l = Полосы -marking-VulpkaninHandRightGlovelett = Пальцы, Правый -marking-VulpkaninHandRightGlovelett-glovelett_r = Пальцы -marking-VulpkaninHandLeftGlovelett = Пальцы, Левый -marking-VulpkaninHandLeftGlovelett-glovelett_l = Пальцы -marking-VulpkaninHandRightGloves = Правая кисть -marking-VulpkaninHandRightGloves-gloves_r = Кисть -marking-VulpkaninHandLeftGloves = Левая кисть -marking-VulpkaninHandLeftGloves-gloves_l = Кисть -marking-VulpkaninSpotTearsmall = Пятна на щеках -marking-VulpkaninSpotTearsmall-tearsmall = Пятна на щеках diff --git a/Resources/Locale/ru-RU/exodus/nuke/nuke-record.ftl b/Resources/Locale/ru-RU/exodus/nuke/nuke-record.ftl deleted file mode 100644 index 0cbbbdf3fcd..00000000000 --- a/Resources/Locale/ru-RU/exodus/nuke/nuke-record.ftl +++ /dev/null @@ -1,2 +0,0 @@ -nuke-codes-record-examine-filled = Боеголовка: [bold]{ $nukeName }[/bold] - Код активации: [color = crimson]{ $nukeCode }[/color] -nuke-codes-record-examine-empty = Записи о ядерном вооружении отсутствуют diff --git a/Resources/Locale/ru-RU/exodus/objectives/conditions/steal-target-groups.ftl b/Resources/Locale/ru-RU/exodus/objectives/conditions/steal-target-groups.ftl deleted file mode 100644 index 11673982066..00000000000 --- a/Resources/Locale/ru-RU/exodus/objectives/conditions/steal-target-groups.ftl +++ /dev/null @@ -1 +0,0 @@ -steal-target-groups-book-secret-documents = чрезвычайные приказы по безопасности diff --git a/Resources/Locale/ru-RU/exodus/seal/seal-component.ftl b/Resources/Locale/ru-RU/exodus/seal/seal-component.ftl deleted file mode 100644 index 7048dd715bd..00000000000 --- a/Resources/Locale/ru-RU/exodus/seal/seal-component.ftl +++ /dev/null @@ -1,12 +0,0 @@ -seal-component-on-examine-is-sealed = Заблокирован пломбой -seal-comp-access-fail = Недостаточный доступ -seal-comp-user-fail = Несоответствие имени -seal-comp-do-unseal-success = { $entityName } был распечатан -unseal-verb = Распечатать - -## Secret documents - -secret-documents-insert-verb = Поместить ядерные коды -secret-documents-eject-verb = Извлечь ядерные коды -seal-secret-documents-unseal-text = По полученным автоматической системой данным, чрезвычайные приказы безопасности вашей станции были распакованы. Следуйте дальнейшим инструкциям командного состава для обеспечения собственной безопасности. -seal-secret-documents-unseal-title = Система ядерной безопасности diff --git a/Resources/Locale/ru-RU/exodus/seeds/seeds.ftl b/Resources/Locale/ru-RU/exodus/seeds/seeds.ftl deleted file mode 100644 index 589232b2c50..00000000000 --- a/Resources/Locale/ru-RU/exodus/seeds/seeds.ftl +++ /dev/null @@ -1,8 +0,0 @@ -seeds-lilie-name = лилия -seeds-lilie-display-name = лилии -seeds-sunflower-name = подсолнух -seeds-sunflower-display-name = подсолнух -seeds-rose-name = роза -seeds-rose-display-name = роза -seeds-fieldflower-name = полевые цветы -seeds-fieldflower-display-name = полевые цветы diff --git a/Resources/Locale/ru-RU/exodus/tiles/masonry.ftl b/Resources/Locale/ru-RU/exodus/tiles/masonry.ftl deleted file mode 100644 index fb0cd6a220c..00000000000 --- a/Resources/Locale/ru-RU/exodus/tiles/masonry.ftl +++ /dev/null @@ -1,2 +0,0 @@ -tiles-masonry = каменная кладка -tiles-masonry-overgrown = заросшая каменная кладка diff --git a/Resources/Locale/ru-RU/exodus/tiles/tiles.ftl b/Resources/Locale/ru-RU/exodus/tiles/tiles.ftl deleted file mode 100644 index 4d1fc8831a1..00000000000 --- a/Resources/Locale/ru-RU/exodus/tiles/tiles.ftl +++ /dev/null @@ -1,3 +0,0 @@ -tiles-cobblestone = булыжник -tiles-cobblestone-plates = булыжниковые плиты -tiles-marble = мрамор diff --git a/Resources/Locale/ru-RU/exodus/tools/tool-qualities.ftl b/Resources/Locale/ru-RU/exodus/tools/tool-qualities.ftl deleted file mode 100644 index c9a6b8dbe3c..00000000000 --- a/Resources/Locale/ru-RU/exodus/tools/tool-qualities.ftl +++ /dev/null @@ -1,2 +0,0 @@ -tool-quality-axing-name = Демонтаж пола -tool-quality-axing-tool-name = Пожарный топор diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/implants.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/implants.ftl deleted file mode 100644 index 3ba5cb46407..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/implants.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-ActionStimulantsImplant = Ввести стимуляторы в кровь - .desc = Немедленно вводит стимуляторы в кровеносную систему -ent-ActionCombatInjectorImplant = Ввести медикаменты в кровь - .desc = Немедленная доза медикаментов в критических ситуациях diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/types.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/types.ftl deleted file mode 100644 index 0d4b96e4eba..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/actions/types.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ActionMorphGeras = Превратится в Гераса - .desc = Превращает вас в Гераса - уменьшенную версию вас, позволяющую вам двигаться быстрее ценой вашего инвентаря. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/boxes/emergency.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/boxes/emergency.ftl deleted file mode 100644 index b17bc6d99b5..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/boxes/emergency.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-BoxSurvivalMechInjector = { ent-BoxSurvival } - .desc = { ent-BoxSurvival.desc } -ent-BoxSurvivalEngineeringMechInjector = { ent-BoxSurvivalEngineering } - .desc = { ent-BoxSurvivalEngineering.desc } -ent-BoxSurvivalSecurityMechInjector = { ent-BoxSurvivalSecurity } - .desc = { ent-BoxSurvivalSecurity.desc } -ent-BoxSurvivalMedicalMechInjector = { ent-BoxSurvivalMedical } - .desc = { ent-BoxSurvivalMedical.desc } -ent-BoxMimeMechInjector = { ent-BoxMime } - .desc = { ent-BoxMime.desc } -ent-BoxSurvivalSyndicateMechInjector = { ent-BoxSurvivalSyndicate } - .desc = { ent-BoxSurvivalSyndicate.desc } -ent-BoxHugMechInjector = { ent-BoxHug } - .desc = { ent-BoxHug.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/botany.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/botany.ftl deleted file mode 100644 index 418e990c93e..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/botany.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateHydroponicsSeedsFlower = ящик цветочных семян - .desc = Набор любителей красивого. Содержит несколько семян различных цветов. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/engines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/engines.ftl deleted file mode 100644 index 58e7bc567bc..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/catalog/fills/crates/engines.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateEngineeringAASElectronic = ящик электроники АВС - .desc = Ящик для электроники АВС. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/clothing/outerclothing/hardsuits.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/clothing/outerclothing/hardsuits.ftl deleted file mode 100644 index 3d4815a1878..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/clothing/outerclothing/hardsuits.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-ClothingOuterHardsuitRnd = скафандр учёного - .desc = Прочный новенький скафандр. Защитит вас от большей части вашей работы. Не защищает от психического срыва. -ent-ClothingHeadHelmetHardsuitRnd = шлем скафандра учёного - .desc = Выглядит крепко. -ent-ClothingOuterHardsuitSalvageMaximal = { ent-ClothingOuterHardsuitMaxim } - .desc = { ent-ClothingOuterHardsuitMaxim.desc } -ent-ClothingHeadHelmetHardsuitSalvageMaximal = { ent-ClothingHeadHelmetHardsuitMaxim } - .desc = { ent-ClothingHeadHelmetHardsuitMaxim.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/mobs/npcs/slimes.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/mobs/npcs/slimes.ftl deleted file mode 100644 index be11bbd48ea..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/mobs/npcs/slimes.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-MobSlimesGeras = герас - .desc = Герас слайма, не иронично ли имя? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/drinks/drinks.ftl deleted file mode 100644 index 9c5be6a4b3f..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/drinks/drinks.ftl +++ /dev/null @@ -1,3 +0,0 @@ -ent-DrinkBerryIceCreamGlass = { ent-DrinkGlass } - .suffix = Ягодное мороженое - .desc = { ent-DrinkGlass.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/cake.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/cake.ftl deleted file mode 100644 index df51657bd63..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/cake.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-FoodCakeValentineDayFlowerPie = цветочный торт - .desc = Торт который олицетворяет твою любовь. Дерзай, дружище! -ent-FoodCakeValentineDayFlowerPieSlice = кусок цветочного торта - .desc = { ent-FoodCakeValentineDayFlowerPie.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/misc.ftl deleted file mode 100644 index c9ba224ef1b..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/baked/misc.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-FoodBakedValentineDayCookie = сердце слаймолюда - .desc = Великолепная вишнёвая начинка. И при чём тут слаймолюды? -ent-FoodBakedValentineDaySnack = конфета - .desc = Маленькая вкусная конфета. -ent-FoodBakedHanamiDango = ханами данго - .desc = Сладость в форме круглых рисовых клёцок, нанизанных на деревянные шпажки. Ммм, этот повар знает толк! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/meals/meals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/meals/meals.ftl deleted file mode 100644 index 19d5f1b48b2..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/consumable/food/meals/meals.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-FoodMealOnigiriMeat = онигири - .desc = Практически как в родном ОПЗ. -ent-FoodMealOnigiriFish = рыбные онигири - .desc = Практически как в родном ОПЗ. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/bones.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/bones.ftl deleted file mode 100644 index 4a07c126684..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/bones.ftl +++ /dev/null @@ -1,10 +0,0 @@ -ent-BaseDecorativeBone = ребро - .desc = Высушено ветром и временем. Кажется, оно должно быть внутри... -ent-DecorativeOldBone = { ent-BaseDecorativeBone } - .desc = { ent-BaseDecorativeBone.desc } -ent-DecorativeOldBoneAlt1 = { ent-BaseDecorativeBone } - .desc = { ent-BaseDecorativeBone.desc } -ent-DecorativeOldBones = рёбра - .desc = Высушены ветром и временем. Кажется, они должны быть внутри... -ent-DecorativeOldBonesAlt1 = { ent-DecorativeOldBones } - .desc = { ent-DecorativeOldBones.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/pebble.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/pebble.ftl deleted file mode 100644 index 139597f9cb0..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/decoration/misc/pebble.ftl +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/electronics/aas_electronic.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/electronics/aas_electronic.ftl deleted file mode 100644 index 7cc6e92b1fd..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/electronics/aas_electronic.ftl +++ /dev/null @@ -1,3 +0,0 @@ -ent-AASElectronics = микросхема АВС - .desc = Микросхема, используемая в создании АВС. - .suffix = Электричество diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/shock_collar.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/shock_collar.ftl deleted file mode 100644 index d1307f49384..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/devices/shock_collar.ftl +++ /dev/null @@ -1,3 +0,0 @@ -ent-ClothingNeckShockCollar = электрический ошейник - .desc = Электрический ошейник, который бьёт током по сигналу. - .suffix = СамостоятельноНеснимаемый diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/fun/plushie.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/fun/plushie.ftl deleted file mode 100644 index 8ca9fa7cf48..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/fun/plushie.ftl +++ /dev/null @@ -1,14 +0,0 @@ -ent-PlushLokilife = Lokilife - .desc = Маленький комочек со всемогущими силами. Осторожно, не кусается, но делает больно по-другому. -ent-PlushFragoler = Fragoler - .desc = Такое солнышко... -ent-PlushAsler = Askolot - .desc = ЗАБЕРИТЕ У НЕЁ СТИЛУС!!! ЗАБЕРИ...... -ent-Plushloxmat = loxmat - .desc = Маленькая копия большого волкодава. -ent-PlushAtima = Atima - .desc = Он всегда наблюдает за вами. Даже, когда вы не можете наблюдать за ним. -ent-PlushJidor = Jidor - .desc = Вечно уставший и подозрительный ниан со своими страшными секретами, как, например, железка в ней. -ent-PlushieHeart = плюшевое сердце - .desc = Позволяет предложить руку и сердце. Плюшевая рука в комплект не входит. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/flowers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/flowers.ftl deleted file mode 100644 index 814399f8c75..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/flowers.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-FlowerLilie = лилия - .desc = Многие народы считали, что этот цветок олицетворяет изящество, красоту и роскошь. -ent-Sunflower = подсолнух - .desc = Многие народы считали, что этот цветок означает жизнь, радость и процветание, символ гармонии и красоты, символ связи земли и неба -ent-FlowerRose = роза - .desc = Многие народы считали, что этот цветок символизирует триаду Любви, Терпения и Мученичества некой Богоматери -ent-FieldFlower = полевые цветы - .desc = Кошмар аллергиков. Интересно, какой чай из них может сварить Asler? diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/fluff_lights.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/fluff_lights.ftl deleted file mode 100644 index 2e0e4d019af..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/fluff_lights.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ValentineDayLamp = раритетная лампа - .desc = Напоминает о деревенском домике... diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/implanters.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/implanters.ftl deleted file mode 100644 index 3d60dd20af3..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/implanters.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-CombatInjectorImplanter = { ent-BaseImplantOnlyImplanterSyndi } - .desc = { ent-BaseImplantOnlyImplanter.desc } - .suffix = Химический, Боевой инъектор -ent-StimulantsImplanter = { ent-BaseImplantOnlyImplanterSyndi } - .desc = { ent-BaseImplantOnlyImplanterSyndi.desc } - .suffix = Химический, Стимуляторы diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/paper.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/paper.ftl deleted file mode 100644 index 8308d5c142c..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/paper.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-ValentineCard = конверт-валентинка - .desc = Для особого случая... -ent-PaperValentineDay = свиток на особый случай - .desc = Крафт-бумага для вашего особого случая. -ent-PaperValentineCard = валентинка - .desc = Для кого-то особенного... diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/seal.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/seal.ftl deleted file mode 100644 index d9df84eb1c3..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/seal.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-DeactivatedSeal = отключенная пломба - .desc = Пломба, ранее запечатывавшая какой-то объект. Теперь она бесполезна. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/secret_documents.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/secret_documents.ftl deleted file mode 100644 index 1f1432c6e39..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/secret_documents.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-BookSecretDocumentsExodus = { ent-BookSecretDocuments } - .suffix = Exodus - .desc = { ent-BookSecretDocuments.desc } -ent-NuclearCodeRecord = запись кода ядерного устройства diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/subdermal_implants.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/subdermal_implants.ftl deleted file mode 100644 index ef5edeb1ae4..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/subdermal_implants.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-StimulantsImplant = Имплант стимулятора - .desc = Вводит в кровь стимулятор из заранее установленных в имплант капсул -ent-CombatInjectorImplant = Имплант боевого инъектора - .desc = Вводит в кровь медикаменты из заранее установленных в имплант капсул diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/tiles.ftl deleted file mode 100644 index b4d08d706b7..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/misc/tiles.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-FloorTileItemConcreteWOWeather = бетонная плитка - .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemGrayConcreteWOWeather = серая бетонная плитка - .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemOldConcreteWOWeather = старая бетонная плитка - .desc = { ent-FloorTileItemBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/hydroponics/seeds.ftl deleted file mode 100644 index d119240e50c..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/hydroponics/seeds.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-LilieSeeds = пакет семян лилии - .desc = { ent-SeedBase.desc } -ent-SunflowerSeeds = пакет семян подсолнуха - .desc = { ent-SeedBase.desc } -ent-RoseSeeds = пакет семян роз - .desc = { ent-SeedBase.desc } -ent-FieldFlowersSeeds = пакет семян полевых цветов - .desc = { ent-SeedBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/medical/mechanical_injector.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/medical/mechanical_injector.ftl deleted file mode 100644 index 882e25cf1c1..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/specific/medical/mechanical_injector.ftl +++ /dev/null @@ -1,9 +0,0 @@ -ent-MechanicalInjector = механический инъектор - .desc = Специальный инъектор для рас с толстой кожей. Достаточно устрашающий, чтобы ваши пациенты успокоились. Пожалуйста, не запугивайте им экипаж. -mechanical-injector-effect-pain-message = Больно, словно пулевое ранение -# Prefills -ent-PrefilledMechanicalInjector = { ent-MechanicalInjector } - .desc = { ent-MechanicalInjector.desc } -ent-MechanicalInjectorEpinephrine = { ent-MechanicalInjector } - .desc = { ent-MechanicalInjector.desc } - .suffix = Эпинефрин diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/storage/box.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/storage/box.ftl deleted file mode 100644 index 45084017165..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/storage/box.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-ValentineDayGiftBox = подарочная коробка - .desc = Ударопрочен, ни одна почта мира на него не повлияла. -ent-CandyBoxHeart = коробка в форме сердца - .desc = Что же внутри? Шоколад? -ent-CandyBox = коробочка полная сюрпризов - .desc = Всё вкусное внутри. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/bow/bow.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/bow/bow.ftl deleted file mode 100644 index 77e75dec7f6..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/bow/bow.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ValentineDayBow = лук Амура - .desc = Любовь, которая делает больно. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/projectiles/arrows.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/projectiles/arrows.ftl deleted file mode 100644 index a62b0f5d5f1..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/objects/weapons/guns/projectiles/arrows.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ValentineDayArrow = стрела Амура - .desc = Любовь, которая делает больно. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/arcs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/arcs.ftl deleted file mode 100644 index ce24194664e..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/arcs.ftl +++ /dev/null @@ -1,10 +0,0 @@ -ent-BaseDungeonArc = арка старой веры - .desc = Причудливая арка со множественными узорами. Кажется, сделано из кости. Кажется, она не должна тут быть... -ent-DungeonArc = { ent-BaseDungeonArc } - .desc = { ent-BaseDungeonArc.desc } -ent-DungeonArcAlt1 = { ent-BaseDungeonArc } - .desc = { ent-BaseDungeonArc.desc } -ent-DungeonArcAlt2 = { ent-BaseDungeonArc } - .desc = { ent-BaseDungeonArc.desc } -ent-DungeonArcBlockage = завал - .desc = Глухо. Тупик. Стоит искать другую дорогу. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/rocks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/rocks.ftl deleted file mode 100644 index a089ca8db88..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/rocks.ftl +++ /dev/null @@ -1,31 +0,0 @@ - - -ent-SmallBlackRockSolid17 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid18 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid19 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid20 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid21 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid22 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid23 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid24 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid25 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid26 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid27 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid28 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid29 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } -ent-SmallBlackRockSolid30 = { ent-SmallBlackBaseRock } - .desc = { ent-SmallBlackBaseRock.desc } - diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/statues.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/statues.ftl deleted file mode 100644 index a358da590b2..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/decoration/statues.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-DrakeStatue = каменный страж - .desc = Древняя копия могущественного создания. Слишком правдоподобная для простого подражателя. -ent-DrakeStatueOld = древний каменный страж - .desc = Осквернена и изуродована. Смотрит на вас с ненавистью. -ent-ObedientStatue = послушник - .desc = Никто не знает кто он. Может быть, кто-то важный. -ent-AdeptStatue = адепт - .desc = Познавший обратную сторону монеты. Покрыт неприятной липкой субстанцией. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/furniture/potted_plants.ftl deleted file mode 100644 index 40e72b54354..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/furniture/potted_plants.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-PottedValentineDayPlant1 = комнатное растение - .desc = Чудесный кусочек природы, заключённый в вазе. -ent-PottedValentineDayPlant2 = { ent-PottedValentineDayPlant1 } - .desc = { ent-PottedValentineDayPlant1.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/lightning/ground_lightning.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/lightning/ground_lightning.ftl deleted file mode 100644 index e1ceb30ad34..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/lightning/ground_lightning.ftl +++ /dev/null @@ -1,6 +0,0 @@ -ent-ElmosFire = огни Святого Эльма - .desc = После стольких лет... - .suffix = Не горящий -ent-ElmosFireLighten = { ent-ElmosFire } - .desc = { ent-ElmosFire.desc } - .suffix = Горящий diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/piping/atmospherics/special.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/piping/atmospherics/special.ftl deleted file mode 100644 index b2a96e24406..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/piping/atmospherics/special.ftl +++ /dev/null @@ -1,4 +0,0 @@ -ent-AtmosDeviceFanFrame = { ent-AtmosDeviceFanTiny } - .desc = { ent-AtmosDeviceFanTiny.desc } -ent-AtmosDeviceFanFrameWire = { ent-AtmosDeviceFanTiny } - .desc = { ent-AtmosDeviceFanTiny.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/storage/closets/lockers/lockers.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/storage/closets/lockers/lockers.ftl deleted file mode 100644 index 7e06e39d89b..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/structures/storage/closets/lockers/lockers.ftl +++ /dev/null @@ -1,9 +0,0 @@ -ent-LockerScientistResprite = шкаф учёного - .suffix = Респрайт - .desc = { ent-LockerScientist.desc } -ent-LockerScienceSuitFilledResprite = шкаф учёного - .suffix = Заполненный, Скафандр, Респрайт - .desc = { ent-LockerScientist.desc } -ent-LockerScienceSuitFilled = шкаф учёного - .suffix = Заполненный, Скафандр - .desc = { ent-LockerScientist.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/tiles/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/tiles/tiles.ftl deleted file mode 100644 index f0f64a1c5a1..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/entities/tiles/tiles.ftl +++ /dev/null @@ -1,9 +0,0 @@ -tiles-concrete-tile-weather = Внутренний бетонный пол -tiles-concrete-slab-weather = Внутренняя бетонная плита -tiles-concrete-smooth-weather = Внутренний гладкий бетонный пол -tiles-gray-concrete-tile-weather = Внутренний серый бетонный пол -tiles-gray-concrete-slab-weather = Внутренняя серая бетонная плита -tiles-gray-concrete-smooth-weather = Внутренний гладкий серый бетонный пол -tiles-old-concrete-tile-weather = Внутренний старый бетонный пол -tiles-old-concrete-slab-weather = Внутренняя старая бетонная плита -tiles-old-concrete-smooth-weather = Внутренний старый гладкий бетонный пол diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/flavors.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/flavors.ftl deleted file mode 100644 index bef40f5d8a4..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/flavors.ftl +++ /dev/null @@ -1,4 +0,0 @@ -flavor-complex-sakura = как воспоминания о цветении сакуры -flavor-complex-anime = как аниме -flavor-complex-flower-madness = как цветочное безумие -flavor-complex-berry-creampie = как кремовый ягодный пирог diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/floor_trap.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/floor_trap.ftl deleted file mode 100644 index 05be9f4f987..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/floor_trap.ftl +++ /dev/null @@ -1,12 +0,0 @@ -ent-FloorTrapSpikes = возможно это может быть опасно... - .desc = Ты же не будешь пробовать это своими ногами? - .suffix = Ловушка, Шипы -ent-FloorTrapSpikesActivated = ловушка с шипами - .desc = { ent-FloorTrapSpikes.desc } - .suffix = Ловушка, Шипы, Активированный -ent-FloorTrapSpikesPoison = { ent-FloorTrapSpikes } - .desc = { ent-FloorTrapSpikes.desc } - .suffix = Ловушка, Шипы, Ядовитый -ent-FloorTrapSpikesPoisonActivated = { ent-FloorTrapSpikesActivated } - .desc = { ent-FloorTrapSpikesActivated.desc } - .suffix = Ловушка, Шипы, Ядовитый, Активированный diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/store/uplink-catalog.ftl deleted file mode 100644 index 403b105e128..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/exodus/store/uplink-catalog.ftl +++ /dev/null @@ -1,4 +0,0 @@ -uplink-stimulants-implant-name = { ent-StimulantsImplant } -uplink-stimulants-implant-desc = Продвинутый имплант Cybersun, содержащий три капсулы первокласного стимулирующего вещества, моментально вводимые в кровь по желанию носителя. -uplink-combat-injector-implant-name = { ent-CombatInjectorImplant } -uplink-combat-injector-implant-desc = Продвинутый имплант Cybersun, содержащий три капсулы по 25 ед. омнизина и 5 ед. транексамовой кислоты, моментально вводимые в кровь по желанию носителя. diff --git a/Resources/Maps/Exodus/Shuttles/mining.yml b/Resources/Maps/Exodus/Shuttles/mining.yml deleted file mode 100644 index 6f60d69c71c..00000000000 --- a/Resources/Maps/Exodus/Shuttles/mining.yml +++ /dev/null @@ -1,1923 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 40: FloorDark - 140: FloorSteel - 147: FloorSteelDirty - 155: FloorTechMaint - 159: FloorWhite - 164: FloorWhiteMono - 190: Lattice - 191: Plating -entities: -- proto: "" - entities: - - uid: 2 - components: - - type: MetaData - name: NT-Salvage-4929RT - - type: Transform - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: jAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAvgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvgAAAAAAvwAAAAAAvwAAAAAAKAAAAAAAvwAAAAAAvwAAAAAAvgAAAAAAvgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAApAAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmwAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAnwAAAAAAnwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmwAAAAAAKAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAKAAAAAAAnwAAAAAAnwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAjAAAAAAAvwAAAAAAjAAAAAAAvwAAAAAAnwAAAAAAnwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvgAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvgAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAmwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvwAAAAAAvwAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 117: 6,1 - 118: 5,2 - 119: 4,3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 120: 0,1 - 121: 1,2 - 122: 2,3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 115: 4,-4 - 116: 6,0 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 113: 2,-4 - 114: 0,0 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNe - decals: - 125: 4,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerNw - decals: - 123: 1,1 - 124: 2,2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 229: 2,0 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 105: 4,-1 - 250: 4,-3 - 251: 4,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 108: 3,3 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 106: 5,0 - 107: 1,0 - 135: 3,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 136: 2,-2 - 137: 2,-1 - 216: 2,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe - decals: - 186: 7,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerNw - decals: - 187: 6,-2 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSe - decals: - 189: 7,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw - decals: - 188: 6,-4 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineE - decals: - 184: 7,-3 - - node: - color: '#FFFFFFFF' - id: BrickTileWhiteLineW - decals: - 185: 6,-3 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 144: 2,-1 - 145: 5,1 - 194: -1,-2 - 195: 0,-4 - 196: 6,-3 - 197: 6,-5 - 198: 7,-4 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 140: 4,-4 - 202: 0,-3 - 203: 6,-4 - 204: 7,-2 - 205: 6,-5 - 233: 6,0 - 241: 2,3 - 242: 3,3 - 243: 4,3 - - node: - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 162: 6,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 141: 3,1 - 148: 2,-4 - 206: 7,-3 - 207: 7,-4 - 208: 6,-2 - 210: -1,-3 - 232: 2,0 - 235: 2,-2 - 236: 3,-3 - 237: 5,0 - 245: 4,3 - 246: 6,1 - 254: 4,-2 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 163: 6,-5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 209: -1,-3 - 212: 5,-3 - 224: 2,-4 - 225: 3,-3 - 226: 3,-1 - 231: 2,0 - 234: 3,-3 - 238: 5,0 - 244: 3,3 - 253: 4,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 139: 2,-1 - 146: 4,2 - 147: 4,-1 - 199: -1,-3 - 200: 0,-3 - 201: -1,-2 - 211: 1,-3 - 217: 2,-3 - 218: 3,-1 - 219: 3,0 - 220: 1,1 - 221: 4,1 - 222: 2,2 - 223: 3,-4 - 230: 1,0 - 239: 3,2 - 240: 1,2 - 252: 4,-3 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 102: 3,3 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 78: 1,0 - 79: 5,0 - 134: 3,-4 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 132: 2,-2 - 133: 2,-1 - 215: 2,-3 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 85: 4,-1 - 247: 4,-3 - 249: 4,-2 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 172: 6,-4 - 173: 6,-3 - 174: 6,-2 - 175: 7,-2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 90: 2,2 - 91: 1,1 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 168: 7,-4 - 169: 7,-3 - 170: 7,-2 - 171: 6,-4 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 228: 2,0 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale270 - decals: - 180: 7,-4 - 181: 6,-4 - 182: 6,-3 - 183: 6,-2 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 89: 4,2 - - node: - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 - decals: - 176: 6,-2 - 177: 7,-2 - 178: 7,-3 - 179: 7,-4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 92: 0,1 - 93: 1,2 - 94: 2,3 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 98: 6,0 - 99: 4,-4 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 100: 2,-4 - 101: 0,0 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 95: 4,3 - 96: 5,2 - 97: 6,1 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 193: -1,-2 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 190: 0,-4 - - node: - color: '#EFB34196' - id: WarnFullGreyscale - decals: - 128: 0,-5 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 192: 0,-3 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 191: -1,-3 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 52991 - 0,-1: - 0: 52733 - 1,0: - 0: 4983 - 1,-1: - 0: 7677 - 2,0: - 1: 1 - 0,-2: - 1: 16 - 0: 40064 - -1,-2: - 1: 1152 - 0: 32768 - -1,-1: - 0: 2184 - 1,-2: - 0: 16640 - 1: 192 - 2,-2: - 1: 256 - 2,-1: - 0: 1 - -1,0: - 1: 4 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: SalvageShuttle -- proto: AirAlarm - entities: - - uid: 231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 2 - - type: DeviceList - devices: - - 228 - - 229 - - 230 - - 107 - - 103 - - 102 - - 106 -- proto: AirCanister - entities: - - uid: 3 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 -- proto: AirlockEngineering - entities: - - uid: 4 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 -- proto: AirlockExternalCargoLocked - entities: - - uid: 5 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 2 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 6 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 -- proto: AirlockMedical - entities: - - uid: 7 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 -- proto: APCBasic - entities: - - uid: 8 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 2 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 9 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 -- proto: BodyBagFolded - entities: - - uid: 10 - components: - - type: Transform - pos: 7.2303333,-1.2890701 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 11 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - - uid: 12 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 13 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - uid: 14 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 2 - - uid: 15 - components: - - type: Transform - pos: 1.5,1.5 - parent: 2 - - uid: 16 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 17 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 18 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 19 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 20 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 21 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 22 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 23 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 24 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 25 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 26 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 27 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 28 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 29 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - uid: 30 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 31 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 32 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 33 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 34 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 35 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 2 - - uid: 36 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 37 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 - - uid: 38 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 39 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 40 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: 6.5,1.5 - parent: 2 - - uid: 42 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 43 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 44 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 45 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: CableApcStack - entities: - - uid: 46 - components: - - type: Transform - pos: 2.525446,-5.226388 - parent: 2 -- proto: CableHV - entities: - - uid: 47 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 48 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 49 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 50 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 51 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 52 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 -- proto: CableMV - entities: - - uid: 53 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 54 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 55 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - uid: 56 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 2 - - uid: 57 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 2 - - uid: 58 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: CableTerminal - entities: - - uid: 59 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 2 -- proto: Catwalk - entities: - - uid: 60 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 - - uid: 61 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 62 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 63 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 64 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 2 - - uid: 65 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 66 - components: - - type: Transform - pos: 2.5138454,-5.330555 - parent: 2 -- proto: ComputerBroken - entities: - - uid: 67 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 -- proto: ComputerRadar - entities: - - uid: 68 - components: - - type: Transform - pos: 2.5,3.5 - parent: 2 -- proto: ComputerShuttle - entities: - - uid: 69 - components: - - type: Transform - pos: 3.5,3.5 - parent: 2 -- proto: CounterWoodFrame - entities: - - uid: 70 - components: - - type: Transform - pos: 6.5,1.5 - parent: 2 - - uid: 71 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 72 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 73 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 -- proto: Firelock - entities: - - uid: 228 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - uid: 229 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - uid: 230 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 -- proto: GasPassiveVent - entities: - - uid: 74 - components: - - type: Transform - pos: -1.5,0.5 - parent: 2 -- proto: GasPipeBend - entities: - - uid: 75 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 2 - - uid: 76 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeFourway - entities: - - uid: 77 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeStraight - entities: - - uid: 78 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 2 - - uid: 79 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 80 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 81 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 82 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 83 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 84 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 85 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 86 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 87 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 88 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 89 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 90 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 91 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 92 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 2 - - uid: 93 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 2 - - uid: 94 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 2 -- proto: GasPipeTJunction - entities: - - uid: 95 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 96 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 97 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 98 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 2 -- proto: GasPressurePump - entities: - - uid: 99 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentPump - entities: - - uid: 101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 107 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 231 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GeneratorBasic15kW - entities: - - uid: 108 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - type: PowerSupplier - supplyRate: 10000 -- proto: Girder - entities: - - uid: 109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 2 - - uid: 110 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 -- proto: GravityGeneratorMini - entities: - - uid: 111 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 -- proto: Grille - entities: - - uid: 112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 2 - - uid: 113 - components: - - type: Transform - pos: 1.5,4.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 115 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 117 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 118 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 119 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 120 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 -- proto: Gyroscope - entities: - - uid: 121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 2 -- proto: LightTubeBroken - entities: - - uid: 122 - components: - - type: Transform - pos: 6.346403,1.3325148 - parent: 2 - - uid: 123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.585987,-3.4904022 - parent: 2 -- proto: Mattress - entities: - - uid: 124 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 125 - components: - - type: Transform - pos: 6.7439957,-1.1618128 - parent: 2 -- proto: MedkitBurn - entities: - - uid: 126 - components: - - type: Transform - pos: 6.325388,-1.371624 - parent: 2 -- proto: MedkitO2 - entities: - - uid: 127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.900276,-2.236208 - parent: 2 - - type: Storage - storedItems: - 129: - position: 0,0 - _rotation: South - 128: - position: 1,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 129 - - 128 -- proto: MiningWindow - entities: - - uid: 130 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 131 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 132 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 133 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - uid: 134 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 135 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 136 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 2 - - uid: 138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 2 -- proto: Morgue - entities: - - uid: 139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 2 -- proto: Ointment - entities: - - uid: 140 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.7199154,-2.268237 - parent: 2 -- proto: PaperScrap - entities: - - uid: 141 - components: - - type: Transform - pos: 2.575388,2.5070014 - parent: 2 -- proto: PillDexalin - entities: - - uid: 128 - components: - - type: Transform - parent: 127 - - type: Physics - canCollide: False -- proto: PowerCellMediumPrinted - entities: - - uid: 142 - components: - - type: Transform - pos: 0.31020927,1.0099473 - parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 -- proto: Poweredlight - entities: - - uid: 144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - uid: 146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 2 - - uid: 147 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 -- proto: PoweredlightEmpty - entities: - - uid: 148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 2 - - uid: 149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 2 - - uid: 150 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 2 -- proto: Rack - entities: - - uid: 152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 2 - - uid: 153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 2 - - uid: 154 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 2 -- proto: RadioHandheld - entities: - - uid: 155 - components: - - type: Transform - pos: 6.733553,0.87117386 - parent: 2 -- proto: RandomPosterAny - entities: - - uid: 156 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 157 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 -- proto: RandomSpawner - entities: - - uid: 158 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 159 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 160 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 161 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 162 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 -- proto: RandomSpawner100 - entities: - - uid: 163 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 164 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 -- proto: ScrapMedkit - entities: - - uid: 165 - components: - - type: Transform - pos: 7.0636654,-2.924487 - parent: 2 -- proto: ShardGlass - entities: - - uid: 166 - components: - - type: Transform - pos: 7.6574154,-1.4557371 - parent: 2 -- proto: SheetSteel1 - entities: - - uid: 167 - components: - - type: Transform - pos: 5.5369797,1.2824755 - parent: 2 - - uid: 168 - components: - - type: Transform - pos: 3.7713547,-1.8737745 - parent: 2 - - uid: 169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5213547,1.5949755 - parent: 2 -- proto: SheetSteel10 - entities: - - uid: 170 - components: - - type: Transform - pos: 1.4725151,2.586051 - parent: 2 -- proto: SignEngineering - entities: - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 173 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 -- proto: SubstationWallBasic - entities: - - uid: 174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 2 -- proto: Syringe - entities: - - uid: 129 - components: - - type: Transform - parent: 127 - - type: Physics - canCollide: False -- proto: Table - entities: - - uid: 175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 2 - - uid: 176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - uid: 177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 2 -- proto: TableGlass - entities: - - uid: 178 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 -- proto: Thruster - entities: - - uid: 179 - components: - - type: Transform - pos: -1.5,0.5 - parent: 2 - - uid: 180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-6.5 - parent: 2 - - uid: 181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 2 - - uid: 182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 2 - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 184 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 -- proto: WallReinforced - entities: - - uid: 185 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 189 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 2 - - uid: 190 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 191 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 192 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - uid: 193 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 194 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 - - uid: 196 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - - uid: 197 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 2 - - uid: 198 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 199 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 2 - - uid: 200 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 201 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 202 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 203 - components: - - type: Transform - pos: 7.5,1.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 205 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 206 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 207 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 208 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 209 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 -- proto: WallReinforcedRust - entities: - - uid: 210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - - uid: 211 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 2 - - uid: 212 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 - - uid: 213 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 214 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 2 - - uid: 215 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 - - uid: 216 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - - uid: 217 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 219 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 2 - - uid: 220 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 221 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 - - uid: 222 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 - - uid: 223 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 2 - - uid: 224 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 225 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - uid: 226 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 -- proto: Wrench - entities: - - uid: 227 - components: - - type: Transform - pos: 5.5529156,2.6732054 - parent: 2 -... diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 7068b8f7508..00f912e8124 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -343,7 +343,6 @@ - id: CargoRequestSecurityComputerCircuitboard - id: WeaponDisabler - id: WantedListCartridge - - id: BookSecretDocuments # Exodus-NukeSecretDocuments - id: DrinkHosFlask - id: ClothingOuterCoatHoSGreatcoat # RPSX Greatcoat-Return diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index a0fb45544a4..2f2e7a2c1a1 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -44,10 +44,6 @@ - id: RemoteSignaller amount: 2 - id: Binoculars - # Exodus-ShockCollar-Start - - id: ClothingNeckShockCollar - amount: 2 - # Exodus-ShockCollar-End - type: entityTable id: FillLockerWardenHarduit diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index b8a7a76e5eb..b1b80a6025d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -11,6 +11,5 @@ ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 ReusableMedipen: 1 - MechanicalInjector: 3 # Exodus-ThickSyringes contrabandInventory: FoodApple: 1 diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml index 33b75ed9a7b..e22992dcfbb 100644 --- a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml @@ -106,8 +106,6 @@ # understands: # - GalacticCommon # - Canilunzt - - type: TemperatureProtection # Exodus-MRP: Wool is a very good thermal insulator - coolingCoefficient: 0.1 - type: Butcherable spawned: - id: FoodMeatVulp diff --git a/Resources/Prototypes/Corvax/Maps/split.yml b/Resources/Prototypes/Corvax/Maps/split.yml deleted file mode 100644 index 849fea3c035..00000000000 --- a/Resources/Prototypes/Corvax/Maps/split.yml +++ /dev/null @@ -1,172 +0,0 @@ -- type: gameMap - id: CorvaxSplit - mapName: 'Split Stations' - mapPath: /Maps/corvax_split.yml - minPlayers: 55 - stations: - Mayhen: - stationProto: NanotrasenStationNoArrivals - components: - - type: StationNameSetup - mapNameTemplate: '{0} Мэйхен {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'MT' - - type: GridSpawn - groups: - trade: !type:GridSpawnGroup - addComponents: - - type: ProtectedGrid - - type: TradeStation - paths: - - /Maps/Shuttles/trading_mayhen.yml - - type: StationCargoShuttle - path: /Maps/Shuttles/cargo_mayhen.yml - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/corvax_emergency.yml - - type: StationJobs - availableJobs: - # service - HeadOfPersonnel: [ 1, 1 ] - Passenger: [ -1, -1 ] - ServiceWorker: [ 1, 2 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Librarian: [ 1, 1 ] - Musician: [ 1, 1 ] - Reporter: [ 1, 1 ] - Zookeeper: [ 1, 1 ] - # command - Captain: [ 1, 1 ] - IAA: [ 1, 1 ] - # engineering - AtmosphericTechnician: [ 1, 1 ] - # medical - ChiefMedicalOfficer: [ 1, 1 ] - Paramedic: [ 2, 2 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 3, 4 ] - MedicalIntern: [ 2, 3 ] - Psychologist: [ 1, 1 ] - # science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 3 ] - # security - Warden: [ 1, 1 ] - SecurityOfficer: [ 2, 3 ] - # cargo - SalvageSpecialist: [ 1, 1 ] - CargoTechnician: [ 3, 3 ] - Payback: - stationProto: NanotrasenStationNoArrivals - components: - - type: StationNameSetup - mapNameTemplate: '{0} Пэйбэк {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'MT' - - type: GridSpawn - groups: - trade: !type:GridSpawnGroup - addComponents: - - type: ProtectedGrid - - type: TradeStation - paths: - - /Maps/Shuttles/trading_payback.yml - - type: StationCargoShuttle - path: /Maps/Shuttles/cargo_payback.yml - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/corvax_emergency.yml - - type: StationJobs - availableJobs: - # service - HeadOfPersonnel: [ 1, 1 ] - Passenger: [ -1, -1 ] - ServiceWorker: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 1, 1 ] - Chef: [ 1, 1 ] - Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Musician: [ 1, 1 ] - # command - Captain: [ 1, 1 ] - IAA: [ 1, 1 ] - # engineering - AtmosphericTechnician: [ 1, 1 ] - StationEngineer: [ 2, 2 ] - # medical - Chemist: [ 1, 1 ] - MedicalDoctor: [ 2, 2 ] - # security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - Detective: [ 1, 1 ] - SecurityPilot: [ 2, 2] - SecurityOfficer: [ 3, 3 ] - SecurityCadet: [ 2, 3 ] - # cargo - SalvageSpecialist: [ 1, 1 ] - CargoTechnician: [ 2, 3 ] - Lumber: - stationProto: NanotrasenStationNoArrivals - components: - - type: StationNameSetup - mapNameTemplate: '{0} Ламбер {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'MT' - - type: GridSpawn - groups: - trade: !type:GridSpawnGroup - addComponents: - - type: ProtectedGrid - - type: TradeStation - paths: - - /Maps/Shuttles/trading_outpost.yml - mining: !type:GridSpawnGroup - paths: - - /Maps/Exodus/Shuttles/mining.yml - - type: StationCargoShuttle - path: /Maps/Shuttles/cargo.yml - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/corvax_emergency.yml - - type: StationJobs - availableJobs: - # service - HeadOfPersonnel: [ 1, 1 ] - Passenger: [ -1, -1 ] - ServiceWorker: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 1, 1 ] - Chef: [ 1, 1 ] - Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] - Mime: [ 1, 1 ] - Librarian: [ 1, 1 ] - Musician: [ 1, 1 ] - # command - Captain: [ 1, 1 ] - IAA: [ 1, 1 ] - # engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 3 ] - StationEngineer: [ 2, 3 ] - TechnicalAssistant: [ 2, 2 ] - Borg: [ 1, 1 ] - # medical - Chemist: [ 1, 1 ] - MedicalDoctor: [ 2, 2 ] - # security - Warden: [ 1, 1 ] - SecurityOfficer: [ 2, 2 ] - # cargo - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 4 ] diff --git a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Enemies/meme.yml b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Enemies/meme.yml index 803280e4c2f..95c52f56a77 100644 --- a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Enemies/meme.yml +++ b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Enemies/meme.yml @@ -62,7 +62,7 @@ 0: Alive 250: Dead - type: Stamina - critThreshold: 200 # Exodus - Stamina Refactor + critThreshold: 200 - type: Bloodstream bloodReagent: FluorosulfuricAcid - type: MeleeWeapon diff --git a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Friendly/capibara.yml b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Friendly/capibara.yml index 9b69e86ff54..9744cfa0dcb 100644 --- a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Friendly/capibara.yml +++ b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Friendly/capibara.yml @@ -46,7 +46,7 @@ 0: Alive 50: Critical 100: Dead - - type: Stamina # Exodus - Stamina Refactor + - type: Stamina - type: Appearance - type: Butcherable spawned: diff --git a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Patron/Mobs/muhtar_patron.yml b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Patron/Mobs/muhtar_patron.yml index 8f51db0b956..20cbfc2ca1b 100644 --- a/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Patron/Mobs/muhtar_patron.yml +++ b/Resources/Prototypes/DarkStation/MainGame/Entities/Mobs/Patron/Mobs/muhtar_patron.yml @@ -54,7 +54,7 @@ types: Piercing: 15 - type: Stamina - critThreshold: 100 # Exodus - Stamina Refactor + critThreshold: 100 - type: Appearance - type: Butcherable spawned: diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 3d2208452bc..8e891c0f950 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -52,10 +52,6 @@ shader: unshaded - type: PointLight color: "#adffe6" - # Exodus-Engineering-Flashligt-Start - radius: 5 - energy: 3 - # Exodus-Engineering-Flashligt-End - type: PressureProtection highPressureMultiplier: 0.08 lowPressureMultiplier: 1000 @@ -81,11 +77,6 @@ - type: Clothing sprite: Clothing/Head/Hardsuits/engineering.rsi - type: PointLight - # Exodus-Engineering-Flashligt-Start - color: "#dad871" - radius: 5 - energy: 3 - # Exodus-Engineering-Flashligt-End - type: PressureProtection highPressureMultiplier: 0.1 lowPressureMultiplier: 1000 @@ -356,11 +347,6 @@ - type: Clothing sprite: Clothing/Head/Hardsuits/engineering-white.rsi - type: PointLight # Corvax-Resprite - # Exodus-Engineering-Flashligt-Start - color: "#dad871" - radius: 7 - energy: 3 - # Exodus-Engineering-Flashligt-End - type: PressureProtection highPressureMultiplier: 0.08 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index c3f0c07e3a6..ebf304557e0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -15,7 +15,6 @@ parent: [ClothingShoesBaseButcherable, ClothingSlotBase] id: ClothingShoesClownBase components: - - type: WaddleWhenWorn # Exodus-ClownWaddling - type: ItemSlots slots: item: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 207a3cb27d2..0e2b54239e0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1057,7 +1057,6 @@ solution: wool requiresSpecialDigestion: true # Wooly prevents eating wool deleting the goat so its fine - requireDead: false - type: FlavorProfile flavors: - fiber @@ -1783,7 +1782,6 @@ Dead: Base: splat-0 - type: Food - requireDead: false # Exodus-EatTheMice - type: FlavorProfile flavors: - meaty @@ -1811,7 +1809,7 @@ food: reagents: - ReagentId: UncookedAnimalProteins - Quantity: 6 # Exodus-MRP + Quantity: 3 - type: Butcherable spawned: - id: FoodMeatRat @@ -3148,7 +3146,7 @@ factions: - Syndicate - type: Access - tags: + tags: - NuclearOperative - SyndicateAgent - type: MeleeWeapon @@ -3440,7 +3438,6 @@ Dead: Base: splat-0 - type: Food - requireDead: false # Exodus-EatTheMice - type: FlavorProfile flavors: - meaty @@ -3453,9 +3450,9 @@ food: reagents: - ReagentId: Nutriment - Quantity: 2.5 # Exodus-MRP + Quantity: 10 - ReagentId: Blood - Quantity: 2.5 # Exodus-MRP + Quantity: 55 - ReagentId: Fat Quantity: 5 - type: Butcherable diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index 2b872d3f55c..2419bbcd3ca 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -104,7 +104,6 @@ actionPrototype: DionaGibAction allowedStates: - Dead - - type: NoSlip # Exodus-MRP - type: Inventory templateId: diona femaleDisplacements: diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index a94b289e987..421e6002f64 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -13,7 +13,6 @@ - HeadSide undergarmentBottom: UndergarmentBottomBoxersReptilian - type: Hunger - baseDecayRate: 0.0333333333 # Exodus-ReptilianLore - type: Puller needsHands: false - type: Thirst @@ -32,7 +31,7 @@ - type: Speech speechSounds: Lizard speechVerb: Reptilian - allowedEmotes: ['Thump', 'Growl', 'Rumble', 'Sneeze'] # Exodus-EmotesSounds | Add growl and rumble + allowedEmotes: ['Thump'] - type: TypingIndicator proto: lizard - type: Vocal @@ -55,72 +54,21 @@ Slash: 5 - type: Temperature heatDamageThreshold: 400 - coldDamageThreshold: 273 # Exodus-ReptilianLore + coldDamageThreshold: 285 currentTemperature: 310.15 specificHeat: 42 coldDamage: types: - Cold: 0.1 #per second, scales with temperature & other constants + Cold : 0.1 #per second, scales with temperature & other constants heatDamage: types: - Heat: 1.5 #per second, scales with temperature & other constants + Heat : 1.5 #per second, scales with temperature & other constants - type: TemperatureSpeed thresholds: - 301: 0.8 - 295: 0.6 - 285: 0.4 + 301: 0.9 + 295: 0.8 + 285: 0.7 - type: Wagging - # Exodus-ThickSyringes-Start - # Exodus-ReptilianLore-Start | Zessul Blood heals reptilians better - - type: Bloodstream - bloodReagent: ZessulBlood - - type: PassiveDamage - allowedStates: - - Alive - damageCap: 30 - damage: - types: - Heat: -0.4 - groups: - Brute: -0.4 - - type: MobThresholds - thresholds: - 0: Alive - 120: Critical - 200: Dead - # Exodus-ReptilianLore | Drawsiness - - type: PassiveEffects - effects: - - !type:Emote - conditions: - - !type:Temperature - max: 283 - emote: Yawn - showInChat: true - probability: 0.2 - - !type:GenericStatusEffect - conditions: - - !type:Temperature - max: 283 - key: Drowsiness - component: Drowsiness - time: 4 - type: Add - refresh: false - # Exodus-ReptilianLore-End - - type: InjectableSolution - solution: chemicals - whitelist: - tags: - - ThickSyringe - - type: Tag - tags: - - ThickSkin - - CanPilot - - FootstepSound - - DoorBumpOpener - - AnomalyHost - # Exodus-ThickSyringes-End - type: Inventory speciesId: reptilian femaleDisplacements: diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 5ea8de04f06..880e66e4f04 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -13,7 +13,6 @@ prototype: Slime requiredLegs: 2 # they like eat it idk lol - - type: Geras # Exodus-Geras - type: Storage clickInsert: false grid: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index cf5caa917a6..27933f48e26 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -2343,7 +2343,7 @@ - ReagentId: Vitamin Quantity: 4 - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/blueberry.rsi # Exodus-Resprite + sprite: Objects/Specific/Hydroponics/berries.rsi - type: Item heldPrefix: produce - type: Produce diff --git a/Resources/Prototypes/Entities/Objects/Decoration/pebble.yml b/Resources/Prototypes/Entities/Objects/Decoration/pebble.yml deleted file mode 100644 index 2049d17830c..00000000000 --- a/Resources/Prototypes/Entities/Objects/Decoration/pebble.yml +++ /dev/null @@ -1,304 +0,0 @@ -- type: entity - parent: BaseItem - id: BasePebble - name: peeble - abstract: true - components: - - type: Sprite - sprite: Exodus/Objects/Decoration/Pebble/pebble.rsi - - type: Item - sprite: Exodus/Objects/Decoration/Pebble/pebble.rsi - size: Tiny - - type: PhysicalComposition - - type: DamageOtherOnHit - damage: - types: - Blunt: 5 - -- type: entity - parent: BasePebble - id: BaseBlackPebble - name: black peeble - abstract: true - components: - - type: Sprite - sprite: Exodus/Objects/Decoration/Pebble/blackpebble.rsi - - type: Item - sprite: Exodus/Objects/Decoration/Pebble/blackpebble.rsi - size: Tiny - - -#region Black -- type: entity - parent: BaseBlackPebble - id: BlackPebble01 - components: - - type: Sprite - state: blackpebble01 - - type: Item - heldPrefix: blackpebble01 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble02 - components: - - type: Sprite - state: blackpebble02 - - type: Item - heldPrefix: blackpebble02 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble03 - components: - - type: Sprite - state: blackpebble03 - - type: Item - heldPrefix: blackpebble03 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble04 - components: - - type: Sprite - state: blackpebble04 - - type: Item - heldPrefix: blackpebble04 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble05 - components: - - type: Sprite - state: blackpebble05 - - type: Item - heldPrefix: blackpebble05 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble06 - components: - - type: Sprite - state: blackpebble06 - - type: Item - heldPrefix: blackpebble06 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble07 - components: - - type: Sprite - state: blackpebble07 - - type: Item - heldPrefix: blackpebble07 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble08 - components: - - type: Sprite - state: blackpebble08 - - type: Item - heldPrefix: blackpebble08 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble09 - components: - - type: Sprite - state: blackpebble09 - - type: Item - heldPrefix: blackpebble09 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble10 - components: - - type: Sprite - state: blackpebble10 - - type: Item - heldPrefix: blackpebble10 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble11 - components: - - type: Sprite - state: blackpebble10 - - type: Item - heldPrefix: blackpebble11 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble12 - components: - - type: Sprite - state: blackpebble12 - - type: Item - heldPrefix: blackpebble12 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble13 - components: - - type: Sprite - state: blackpebble13 - - type: Item - heldPrefix: blackpebble13 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble14 - components: - - type: Sprite - state: blackpebble14 - - type: Item - heldPrefix: blackpebble14 - -- type: entity - parent: BaseBlackPebble - id: BlackPebble15 - components: - - type: Sprite - state: blackpebble15 - - type: Item - heldPrefix: blackpebble15 -#endregion - - -#region White -- type: entity - parent: BasePebble - id: Pebble01 - components: - - type: Sprite - state: pebble01 - - type: Item - heldPrefix: pebble01 - -- type: entity - parent: BasePebble - id: Pebble02 - components: - - type: Sprite - state: pebble02 - - type: Item - heldPrefix: pebble02 - -- type: entity - parent: BasePebble - id: Pebble03 - components: - - type: Sprite - state: pebble03 - - type: Item - heldPrefix: pebble03 - -- type: entity - parent: BasePebble - id: Pebble04 - components: - - type: Sprite - state: pebble04 - - type: Item - heldPrefix: pebble04 - -- type: entity - parent: BasePebble - id: Pebble05 - components: - - type: Sprite - state: pebble05 - - type: Item - heldPrefix: pebble05 - -- type: entity - parent: BasePebble - id: Pebble06 - components: - - type: Sprite - state: pebble06 - - type: Item - heldPrefix: pebble06 - -- type: entity - parent: BasePebble - id: Pebble07 - components: - - type: Sprite - state: pebble07 - - type: Item - heldPrefix: pebble07 - -- type: entity - parent: BasePebble - id: Pebble08 - components: - - type: Sprite - state: pebble08 - - type: Item - heldPrefix: pebble08 - -- type: entity - parent: BasePebble - id: Pebble09 - components: - - type: Sprite - state: pebble09 - - type: Item - heldPrefix: pebble09 - -- type: entity - parent: BasePebble - id: Pebble10 - components: - - type: Sprite - state: pebble10 - - type: Item - heldPrefix: pebble10 - -- type: entity - parent: BasePebble - id: Pebble11 - components: - - type: Sprite - state: pebble10 - - type: Item - heldPrefix: pebble11 - -- type: entity - parent: BasePebble - id: Pebble12 - components: - - type: Sprite - state: pebble12 - - type: Item - heldPrefix: pebble12 - -- type: entity - parent: BasePebble - id: Pebble13 - components: - - type: Sprite - state: pebble13 - - type: Item - heldPrefix: pebble13 - -- type: entity - parent: BasePebble - id: Pebble14 - components: - - type: Sprite - state: pebble14 - - type: Item - heldPrefix: pebble14 - -- type: entity - parent: BasePebble - id: Pebble15 - components: - - type: Sprite - state: pebble15 - - type: Item - heldPrefix: pebble15 -#endregion diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 97c63287d85..1777d8675c7 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -649,7 +649,7 @@ - type: Seed seedId: berries - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/blueberry.rsi # Exodus-Resprite + sprite: Objects/Specific/Hydroponics/berries.rsi - type: entity parent: SeedBase diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 51d07d7f366..bd8e78dd9ab 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -72,12 +72,6 @@ maxFillLevels: 4 fillBaseName: hypo_fill solutionName: hypospray - # Exodus-ThickSyringe-Start | Needed for balance - - type: Tag - tags: - - Syringe - - ThickSyringe - # Exodus-ThickSyringe-End - type: entity name: borghypo diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index a831ec9944d..575f1373bb4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -337,11 +337,10 @@ types: Heat: 14 # mining laser real - - type: GatheringProjectile - # Exodus - Stamina Refactor - start - - type: StaminaDamageOnCollide - damage: 190 - # Exodus - end + - type: GatheringProjectile + - type: StunOnCollide + stunAmount: 5 + knockdownAmount: 5 - type: Tag tags: - EmitterBolt diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml index 6891f9adfe0..ce5bd6fb790 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml @@ -41,7 +41,6 @@ - type: Tool qualities: - Prying - - Axing # Exodus-SimplifyAtmos - type: ToolTileCompatible - type: Prying - type: UseDelay @@ -57,7 +56,7 @@ - type: entity id: FireAxeFlaming name: fire axe - parent: [BaseEngineeringContraband, FireAxe] # Exodus-MRP | Usual crew doesn't know that this is syndicate's contraband and thinking it's usual fire axe + parent: [BaseSyndicateContraband, FireAxe] description: Why fight fire with an axe when you can fight with fire and axe? Now featuring rugged rubberized handle! components: - type: MeleeWeapon @@ -87,12 +86,6 @@ - Scientist - Borg # Corvax-HiddenDesc-End - # Exodus-SimplifyAtmos-Start - - type: Tool - qualities: - - Prying - - Axing - # Exodus-SimplifyAtmos-End - type: SurgeryTool sound: /Audio/Effects/gib1.ogg - type: SurgerySaw diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 357e9b2afcd..2bf18329e74 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -54,7 +54,6 @@ - type: GridSpawn groups: trade: !type:GridSpawnGroup - nameGrid: false # Exodus | Normal name for trading outpost grid addComponents: - type: ProtectedGrid - type: TradeStation @@ -113,12 +112,6 @@ inherent: true protos: - VGRoid - # Exodus-SalvageShuttle-start - mining: !type:GridSpawnGroup - nameGrid: false - paths: - - /Maps/Exodus/Shuttles/mining.yml - # Exodus-SalvageShuttle-end - type: entity id: BaseStationCentcomm diff --git a/Resources/Prototypes/Entities/Structures/Decoration/rock.yml b/Resources/Prototypes/Entities/Structures/Decoration/rock.yml deleted file mode 100644 index 7504fea1c0c..00000000000 --- a/Resources/Prototypes/Entities/Structures/Decoration/rock.yml +++ /dev/null @@ -1,625 +0,0 @@ -- type: entity - parent: BaseRock - id: SmallBaseRock - name: rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.2 - density: 1000 - layer: - - HalfWallLayer - - Opaque - -- type: entity - parent: BaseRock - id: MiddleBaseRock - name: rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi - -- type: entity - parent: BaseRock - id: BigBaseRock - name: rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.5,-0.5,0.5,1" - density: 1000 - layer: - - HalfWallLayer - - Opaque - -- type: entity - parent: BaseRock - id: LargeBaseRock - name: rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi - offset: 0,0.9 - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.7,-0.2,0.7,2" - density: 1000 - layer: - - HalfWallLayer - - Opaque - - type: Climbable - delay: 10.0 - - -- type: entity - parent: SmallBaseRock - id: SmallBlackBaseRock - name: black rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi - -- type: entity - parent: BaseRock - id: MiddleBlackBaseRock - name: black rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi - -- type: entity - parent: BaseRock - id: BigBlackBaseRock - name: black rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi - -- type: entity - parent: BaseRock - id: LargeBlackBaseRock - name: rock - description: heeeeavy - abstract: true - components: - - type: Sprite - noRot: true - sprite: Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi - offset: 0,0.9 - -#region White -#32x32 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid01 - components: - - type: Sprite - state: smallrockssolid01 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid02 - components: - - type: Sprite - state: smallrockssolid02 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid03 - components: - - type: Sprite - state: smallrockssolid03 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid04 - components: - - type: Sprite - state: smallrockssolid04 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid05 - components: - - type: Sprite - state: smallrockssolid05 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid06 - components: - - type: Sprite - state: smallrockssolid06 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid07 - components: - - type: Sprite - state: smallrockssolid07 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid08 - components: - - type: Sprite - state: smallrockssolid08 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid09 - components: - - type: Sprite - state: smallrockssolid09 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid10 - components: - - type: Sprite - state: smallrockssolid10 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid11 - components: - - type: Sprite - state: smallrockssolid11 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid12 - components: - - type: Sprite - state: smallrockssolid12 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid13 - components: - - type: Sprite - state: smallrockssolid13 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid14 - components: - - type: Sprite - state: smallrockssolid14 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid15 - components: - - type: Sprite - state: smallrockssolid15 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid16 - components: - - type: Sprite - state: smallrockssolid16 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid17 - components: - - type: Sprite - state: smallrockssolid17 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid18 - components: - - type: Sprite - state: smallrockssolid18 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid19 - components: - - type: Sprite - state: smallrockssolid19 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid20 - components: - - type: Sprite - state: smallrockssolid20 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid21 - components: - - type: Sprite - state: smallrockssolid21 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid22 - components: - - type: Sprite - state: smallrockssolid22 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid23 - components: - - type: Sprite - state: smallrockssolid23 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid24 - components: - - type: Sprite - state: smallrockssolid24 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid25 - components: - - type: Sprite - state: smallrockssolid25 -- type: entity - parent: SmallBaseRock - id: SmallRockSolid26 - components: - - type: Sprite - state: smallrockssolid26 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid27 - components: - - type: Sprite - state: smallrockssolid27 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid28 - components: - - type: Sprite - state: smallrockssolid28 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid29 - components: - - type: Sprite - state: smallrockssolid29 - -- type: entity - parent: SmallBaseRock - id: SmallRockSolid30 - components: - - type: Sprite - state: smallrockssolid30 -#48x48 -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid01 - components: - - type: Sprite - state: middlerockssolid01 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid02 - components: - - type: Sprite - state: middlerockssolid02 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid03 - components: - - type: Sprite - state: middlerockssolid03 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid04 - components: - - type: Sprite - state: middlerockssolid04 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid05 - components: - - type: Sprite - state: middlerockssolid05 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid06 - components: - - type: Sprite - state: middlerockssolid06 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid07 - components: - - type: Sprite - state: middlerockssolid07 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid08 - components: - - type: Sprite - state: middlerockssolid08 - -- type: entity - parent: MiddleBaseRock - id: MiddleRockSolid09 - components: - - type: Sprite - state: middlerockssolid09 -#48x64 -- type: entity - parent: BigBaseRock - id: BigRockSolid01 - components: - - type: Sprite - state: bigrockssolid01 - -- type: entity - parent: BigBaseRock - id: BigRockSolid02 - components: - - type: Sprite - state: bigrockssolid02 - -- type: entity - parent: BigBaseRock - id: BigRockSolid03 - components: - - type: Sprite - state: bigrockssolid03 -#64x80 -- type: entity - parent: LargeBaseRock - id: LargeRockSolid01 - components: - - type: Sprite - state: largerockssolid01 -#endregion - - -#region Black -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid01 - components: - - type: Sprite - state: smallblackrockssolid01 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid02 - components: - - type: Sprite - state: smallblackrockssolid02 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid03 - components: - - type: Sprite - state: smallblackrockssolid03 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid04 - components: - - type: Sprite - state: smallblackrockssolid04 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid05 - components: - - type: Sprite - state: smallblackrockssolid05 -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid06 - components: - - type: Sprite - state: smallblackrockssolid06 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid07 - components: - - type: Sprite - state: smallblackrockssolid07 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid08 - components: - - type: Sprite - state: smallblackrockssolid08 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid09 - components: - - type: Sprite - state: smallblackrockssolid09 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid10 - components: - - type: Sprite - state: smallblackrockssolid10 -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid11 - components: - - type: Sprite - state: smallblackrockssolid11 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid12 - components: - - type: Sprite - state: smallblackrockssolid12 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid13 - components: - - type: Sprite - state: smallblackrockssolid13 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid14 - components: - - type: Sprite - state: smallblackrockssolid14 - -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid15 - components: - - type: Sprite - state: smallblackrockssolid15 -- type: entity - parent: SmallBlackBaseRock - id: SmallBlackRockSolid16 - components: - - type: Sprite - state: smallblackrockssolid16 - -#48x48 -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid01 - components: - - type: Sprite - state: middleblackrockssolid01 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid02 - components: - - type: Sprite - state: middleblackrockssolid02 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid03 - components: - - type: Sprite - state: middleblackrockssolid03 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid04 - components: - - type: Sprite - state: middleblackrockssolid04 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid05 - components: - - type: Sprite - state: middleblackrockssolid05 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid06 - components: - - type: Sprite - state: middleblackrockssolid06 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid07 - components: - - type: Sprite - state: middleblackrockssolid07 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid08 - components: - - type: Sprite - state: middleblackrockssolid08 - -- type: entity - parent: MiddleBlackBaseRock - id: MiddleBlackRockSolid09 - components: - - type: Sprite - state: middleblackrockssolid09 -#48x64 -- type: entity - parent: BigBlackBaseRock - id: BigBlackRockSolid01 - components: - - type: Sprite - state: bigblackrockssolid01 - -- type: entity - parent: BigBlackBaseRock - id: BigBlackRockSolid02 - components: - - type: Sprite - state: bigblackrockssolid02 - -- type: entity - parent: BigBlackBaseRock - id: BigBlackRockSolid03 - components: - - type: Sprite - state: bigblackrockssolid03 -#64x80 -- type: entity - parent: LargeBlackBaseRock - id: LargeBlackRockSolid01 - components: - - type: Sprite - state: largeblackrockssolid01 -#endregion diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index 2b7ed53900a..e6be2594b12 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -53,7 +53,6 @@ - type: PipeAppearance - type: PipeColorVisuals - type: NodeContainer - # - type: PipeRestrictOverlap # Exodus - type: AtmosUnsafeUnanchor - type: AtmosPipeColor - type: AtmosMonitoringConsoleDevice diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index bb36b745269..eff831fa9ea 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,11 +25,6 @@ - type: Tag tags: - SpreaderIgnore - # Exodus-Tiny-Fan-Craft-Start - - type: Construction - graph: AtmosDeviceFan - node: AtmosDeviceFan - # Exodus-Tiny-Fan-Craft-End - type: entity id: AtmosDeviceFanDirectional diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 8c41dac02d5..d316cacc494 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -1035,11 +1035,6 @@ - type: Icon sprite: Structures/Walls/solid_diagonal.rsi state: state0 - # Exodus-Wall-Diagonal-Craft-Start - - type: Construction - graph: Girder - node: diagonalWall - # Exodus-Wall-Diagonal-Craft-End - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Exodus/Catalog/Cargo/cargo_botany.yml b/Resources/Prototypes/Exodus/Catalog/Cargo/cargo_botany.yml deleted file mode 100644 index 4a3ad576574..00000000000 --- a/Resources/Prototypes/Exodus/Catalog/Cargo/cargo_botany.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: cargoProduct - id: HydroponicsSeedsFlowers - icon: - sprite: Exodus/Objects/Specific/Hydroponics/rose.rsi - state: harvest - product: CrateHydroponicsSeedsFlower - cost: 500 - category: Hydroponics - group: market diff --git a/Resources/Prototypes/Exodus/Catalog/Fills/Crates/botany.yml b/Resources/Prototypes/Exodus/Catalog/Fills/Crates/botany.yml deleted file mode 100644 index 509101c7435..00000000000 --- a/Resources/Prototypes/Exodus/Catalog/Fills/Crates/botany.yml +++ /dev/null @@ -1,16 +0,0 @@ -- type: entity - id: CrateHydroponicsSeedsFlower - parent: CrateHydroponics - name: flower seeds chest - description: some seeds for beauty lovers - components: - - type: StorageFill - contents: - - id: LilieSeeds - amount: 2 - - id: SunflowerSeeds - amount: 2 - - id: RoseSeeds - amount: 2 - - id: FieldFlowersSeeds - amount: 2 diff --git a/Resources/Prototypes/Exodus/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Exodus/Entities/Objects/Specific/Hydroponics/seeds.yml deleted file mode 100644 index ec1ba0f000e..00000000000 --- a/Resources/Prototypes/Exodus/Entities/Objects/Specific/Hydroponics/seeds.yml +++ /dev/null @@ -1,43 +0,0 @@ -- type: entity - parent: SeedBase - name: lilie seeds - id: LilieSeeds - components: - - type: Seed - seedId: lilie - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/lilie.rsi - state: seed - -- type: entity - parent: SeedBase - name: sunflower seeds - id: SunflowerSeeds - components: - - type: Seed - seedId: sunflower - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/sunflower.rsi - state: seed - -- type: entity - parent: SeedBase - name: rose seeds - id: RoseSeeds - components: - - type: Seed - seedId: rose - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/rose.rsi - state: seed - -- type: entity - parent: SeedBase - name: field flowers seeds - id: FieldFlowersSeeds - components: - - type: Seed - seedId: fieldflower - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/fieldflower.rsi - state: seed diff --git a/Resources/Prototypes/Exodus/Hydroponics/seeds.yml b/Resources/Prototypes/Exodus/Hydroponics/seeds.yml deleted file mode 100644 index e0132ed8d0d..00000000000 --- a/Resources/Prototypes/Exodus/Hydroponics/seeds.yml +++ /dev/null @@ -1,103 +0,0 @@ -- type: seed - id: lilie - name: seeds-lilie-name - noun: seeds-noun-seeds - displayName: seeds-lilie-display-name - plantRsi: Exodus/Objects/Specific/Hydroponics/lilie.rsi - packetPrototype: LilieSeeds - productPrototypes: - - FlowerLilie - harvestRepeat: NoRepeat - lifespan: 55 - maturation: 6 - production: 3 - yield: 3 - potency: 10 - idealLight: 6 - chemicals: - Nutriment: - Min: 1 - Max: 10 - PotencyDivisor: 10 - Vitamin: - Min: 1 - Max: 4 - PotencyDivisor: 25 - -- type: seed - id: sunflower - name: seeds-sunflower-name - noun: seeds-noun-seeds - displayName: seeds-sunflower-display-name - plantRsi: Exodus/Objects/Specific/Hydroponics/sunflower.rsi - packetPrototype: SunflowerSeeds - productPrototypes: - - Sunflower - harvestRepeat: NoRepeat - lifespan: 55 - maturation: 6 - production: 3 - yield: 3 - potency: 10 - idealLight: 6 - chemicals: - Nutriment: - Min: 1 - Max: 10 - PotencyDivisor: 10 - Vitamin: - Min: 1 - Max: 4 - PotencyDivisor: 25 - -- type: seed - id: rose - name: seeds-rose-name - noun: seeds-noun-seeds - displayName: seeds-rose-display-name - plantRsi: Exodus/Objects/Specific/Hydroponics/rose.rsi - packetPrototype: RoseSeeds - productPrototypes: - - FlowerRose - harvestRepeat: NoRepeat - lifespan: 55 - maturation: 6 - production: 3 - yield: 3 - potency: 10 - idealLight: 6 - chemicals: - Nutriment: - Min: 1 - Max: 10 - PotencyDivisor: 10 - Vitamin: - Min: 1 - Max: 4 - PotencyDivisor: 25 - -- type: seed - id: fieldflower - name: seeds-fieldflower-name - noun: seeds-noun-seeds - displayName: seeds-fieldflower-display-name - plantRsi: Exodus/Objects/Specific/Hydroponics/fieldflower.rsi - packetPrototype: FieldFlowersSeeds - productPrototypes: - - FieldFlower - harvestRepeat: NoRepeat - lifespan: 55 - maturation: 6 - production: 3 - yield: 3 - potency: 10 - idealLight: 6 - chemicals: - Nutriment: - Min: 1 - Max: 10 - PotencyDivisor: 10 - Vitamin: - Min: 1 - Max: 4 - PotencyDivisor: 25 diff --git a/Resources/Prototypes/Exodus/Recipe/Crafting/sunflower_snake.yml b/Resources/Prototypes/Exodus/Recipe/Crafting/sunflower_snake.yml deleted file mode 100644 index 295275581d7..00000000000 --- a/Resources/Prototypes/Exodus/Recipe/Crafting/sunflower_snake.yml +++ /dev/null @@ -1,7 +0,0 @@ -- type: microwaveMealRecipe - id: RecipeSnackSemki - name: semki recipe - result: FoodSnackSemki - time: 5 - solids: - SunflowerSeeds: 1 diff --git a/Resources/Prototypes/Exodus/tool_qualities.yml b/Resources/Prototypes/Exodus/tool_qualities.yml deleted file mode 100644 index d888e8f3f05..00000000000 --- a/Resources/Prototypes/Exodus/tool_qualities.yml +++ /dev/null @@ -1,6 +0,0 @@ -- type: tool - id: Axing - name: tool-quality-axing-name - toolName: tool-quality-axing-tool-name - spawn: FireAxe - icon: { sprite: Objects/Weapons/Melee/fireaxe.rsi, state: icon } diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 092350f01d9..55cec210af0 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -1714,7 +1714,7 @@ name: seeds-berries-name noun: seeds-noun-seeds displayName: seeds-berries-display-name - plantRsi: Exodus/Objects/Specific/Hydroponics/blueberry.rsi # Exodus-Resprite + plantRsi: Objects/Specific/Hydroponics/berries.rsi packetPrototype: BerrySeeds productPrototypes: - FoodBerries diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml index 37ef66b12ef..572ee91fc5e 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml @@ -17,7 +17,6 @@ - Dwarf - Human - Moth - # - Reptilian # Exodus-ThickSyringes # - Nucleation # RPSX - Vulpkanin # RPSX-Vulpkanins diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 984ca3f6252..117201091f6 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -80,7 +80,6 @@ - EmergencyNitrogen - EmergencyOxygen - LoadoutSpeciesVoxNitrogen - - EmergencyOxygenMechInjector # Exodus-ThickSyringes # nitrogen or oxygen tank, depending on what your species needs - type: loadoutGroup @@ -499,7 +498,6 @@ loadouts: - EmergencyNitrogenClown - EmergencyOxygenClown - - EmergencyOxygenClownMechInjector # Exodus-ThickSyringes - LoadoutSpeciesVoxNitrogen - type: loadoutGroup @@ -556,7 +554,6 @@ loadouts: - EmergencyNitrogenMime - EmergencyOxygenMime - - EmergencyOxygenMimeMechInjector # Exodus-ThickSyringes - EmergencySpeciesMothMime - LoadoutSpeciesVoxNitrogen @@ -847,7 +844,6 @@ loadouts: - EmergencyNitrogenExtended - EmergencyOxygenExtended - - EmergencyOxygenExtendedMechInjector # Exodus-ThickSyringes - LoadoutSpeciesVoxNitrogen # Science @@ -1134,7 +1130,6 @@ loadouts: - EmergencyNitrogenSecurity - EmergencyOxygenSecurity - - EmergencyOxygenSecurityMechInjector # Exodus-ThickSyringes - LoadoutSpeciesVoxNitrogen - type: loadoutGroup @@ -1340,7 +1335,6 @@ loadouts: - EmergencyNitrogenMedical - EmergencyOxygenMedical - - EmergencyOxygenMedicalMechInjector # Exodus-ThickSyringes - LoadoutSpeciesVoxNitrogen # Wildcards @@ -1384,7 +1378,6 @@ - EmergencyNitrogenSyndicate - EmergencyOxygenSyndicate - LoadoutSpeciesVoxNitrogen -# - EmergencyOxygenSyndicateMechInjector # Exodus-ThickSyringes - type: loadoutGroup id: GroupSpeciesBreathTool diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index 09606ee590e..00dd5c3a7b1 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -22,7 +22,6 @@ CaptainJetpackStealObjective: 0.5 HandTeleporterStealObjective: 0.5 EnergyShotgunStealObjective: 0.5 - BookSecretDocumentsObjective: 0.5 # Exodus-NukeSecretDocuments RifleXaniStealObjective: 0.5 # RPSX-BlueshieldOfficeRr-Gunsteal - type: weightedRandom @@ -76,7 +75,6 @@ FlippoEngravedLighterStealObjective: 0.5 ClothingHeadHatWardenStealObjective: 1 WantedListCartridgeStealObjective: 1 - ClothingNeckShockCollarStealObjective: 1 # Exodus-ShockCollar ClothingOuterHardsuitVoidParamedStealObjective: 1 #med MedicalTechFabCircuitboardStealObjective: 1 ClothingHeadsetAltMedicalStealObjective: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml index 4f71a34e39f..7b039a0454c 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/girder.yml @@ -6,9 +6,9 @@ edges: - to: girder completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End steps: - material: Steel amount: 2 @@ -29,7 +29,7 @@ steps: - tool: Screwing doAfter: 2 - # Exodus-Wall-Diagonal-Craft-Start + # RPSX-Wall-Diagonal-Craft-Start - to: diagonalWall completed: - !type:SnapToGrid { } @@ -41,13 +41,13 @@ - material: Steel amount: 1 doAfter: 1 - # Exodus-Wall-Diagonal-Craft-End + # RPSX-Wall-Diagonal-Craft-End - to: wall completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End conditions: - !type:EntityAnchored {} steps: @@ -57,9 +57,9 @@ - to: reinforcedGirder completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End conditions: - !type:EntityAnchored {} steps: @@ -178,7 +178,7 @@ - tool: Welding doAfter: 10 - # Exodus-Wall-Diagonal-Craft-Start + # RPSX-Wall-Diagonal-Craft-Start - node: diagonalWall entity: WallSolidDiagonal edges: @@ -190,7 +190,7 @@ steps: - tool: Welding doAfter: 10 - # Exodus-Wall-Diagonal-Craft-End + # RPSX-Wall-Diagonal-Craft-End - node: wallChitin entity: WallSolidChitin @@ -347,9 +347,9 @@ - to: diagonalshuttleWall completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End conditions: - !type:EntityAnchored { } steps: diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml index 2b12e55ee47..175a23f8076 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/grille_diagonal.yml @@ -6,19 +6,19 @@ edges: - to: grilleDiagonal completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } steps: - material: MetalRod amount: 2 doAfter: 1 - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End - to: clockworkGrilleDiagonal completed: - # Exodus-Construction-Rotate-Fix-Start + # RPSX-Construction-Rotate-Fix-Start - !type:SnapToGrid { } - # Exodus-Construction-Rotate-Fix-End + # RPSX-Construction-Rotate-Fix-End steps: - material: MetalRod amount: 2 diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml index cb452596ffd..5cb974ba73e 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/medical.yml @@ -46,7 +46,6 @@ - DiseaseSwab - BodyBag - WhiteCane - - MechanicalInjector # Exodus-ThickSyringes - type: latheRecipePack id: RollerBedsStatic diff --git a/Resources/Prototypes/SoundCollections/NukeMusic.yml b/Resources/Prototypes/SoundCollections/NukeMusic.yml index e53ab788939..a1d82df8d5b 100644 --- a/Resources/Prototypes/SoundCollections/NukeMusic.yml +++ b/Resources/Prototypes/SoundCollections/NukeMusic.yml @@ -4,6 +4,4 @@ - /Audio/StationEvents/running_out.ogg - /Audio/StationEvents/countdown.ogg - /Audio/StationEvents/sound_station_14.ogg - - /Audio/Exodus/StationEvents/clearly_nuclear.ogg # Exodus-Nuke - - /Audio/Exodus/StationEvents/singularity.ogg # Exodus-Nuke - /Audio/StationEvents/blatantly_nuclear.ogg \ No newline at end of file diff --git a/Resources/Prototypes/SoundCollections/lobby.yml b/Resources/Prototypes/SoundCollections/lobby.yml index e0395031d0a..b3eeb7b2d9f 100644 --- a/Resources/Prototypes/SoundCollections/lobby.yml +++ b/Resources/Prototypes/SoundCollections/lobby.yml @@ -1,13 +1,18 @@ - type: soundCollection id: LobbyMusic - files: # Exodus - LobbyMusic - - /Audio/Exodus/Lobby/flames.ogg - - /Audio/Exodus/Lobby/hopeful.ogg - - /Audio/Exodus/Lobby/larik.ogg - - /Audio/Exodus/Lobby/owl.ogg - - /Audio/Exodus/Lobby/space.ogg - - /Audio/Exodus/Lobby/space_oddity.ogg - - /Audio/Exodus/Lobby/voided.ogg - - /Audio/Exodus/Lobby/weightlessness.ogg - - /Audio/Exodus/Lobby/endless_space.ogg - - /Audio/Lobby/the_wizard.ogg + files: + - /Audio/Lobby/thunderdome.ogg + - /Audio/Lobby/absconditus.ogg + - /Audio/Lobby/space_asshole.ogg + - /Audio/Lobby/the_wizard.ogg + - /Audio/Lobby/endless_space.ogg + - /Audio/Lobby/singuloose.ogg + - /Audio/Lobby/comet_haley.ogg + - /Audio/Lobby/title2.ogg + - /Audio/Lobby/title3.ogg + - /Audio/Lobby/mod.flip-flap.ogg + - /Audio/Lobby/Spac_Stac.ogg + - /Audio/Lobby/pwmur.ogg + - /Audio/Lobby/lasers_rip_apart_the_bulkhead.ogg + - /Audio/Lobby/every_light_is_blinking_at_once.ogg + - /Audio/Lobby/atomicamnesiammx.ogg \ No newline at end of file diff --git a/Resources/Prototypes/Tiles/plating.yml b/Resources/Prototypes/Tiles/plating.yml index 7049b40cd84..2879272a59e 100644 --- a/Resources/Prototypes/Tiles/plating.yml +++ b/Resources/Prototypes/Tiles/plating.yml @@ -4,7 +4,6 @@ sprite: /Textures/Tiles/plating.png baseTurf: Lattice isSubfloor: true - deconstructTools: [ Axing ] # Exodus-SimplifyAtmos footstepSounds: collection: FootstepPlating friction: 1.5 @@ -21,7 +20,6 @@ - 1.0 baseTurf: Lattice isSubfloor: true - deconstructTools: [ Axing ] # Exodus-SimplifyAtmos footstepSounds: collection: FootstepPlating friction: 1.5 @@ -33,7 +31,6 @@ sprite: /Textures/Tiles/Asteroid/asteroid_plating.png baseTurf: Lattice isSubfloor: true - deconstructTools: [ Axing ] # Exodus-SimplifyAtmos footstepSounds: collection: FootstepPlating friction: 1.5 @@ -45,7 +42,6 @@ sprite: /Textures/Tiles/Misc/clockwork/clockwork_floor.png baseTurf: Lattice isSubfloor: true - deconstructTools: [ Axing ] # Exodus-SimplifyAtmos footstepSounds: collection: FootstepPlating friction: 1.5 @@ -57,7 +53,6 @@ sprite: /Textures/Tiles/snow_plating.png #Not in the snow planet RSI because it doesn't have any metadata. Should probably be moved to its own folder later. baseTurf: Lattice isSubfloor: true - deconstructTools: [ Axing ] # Exodus-SimplifyAtmos footstepSounds: collection: FootstepPlating friction: 0.75 #a little less then actual snow diff --git a/Resources/Prototypes/Traits/speech.yml b/Resources/Prototypes/Traits/speech.yml index 5919932490a..976d345a6d7 100644 --- a/Resources/Prototypes/Traits/speech.yml +++ b/Resources/Prototypes/Traits/speech.yml @@ -15,7 +15,6 @@ - type: MothAccent - type: ReplacementAccent accent: dwarf - - type: GrowlingAccent # Exodus-FixAccentlessVulps # 1 Cost diff --git a/Resources/Prototypes/Voice/disease_emotes.yml b/Resources/Prototypes/Voice/disease_emotes.yml index 1967846b840..24b9d5c820d 100644 --- a/Resources/Prototypes/Voice/disease_emotes.yml +++ b/Resources/Prototypes/Voice/disease_emotes.yml @@ -4,17 +4,6 @@ category: Vocal icon: _RPSX/Interface/Actions/emotes.rsi/sneeze.png chatMessages: ["chat-emote-msg-sneeze"] - available: false - # Exodus-EmotesSounds-Start - chatTriggers: - - чихает - - чихнул - - чихнула - - пчихнул - - пчихнула - - апчи - - апчхи - # Exodus-EmotesSounds-End - type: emote id: Cough @@ -37,9 +26,6 @@ - кашляет - кашлянул # Corvax-Localization-End - # Exodus-Localization-Start - - кашлянула - # Exodus-Localization-End - type: emote id: CatMeow @@ -52,13 +38,6 @@ name: chat-emote-name-cathisses category: Vocal chatMessages: ["chat-emote-msg-cathisses"] - # Exodus-EmotesSounds-Start - available: false - chatTriggers: - - шипит - - шипение - - шикает - # Exodus-EmotesSounds-End - type: emote id: MonkeyScreeches @@ -91,10 +70,6 @@ - зевок - зевает # Corvax-Localization-End - # Exodus-Localization-Start - - зевк - - зёвк - # Exodus-Localization-End - type: emote id: Snore diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index a1c910dc533..0edd18d3ff1 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -92,14 +92,6 @@ path: /Audio/Voice/Reptilian/reptilian_scream.ogg Laugh: path: /Audio/Animals/lizard_happy.ogg - # Exodus-EmotesSounds-Start - Sneeze: - path: /Audio/Exodus/Voice/Reptilian/m_sneeze.ogg - Growl: - collection: ReptilianGrowl - Rumble: - collection: ReptilianRumble - # Exodus-EmotesSounds-End Honk: collection: BikeHorn Whistle: @@ -124,14 +116,6 @@ path: /Audio/Voice/Reptilian/reptilian_scream.ogg Laugh: path: /Audio/Animals/lizard_happy.ogg - # Exodus-EmotesSounds-Start - Sneeze: - path: /Audio/Exodus/Voice/Reptilian/f_sneeze.ogg - Growl: - collection: ReptilianGrowl - Rumble: - collection: ReptilianRumble - # Exodus-EmotesSounds-End Honk: collection: BikeHorn Whistle: diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 9ed5bad66d3..6aeea19b100 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -25,17 +25,6 @@ - yells - yelled - yelling - # Corvax-Localization-Start - - кричит - - кричит. - - кричит! - - орёт - - орёт. - - орёт! - - визжит - - визжит. - - визжит! - # Corvax-Localization-End - type: emote id: Laugh @@ -65,15 +54,6 @@ - chortle - chortles - chortling - # Corvax-Localization-Start - - смеется - - смеётся - - хохочет - - хихикает - - хихикнул - - хихикнула - - ржёт - # Corvax-Localization-End - type: emote id: Honk @@ -92,9 +72,6 @@ - honks - honked - honking - # Corvax-Localization-Start - - хонк - # Corvax-Localization-End - type: emote id: Sigh @@ -112,11 +89,6 @@ - sigh - sighs - sighed - # Corvax-Localization-Start - - вздыхает - - вздохнул - - вздохнула - # Corvax-Localization-End - type: emote id: Whistle @@ -134,10 +106,6 @@ - whistle - whistles - whistleblowing - # Corvax-Localization-Start - - свистит - - свистнул - # Corvax-Localization-End - type: emote id: Crying @@ -158,10 +126,6 @@ - sob - sobs - sobbing - # Corvax-Localization-Start - - плачет - - рыдает - # Corvax-Localization-End - type: emote id: Squish @@ -180,9 +144,6 @@ - squish - squishing - squishes - # Corvax-Localization-Start - - хлюпает - # Corvax-Localization-End - type: emote id: Chitter @@ -201,9 +162,6 @@ - chitter - chitters - chittered - # Corvax-Localization-Start - - стрекочет - # Corvax-Localization-End - type: emote id: Squeak @@ -222,9 +180,6 @@ - squeak - squeaks - squeaked - # Corvax-Localization-Start - - пищит - # Corvax-Localization-End - type: emote id: Click @@ -242,10 +197,6 @@ chatTriggers: - click - clicks - # Corvax-Localization-Start - - клац - - клацает - # Corvax-Localization-End # hand emotes - type: emote @@ -264,15 +215,6 @@ - claps - clapping - clapped - # Corvax-Localization-Start - - хлопает - - хлопнул - - хлопнула - - хлопает в ладоши - - хлопнул в ладоши - - хлопнула в ладоши - - апплодирует - # Corvax-Localization-End - type: emote id: ClapSingle @@ -318,20 +260,6 @@ - snaps its fingers - snapping fingers - snapped fingers - # Corvax-Localization-Start - - щелкает - - щелкнул - - щелкнула - - щёлкает - - щёлкнул - - щёлкнула - - щелкает пальцами - - щелкнул пальцами - - щелкнула пальцами - - щёлкает пальцами - - щёлкнул пальцами - - щёлкнула пальцами - # Corvax-Localization-End - type: emote id: Thump @@ -357,30 +285,6 @@ - thumps her tail - thumps his tail - thumps its tail - # Exodus-Localization-Start - - стучит хвостом - - ударил хвостом по полу - - ударила хвостом по полу - - шлёпнул хвостом по полу - - шлёпнула хвостом по полу - - бьёт хвостом по полу - - стегнул хвостом по полу - - стегнула хвостом по полу - - хлопнул хвостом - - хлопнула хвостом - - хлестнул хвостом - - хлестнула хвостом - - шлепнул хвостом по полу - - шлепнула хвостом по полу - - стукнул хвостом - - стукнула хвостом - - резко ударил хвостом - - резко ударила хвостом - - смахнул хвостом по полу - - смахнула хвостом по полу - - стукнул своим хвостом - - стукнула своим хвостом - # Exodus-Localization-End - type: emote id: Salute @@ -397,12 +301,6 @@ chatTriggers: - salute - salutes - # Corvax-Localization-Start - - салютует - - отдаёт честь - - отдал честь - - отдала честь - # Corvax-Localization-End - type: emote id: Gasp @@ -456,11 +354,6 @@ - buzz - buzzed - buzzes - # Corvax-Localization-Start - - жужжит - - зажужжал - - зажужжала - # Corvax-Localization-End - type: emote id: Weh @@ -495,9 +388,6 @@ - chirps - chirped - chirping - # Corvax-Localization-Start - - чирикает - # Corvax-Localization-End # Machine Emotes - type: emote @@ -517,9 +407,6 @@ - beeps - beeped - beeping - # Corvax-Localization-Start - - бип - # Corvax-Localization-End - type: emote id: Chime @@ -538,9 +425,6 @@ - chimes - chimed - chiming - # Corvax-Localization-Start - - дзынь - # Corvax-Localization-End - type: emote id: Buzz-Two @@ -565,14 +449,6 @@ - buzzes twice - buzzing twice - buzzed twice - # Corvax-Localization-Start - - бипбуп - - бип буп - - бип-буп - - бипбип - - бип бип - - бип-бип - # Corvax-Localization-End - type: emote id: Ping @@ -591,6 +467,3 @@ - pings - pinged - pinging - # Corvax-Localization-Start - - пинг - # Corvax-Localization-End diff --git a/Resources/Prototypes/_Exodus/Actions/implants.yml b/Resources/Prototypes/_Exodus/Actions/implants.yml deleted file mode 100644 index 3ff5d3bec1f..00000000000 --- a/Resources/Prototypes/_Exodus/Actions/implants.yml +++ /dev/null @@ -1,29 +0,0 @@ -- type: entity - parent: BaseImplantAction - id: ActionStimulantsImplant - name: Inject stimulants into bloodstream - description: Bring stimulants into your bloodstream now - components: - - type: Action - itemIconStyle: BigAction - checkCanInteract: false - priority: -20 - useDelay: 5 - icon: - sprite: Objects/Specific/Medical/medipen.rsi - state: stimpen - -- type: entity - parent: BaseImplantAction - id: ActionCombatInjectorImplant - name: Inject medicals into bloodstream - description: Bring medicals into your bloodstream now - components: - - type: Action - itemIconStyle: BigAction - checkCanInteract: false - priority: -20 - useDelay: 5 - icon: - sprite: Objects/Specific/Medical/medipen.rsi - state: morphen \ No newline at end of file diff --git a/Resources/Prototypes/_Exodus/Actions/types.yml b/Resources/Prototypes/_Exodus/Actions/types.yml deleted file mode 100644 index bdeda029869..00000000000 --- a/Resources/Prototypes/_Exodus/Actions/types.yml +++ /dev/null @@ -1,17 +0,0 @@ -- type: entity - parent: BaseActionPolymorph - id: ActionMorphGeras - name: Morph into Geras - description: Morphs you into a Geras - a miniature version of you which allows you to move fast, at the cost of your inventory. - components: - - type: ConfirmableAction - popup: geras-transformation-popup - - type: Action - itemIconStyle: BigAction - priority: -20 - useDelay: 10 - icon: - sprite: Mobs/Aliens/slimes.rsi - state: blue_adult_slime - - type: InstantAction - event: !type:MorphIntoGeras diff --git a/Resources/Prototypes/_Exodus/Catalog/Cargo/cargo_engines.yml b/Resources/Prototypes/_Exodus/Catalog/Cargo/cargo_engines.yml deleted file mode 100644 index 6b3abb64917..00000000000 --- a/Resources/Prototypes/_Exodus/Catalog/Cargo/cargo_engines.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: cargoProduct - id: EngineeringAtmosDeviceFanTinyParts - icon: - sprite: Structures/Piping/Atmospherics/tinyfan.rsi - state: icon - product: CrateEngineeringAASElectronic - cost: 6000 - category: cargoproduct-category-name-engineering - group: market diff --git a/Resources/Prototypes/_Exodus/Catalog/Fills/Boxes/emergency.yml b/Resources/Prototypes/_Exodus/Catalog/Fills/Boxes/emergency.yml deleted file mode 100644 index d884bef32fe..00000000000 --- a/Resources/Prototypes/_Exodus/Catalog/Fills/Boxes/emergency.yml +++ /dev/null @@ -1,101 +0,0 @@ -- type: entity - parent: BoxSurvival - id: BoxSurvivalMechInjector - name: survival box - description: It's a box with basic internals inside. - suffix: Standard, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskBreath - - id: EmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - - id: DrinkWaterBottleFull - -- type: entity - id: BoxSurvivalEngineeringMechInjector - parent: BoxSurvivalEngineering - name: extended-capacity survival box - description: It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank. - suffix: Extended, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskBreath - - id: ExtendedEmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - - id: DrinkWaterBottleFull - -- type: entity - id: BoxSurvivalSecurityMechInjector - parent: BoxSurvivalSecurity - name: survival box - description: It's a box with basic internals inside. - suffix: Security, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskGasSecurity - - id: EmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - - id: DrinkWaterBottleFull - -- type: entity - parent: BoxSurvivalMedical - id: BoxSurvivalMedicalMechInjector - name: survival box - description: It's a box with basic internals inside. - suffix: Medical, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskBreathMedical - - id: EmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - - id: DrinkWaterBottleFull - -- type: entity - parent: BoxMime - id: BoxMimeMechInjector - suffix: Mime, Emergency, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskBreath - - id: EmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodBreadBaguette - - id: DrinkWaterBottleFull - -- type: entity - parent: BoxSurvivalSyndicate - id: BoxSurvivalSyndicateMechInjector - name: extended-capacity survival box - description: It's a box with basic internals inside. This one is labelled to contain an extended-capacity tank. - suffix: Syndicate, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskGasSyndicate - - id: ExtendedEmergencyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - -- type: entity - parent: BoxHug - id: BoxHugMechInjector - name: box of hugs - description: A special box for sensitive people. - suffix: Emergency, Mech Injector - components: - - type: StorageFill - contents: - - id: ClothingMaskBreath - - id: EmergencyFunnyOxygenTankFilled - - id: MechanicalInjectorEpinephrine - - id: FoodSnackNutribrick - - id: DrinkWaterBottleFull diff --git a/Resources/Prototypes/_Exodus/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/_Exodus/Catalog/Fills/Crates/engineering.yml deleted file mode 100644 index 17b2c141b1b..00000000000 --- a/Resources/Prototypes/_Exodus/Catalog/Fills/Crates/engineering.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - id: CrateEngineeringAASElectronic - parent: CrateEngineeringSecure - name: AAS electronics crate - description: Crate for AAS electronics parts. - components: - - type: StorageFill - contents: - - id: AASElectronics diff --git a/Resources/Prototypes/_Exodus/Catalog/uplink_catalog.yml b/Resources/Prototypes/_Exodus/Catalog/uplink_catalog.yml deleted file mode 100644 index 4e40bbb11ce..00000000000 --- a/Resources/Prototypes/_Exodus/Catalog/uplink_catalog.yml +++ /dev/null @@ -1,30 +0,0 @@ -- type: listing - id: UplinkStimulantsImplant - name: uplink-stimulants-implant-name - description: uplink-stimulants-implant-desc - productEntity: StimulantsImplanter - icon: { sprite: /Textures/Objects/Specific/Medical/medipen.rsi, state: stimpen } - cost: - Telecrystal: 8 - categories: - - UplinkImplants - conditions: - - !type:StoreWhitelistCondition - whitelist: - tags: - - NukeOpsUplink - - !type:BuyerWhitelistCondition - blacklist: - components: - - SurplusBundle - -- type: listing - id: UplinkCombatInjectorImplant - name: uplink-combat-injector-implant-name - description: uplink-combat-injector-implant-desc - productEntity: CombatInjectorImplanter - icon: { sprite: /Textures/Objects/Specific/Medical/medipen.rsi, state: morphen } - cost: - Telecrystal: 8 - categories: - - UplinkImplants diff --git a/Resources/Prototypes/_Exodus/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_Exodus/Clothing/OuterClothing/hardsuits.yml deleted file mode 100644 index 5f0e1b44ea0..00000000000 --- a/Resources/Prototypes/_Exodus/Clothing/OuterClothing/hardsuits.yml +++ /dev/null @@ -1,66 +0,0 @@ -- type: entity - parent: [ClothingOuterBase, AllowSuitStorageClothing] - id: ClothingOuterHardsuitRnd - name: scientist's hardsuit - description: A sturdy brand-new hardsuit. Will protect you from most of your work. It does not protect against mental breakdown. - components: - - type: Sprite - sprite: Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi - - type: Clothing - sprite: Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi - - type: PressureProtection - highPressureMultiplier: 0.6 - lowPressureMultiplier: 1000 - - type: ClothingSpeedModifier - walkModifier: 0.85 - sprintModifier: 0.85 - - type: HeldSpeedModifier - - type: Item - size: Ginormous - - type: ProtectedFromStepTriggers - slots: WITHOUT_POCKET - - type: TemperatureProtection - heatingCoefficient: 0.6 - coolingCoefficient: 0.6 - - type: ExplosionResistance - damageCoefficient: 0.40 - - type: Armor - modifiers: - coefficients: - Cold: 0.85 - Shock: 0.85 - Blunt: 0.85 - Slash: 0.85 - Piercing: 0.85 - Radiation: 0.30 - Heat: 0.60 - Caustic: 0.5 - - type: GroupExamine - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitRnd - slot: head - - type: ContainerContainer - containers: - toggleable-clothing: !type:ContainerSlot {} - - type: DamageOnInteractProtection - damageProtection: - flatReductions: - Heat: 10 # the average lightbulb only does around four damage! - slots: OUTERCLOTHING - -- type: entity - parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] - id: ClothingHeadHelmetHardsuitRnd - name: scientist's hardsuit helmet - description: Pretty strong. - components: - - type: BreathMask - - type: Sprite - sprite: Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi - - type: Clothing - sprite: Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi - - type: PointLight - color: "#a4fef4" - - type: PressureProtection - highPressureMultiplier: 0.60 - lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/_Exodus/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_Exodus/Entities/Clothing/OuterClothing/hardsuits.yml deleted file mode 100644 index a2807b53862..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Clothing/OuterClothing/hardsuits.yml +++ /dev/null @@ -1,50 +0,0 @@ -- type: entity - parent: [ClothingOuterHardsuitBase, BaseCargoContraband] - id: ClothingOuterHardsuitSalvageMaximal - name: salvager maxim hardsuit - description: Fire. Heat. These things forge great weapons, they also forge great salvagers. - components: - - type: Sprite - sprite: Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi - - type: Clothing - sprite: Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi - - type: PressureProtection - highPressureMultiplier: 0.02 - lowPressureMultiplier: 1000 - - type: ExplosionResistance - - type: Armor - modifiers: - coefficients: - Blunt: 0.55 - Slash: 0.55 - Piercing: 0.5 - Heat: 0.6 - Radiation: 0.45 - Caustic: 0.65 - - type: ClothingSpeedModifier - walkModifier: 0.95 - sprintModifier: 0.95 - - type: HeldSpeedModifier - - type: ToggleableClothing - clothingPrototype: ClothingHeadHelmetHardsuitSalvageMaximal - - type: Construction - graph: HardsuitSalvageMaximal - node: hardsuitSalvageMaximal - -- type: entity - parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] - id: ClothingHeadHelmetHardsuitSalvageMaximal - name: salvager maxim helmet - description: A predication of decay washes over your mind. - components: - - type: Sprite - sprite: Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi - - type: Clothing - sprite: Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi - - type: PressureProtection - highPressureMultiplier: 0.525 - lowPressureMultiplier: 1000 - - type: PointLight - radius: 7 - energy: 3 - color: "#fff089" diff --git a/Resources/Prototypes/_Exodus/Entities/Mobs/Customization/vulpkanin.yml b/Resources/Prototypes/_Exodus/Entities/Mobs/Customization/vulpkanin.yml deleted file mode 100644 index 9b8e78ee53e..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Mobs/Customization/vulpkanin.yml +++ /dev/null @@ -1,851 +0,0 @@ -# Snouts -- type: marking - id: VulpkaninSpotThroat - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: throat - -- type: marking - id: VulpkaninSpotArrow - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: arrow - -- type: marking - id: VulpkaninSpotRaccoon - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: raccoon - -- type: marking - id: VulpkaninSpotArrows - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: arrows - -- type: marking - id: VulpkaninSpotBelt - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: belt - -- type: marking - id: VulpkaninSpotCase - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: case - -- type: marking - id: VulpkaninSpotEyebrows - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: eyebrows - -- type: marking - id: VulpkaninSpotHelmet - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: helmet - -- type: marking - id: VulpkaninSpotLadle - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: ladle - -- type: marking - id: VulpkaninSpotLantern - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: lantern - -- type: marking - id: VulpkaninSpotMask - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: mask - -- type: marking - id: VulpkaninSpotSiamisblurred - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: siamisblurred - -- type: marking - id: VulpkaninSpotStar - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: star - -- type: marking - id: VulpkaninSpotTear - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: tear - -- type: marking - id: VulpkaninSpotTearsmall - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: tearsmall - -- type: marking - id: VulpkaninSpotThai - bodyPart: Snout - markingCategory: Snout - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi - state: thai - -# Ears -- type: marking - id: VulpkaninEarsCutoff - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_cutoff_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_cutoff_inner - -- type: marking - id: VulpkaninEarsFennec - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_fennec_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_fennec_inner - -- type: marking - id: VulpkaninEarsHyena - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_hyena_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_hyena_inner - -- type: marking - id: VulpkaninEarsLinx - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_linx_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_linx_inner - -- type: marking - id: VulpkaninEarsRound - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_round_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_round_inner - -- type: marking - id: VulpkaninEarsSharp - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_sharp_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_sharp_inner - -- type: marking - id: VulpkaninEarsSkarLeft - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_skar_left_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_skar_left_inner - -- type: marking - id: VulpkaninEarsSkarRight - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_skar_right_outer - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_skar_right_inner - -- type: marking - id: VulpkaninEarsSpaniel - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi - state: ears_spaniel - -#region Foots - -- type: marking - id: VulpkaninFootsDotFootRight - bodyPart: RFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: dot_foot_r - -- type: marking - id: VulpkaninFootsFullRight - bodyPart: RFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: foots_r - -- type: marking - id: VulpkaninFootsTrailFootRight - bodyPart: RFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: trail_foot_r - -- type: marking - id: VulpkaninFootsDotFootLeft - bodyPart: LFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: dot_foot_l - -- type: marking - id: VulpkaninFootsFullLeft - bodyPart: LFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: foots_l - -- type: marking - id: VulpkaninFootsTrailFootLeft - bodyPart: LFoot - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi - state: trail_foot_l - -#region Legs - -- type: marking - id: VulpkaninRightLegBun - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: bun_r - -- type: marking - id: VulpkaninLeftLegBun - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: bun_l - -- type: marking - id: VulpkaninRightLegHips - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: hips_r - -- type: marking - id: VulpkaninLeftLegHips - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: hips_l - -- type: marking - id: VulpkaninRightLegIncisionMark - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: incision_mark_r - -- type: marking - id: VulpkaninLeftLegIncisionMark - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: incision_mark_l - -- type: marking - id: VulpkaninRightLegInnerThigh - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: inner_thigh_r - -- type: marking - id: VulpkaninLeftLegInnerThigh - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: inner_thigh_l - -- type: marking - id: VulpkaninRightLegKneesocks - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: kneesocks_r - -- type: marking - id: VulpkaninLeftLegKneesocks - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: kneesocks_l - -- type: marking - id: VulpkaninRightLegLongStripes - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: long_stripes_leg_r - -- type: marking - id: VulpkaninLeftLegLongStripes - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: long_stripes_leg_l - -- type: marking - id: VulpkaninRightLegSocks - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: socksleg_r - -- type: marking - id: VulpkaninLeftLegSocks - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi - state: socksleg_l - -#region Chest - -- type: marking - id: VulpkaninChestMaleBelly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: belly_m - -- type: marking - id: VulpkaninChestFemaleBelly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: belly_f - -- type: marking - id: VulpkaninChestBelt - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: belt - -- type: marking - id: VulpkaninChestBelt2 - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: belt2 - -- type: marking - id: VulpkaninChestMaleBreast - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: breast_m - -- type: marking - id: VulpkaninChestFemaleBreast - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: breast_f - -- type: marking - id: VulpkaninChestMaleChestAndThroat - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: chest_and_throat_m - -- type: marking - id: VulpkaninChestFemaleChestAndThroat - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: chest_and_throat_f - -- type: marking - id: VulpkaninChestMaleCross - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: cross_m - -- type: marking - id: VulpkaninChestFemaleCross - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: cross_f - -- type: marking - id: VulpkaninChestMaleHorza - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: horza_m - -- type: marking - id: VulpkaninChestFemaleHorza - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: horza_f - -- type: marking - id: VulpkaninChestHyena - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: hyena - -- type: marking - id: VulpkaninChestFemaleJackal - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: jackal1_f - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: jackal2_f - -- type: marking - id: VulpkaninChestMaleJackal - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: jackal1_m - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: jackal2_m - -- type: marking - id: VulpkaninChestMaleMane - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: mane_m - -- type: marking - id: VulpkaninChestFemaleMane - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: mane_f - -- type: marking - id: VulpkaninChestMaleMantle - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: mantle_m - -- type: marking - id: VulpkaninChestFemaleMantle - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: mantle_f - -- type: marking - id: VulpkaninChestMaleNecklac - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: necklac_m - -- type: marking - id: VulpkaninChestFemaleNecklac - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: necklace_f - -- type: marking - id: VulpkaninChestMaleNecklac2 - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: necklace2_m - -- type: marking - id: VulpkaninChestFemaleNecklac2 - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: necklace2_f - -- type: marking - id: VulpkaninChestSections - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: sections1_f - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: sections2_f - -- type: marking - id: VulpkaninChestMaleSheet - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: sheet_m - -- type: marking - id: VulpkaninChestFemaleSheet - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: sheet_f - -- type: marking - id: VulpkaninChestMaleSpot - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: spot_m - -- type: marking - id: VulpkaninChestFemaleSpot - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: spot_f - -- type: marking - id: VulpkaninChestFemaleSrite - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: srite - -- type: marking - id: VulpkaninChestMaleStripesAreFron - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Male - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: stripes_are_fron_m - -- type: marking - id: VulpkaninChestFemaleStripesAreFron - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Vulpkanin] - sexRestriction: Female - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi - state: stripes_are_torn_f - -#region Arm - -- type: marking - id: VulpkaninArmRightArrowarm - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: arrowarm_r - -- type: marking - id: VulpkaninArmLeftArrowarm - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: arrowarm_l - -- type: marking - id: VulpkaninArmRightMittens - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: mittens_r - -- type: marking - id: VulpkaninArmLeftMittens - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: mittens_l - -- type: marking - id: VulpkaninArmRightShoulders - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: shoulders_r - -- type: marking - id: VulpkaninArmLeftShoulders - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: shoulders_l - -- type: marking - id: VulpkaninArmRightStripesarm - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: stripesarm_r - -- type: marking - id: VulpkaninArmLeftStripesarm - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi - state: stripesarm_l - -#region Hand - -- type: marking - id: VulpkaninHandRightGlovelett - bodyPart: RHand - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi - state: glovelett_r - -- type: marking - id: VulpkaninHandLeftGlovelett - bodyPart: LHand - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi - state: glovelett_l - -- type: marking - id: VulpkaninHandRightGloves - bodyPart: RHand - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi - state: gloves_r - -- type: marking - id: VulpkaninHandLeftGloves - bodyPart: LHand - markingCategory: Arms - speciesRestriction: [Vulpkanin] - sprites: - - sprite: Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi - state: gloves_l diff --git a/Resources/Prototypes/_Exodus/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/_Exodus/Entities/Mobs/NPCs/slimes.yml deleted file mode 100644 index 88aa0217d54..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Mobs/NPCs/slimes.yml +++ /dev/null @@ -1,35 +0,0 @@ - -- type: entity - name: geras - description: A geras of a slime - the name is ironic, isn't it? - id: MobSlimesGeras - parent: BaseMobAdultSlimes - categories: [ HideSpawnMenu ] - components: - # they portable... - - type: MovementSpeedModifier - baseWalkSpeed: 3 - baseSprintSpeed: 5 # +.5 from normal movement speed - - type: MobThresholds - thresholds: - 0: Alive - 80: Dead # weak af tho - - type: NpcFactionMember - factions: - - NanoTrasen - - type: MultiHandedItem - - type: Item - size: Huge - - type: Sprite - color: "#FFFFFF55" - - type: MeleeWeapon - attackRate: 2 - damage: - types: - Blunt: 4 - - type: DamageStateVisuals - states: - Alive: - Base: blue_adult_slime - Dead: - Base: blue_adult_slime_dead diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Drinks/drinks.yml deleted file mode 100644 index 7bf5ee46951..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Drinks/drinks.yml +++ /dev/null @@ -1,16 +0,0 @@ -- type: entity - parent: DrinkGlass - id: DrinkBerryIceCreamGlass - suffix: Berry ice cream - components: - - type: SolutionContainerManager - solutions: - drink: - maxVol: 30 - reagents: - - ReagentId: BerryIceCream - Quantity: 30 - - type: Drink - - type: Icon - sprite: Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi - state: icon diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/cake.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/cake.yml deleted file mode 100644 index 3b9b1e717a3..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/cake.yml +++ /dev/null @@ -1,36 +0,0 @@ -- type: entity - name: flower cake - parent: FoodCakeBase - id: FoodCakeValentineDayFlowerPie - description: Cake that represents your love. Go for it, buddy! - components: - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/cake.rsi - state: cherry_love - - type: SliceableFood - slice: FoodCakeValentineDayFlowerPieSlice - - type: FlavorProfile - flavors: - - flowermadness - - type: Tag - tags: - - Cake - - Fruit - -- type: entity - name: flower cake slice - parent: FoodCakeSliceBase - id: FoodCakeValentineDayFlowerPieSlice - description: Slice of cake that represents your love. Go for it, buddy! - components: - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/cake.rsi - state: cherry_love-slice - - type: FlavorProfile - flavors: - - flowermadness - - type: Tag - tags: - - Cake - - Fruit - - Slice diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/misc.yml deleted file mode 100644 index c1d10cdf68c..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Baked/misc.yml +++ /dev/null @@ -1,50 +0,0 @@ -- type: entity - name: slimeman heart - parent: FoodBakedBase - id: FoodBakedValentineDayCookie - description: Great cherry filling. And what does this have to do with slimeballs? - components: - - type: FlavorProfile - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/misc.rsi - state: cookie_heart - -- type: entity - name: candy - parent: FoodBakedBase - id: FoodBakedValentineDaySnack - description: Small tasty candy. - components: - - type: FlavorProfile - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/misc.rsi - state: candy_snack - - type: Tag - tags: - - Candy - -- type: entity - name: hanami dango - parent: FoodBakedBase - id: FoodBakedHanamiDango - description: Sweetness in the form of round rice dumplings threaded on wooden skewers. Mmm, this chef knows his stuff! - components: - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/misc.rsi - state: hanami_dango - - type: FlavorProfile - flavors: - - sakura - - type: Tag - tags: - - Meat - - ClothMade - - type: SolutionContainerManager - solutions: - food: - maxVol: 15 - reagents: - - ReagentId: Nutriment - Quantity: 10 - - ReagentId: JuiceBerry - Quantity: 5 diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Meals/meals.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Meals/meals.yml deleted file mode 100644 index 8493511136a..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Consumable/Food/Meals/meals.yml +++ /dev/null @@ -1,29 +0,0 @@ -- type: entity - name: onigiri - parent: FoodMealBase - id: FoodMealOnigiriMeat - description: Pretty much like the native OSG. - components: - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Meals/onigiri.rsi - state: icon - - type: FlavorProfile - flavors: - - anime - - type: Tag - tags: - - Meat - - type: SolutionContainerManager - solutions: - food: - maxVol: 15 - reagents: - - ReagentId: Protein - Quantity: 10 - - ReagentId: Nutriment - Quantity: 5 - - -- type: entity - parent: FoodMealOnigiriMeat - id: FoodMealOnigiriFish diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Decoration/Misc/bones.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Decoration/Misc/bones.yml deleted file mode 100644 index bb18f01a03a..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Decoration/Misc/bones.yml +++ /dev/null @@ -1,40 +0,0 @@ -- type: entity - id: BaseDecorativeBone - abstract: true - parent: BaseItem - name: rib - description: Dried by wind and time. It seems to be inside... - components: - - type: Sprite - sprite: Exodus/Objects/Decoration/bones.rsi - scale: 0.5,0.5 - -- type: entity - id: DecorativeOldBone - parent: BaseDecorativeBone - components: - - type: Sprite - state: bone - -- type: entity - id: DecorativeOldBoneAlt1 - parent: BaseDecorativeBone - components: - - type: Sprite - state: bone1 - -- type: entity - id: DecorativeOldBones - parent: BaseDecorativeBone - name: ribs - description: Dried by wind and time. They seem to be inside... - components: - - type: Sprite - state: bones - -- type: entity - id: DecorativeOldBonesAlt1 - parent: DecorativeOldBones - components: - - type: Sprite - state: bones1 diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Devices/fan_electronic.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Devices/fan_electronic.yml deleted file mode 100644 index 9f6710528b0..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Devices/fan_electronic.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: entity - id: AASElectronics - parent: BaseElectronics - name: AAS electronics - description: Circuit used in AAS construction. - components: - - type: Sprite - sprite: Objects/Misc/module.rsi - state: charger_APC - - type: PhysicalComposition - materialComposition: - Glass: 50 - chemicalComposition: - Silicon: 20 - - type: StaticPrice - price: 3000 - - type: Tag - tags: - - AASElectronics diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Devices/shock_collar.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Devices/shock_collar.yml deleted file mode 100644 index e1010ce5a21..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Devices/shock_collar.yml +++ /dev/null @@ -1,37 +0,0 @@ -- type: entity - parent: Clothing - id: ClothingNeckShockCollar - name: shock collar - suffix: SelfUnremovable - description: An electric collar that shocks on the signal. - components: - - type: Item - size: Small - - type: Sprite - sprite: Exodus/Clothing/Neck/Misc/shock_collar.rsi - state: icon - - type: Clothing - sprite: Exodus/Clothing/Neck/Misc/shock_collar.rsi - stripDelay: 10 - equipDelay: 5 # to avoid accidentally falling into the trap associated with SelfUnremovableClothing - quickEquip: true - slots: - - neck - - type: SelfUnremovableClothing - - type: ShockOnTrigger - damage: 5 - duration: 3 - cooldown: 4 - ignoreInsulation: true - - type: TriggerOnSignal - - type: DeviceLinkSink - ports: - - Trigger - - type: GuideHelp - guides: - - Security - - type: StealTarget - stealGroup: ClothingNeckShockCollar - - type: Tag - tags: - - WhitelistChameleon diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Fun/plushie.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Fun/plushie.yml deleted file mode 100644 index a393b2a3b10..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Fun/plushie.yml +++ /dev/null @@ -1,136 +0,0 @@ -# - type: entity -# parent: PlushieLizard -# id: PlushLokilife -# name: Lokilife -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_lokilife -# - type: MeleeWeapon -# wideAnimationRotation: -135 -# damage: -# types: -# Heat: 8 -# soundHit: -# collection: MetalThud -# - type: Extractable -# juiceSolution: -# reagents: -# - ReagentId: Chlorine -# Quantity: 3 -# - ReagentId: Fluorine -# Quantity: 9 -# - type: DamageOnInteract -# damage: -# types: -# Holy: 10 -# - type: SolutionContainerManager -# solutions: -# food: -# maxVol: 22 -# canReact: false -# reagents: -# - ReagentId: Fiber -# Quantity: 10 -# - ReagentId: Chlorine -# Quantity: 3 -# - ReagentId: Fluorine -# Quantity: 9 - -# - type: entity -# parent: PlushieMoth -# id: PlushFragoler -# name: Fragoler -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_fragoler -# - type: PointLight -# enabled: true -# radius: 12 -# energy: 0.55 -# color: "#fcc860" - -# - type: entity -# parent: BasePlushie -# id: PlushAsler -# name: Askolot -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_asler -# - type: Extractable -# juiceSolution: -# reagents: -# - ReagentId: Amatoxin -# Quantity: 20 -# - type: SolutionContainerManager -# solutions: -# food: -# maxVol: 20 -# reagents: -# - ReagentId: Fiber -# Quantity: 10 -# - ReagentId: Amatoxin -# Quantity: 10 - -# - type: entity -# parent: BasePlushie -# id: Plushloxmat -# name: Loxmat -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_loxmat -# scale: 0.75, 0.75 - -# - type: entity -# parent: BasePlushie -# id: PlushAtima -# name: Atima -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_atima -# - type: Extractable -# juiceSolution: -# reagents: -# - ReagentId: Omnizine -# Quantity: 20 -# - type: SolutionContainerManager -# solutions: -# food: -# maxVol: 20 -# reagents: -# - ReagentId: Fiber -# Quantity: 10 -# - ReagentId: Omnizine -# Quantity: 10 - -# - type: entity -# parent: PlushieMoth -# id: PlushJidor -# name: Jidor -# components: -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_jidor -# - type: MeleeWeapon -# wideAnimationRotation: -135 -# damage: -# types: -# Blunt: 5 -# soundHit: -# path: /Audio/Weapons/egloves.ogg - -# - type: entity -# parent: BasePlushie -# id: PlushieHeart -# name: plush heart -# description: Allows you to give your hand and heart. Hand is not included in the set. -# components: -# - type: Item -# size: Normal -# - type: Sprite -# sprite: Exodus/Objects/Fun/toys.rsi -# state: plush_heart diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/flowers.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/flowers.yml deleted file mode 100644 index 7ebe481aba0..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/flowers.yml +++ /dev/null @@ -1,59 +0,0 @@ -- type: entity - name: lilie - parent: BaseItem - id: FlowerLilie - description: Hmm, smells good! - components: - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/lilie.rsi - state: flower - scale: 0.6,0.6 - - type: Item - heldPrefix: flower - - type: Produce - seedId: lilie - -- type: entity - name: sunflower - parent: BaseItem - id: Sunflower - description: Like a little sun! - components: - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/sunflower.rsi - state: flower - scale: 0.6,0.6 - - type: Item - heldPrefix: flower - - type: Produce - seedId: sunflower - -- type: entity - name: rose - parent: BaseItem - id: FlowerRose - description: Red, like a spilled blood... - components: - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/rose.rsi - state: flower - scale: 0.6,0.6 - - type: Item - heldPrefix: flower - - type: Produce - seedId: rose - -- type: entity - name: field flowers - parent: BaseItem - id: FieldFlower - description: Allergic's nightmare - components: - - type: Sprite - sprite: Exodus/Objects/Specific/Hydroponics/fieldflower.rsi - state: flower - scale: 0.6,0.6 - - type: Item - heldPrefix: flower - - type: Produce - seedId: fieldflower diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/fluff_lights.yml deleted file mode 100644 index 0f1ab36d069..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/fluff_lights.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: entity - name: rare lamp - id: ValentineDayLamp - parent: BaseLamp - description: Reminds me of a rustic cabin... - components: - - type: Sprite - sprite: Exodus/Objects/Misc/Lights/love_lamp.rsi - layers: - - state: lamp_heart - map: [ "base" ] - - state: lamp_heart-on - shader: unshaded - visible: false - map: [ "light" ] - - type: Item - sprite: Exodus/Objects/Misc/Lights/love_lamp.rsi - - type: PointLight - color: "#ff83c5" diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/implanters.yml deleted file mode 100644 index 08fbbc3c56c..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/implanters.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - id: StimulantsImplanter - parent: BaseImplantOnlyImplanterSyndi - suffix: Stimulants - components: - - type: Implanter - implant: StimulantsImplant - -- type: entity - id: CombatInjectorImplanter - parent: BaseImplantOnlyImplanterSyndi - suffix: Combat Injector - components: - - type: Implanter - implant: CombatInjectorImplant diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/paper.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/paper.yml deleted file mode 100644 index 2d7daabc0d1..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/paper.yml +++ /dev/null @@ -1,105 +0,0 @@ -- type: entity - name: love envelope - parent: BaseItem - id: ValentineCard - description: For special occasions. - components: - - type: Sprite - sprite: Exodus/Objects/Misc/bureaucracy.rsi - layers: - - state: valentinka_open - map: ["enum.EnvelopeVisualLayers.Open"] - - state: valentinka_closed - map: ["enum.EnvelopeVisualLayers.Sealed"] - visible: false - - state: valentinka_torn - map: ["enum.EnvelopeVisualLayers.Torn"] - visible: false - - type: Paper - content: envelope-default-message - - type: PaperVisuals - headerImagePath: "/Textures/Interface/Paper/paper_heading_postage_stamp.svg.96dpi.png" - headerMargin: 216.0, 0.0, 0.0, 0.0 - contentMargin: 0.0, 0.0, 0.0, 0.0 - maxWritableArea: 368.0, 256.0 - backgroundModulate: "#fbd6e0" - - type: Envelope - - type: ContainerContainer - containers: - letter_slot: !type:ContainerSlot - - type: ItemSlots - slots: - letter_slot: - name: envelope-letter-slot - insertSound: /Audio/Effects/packetrip.ogg - ejectSound: /Audio/Effects/packetrip.ogg - whitelist: - tags: - - Paper - - type: ActivatableUI - key: enum.PaperUiKey.Key - requiresComplex: false - - type: UserInterface - interfaces: - enum.PaperUiKey.Key: - type: PaperBoundUserInterface - - type: Item - size: Tiny - - type: Tag - tags: - - Trash - - Document - - type: Flammable - fireSpread: true - canResistFire: false - alwaysCombustible: true - canExtinguish: true - damage: - types: - Heat: 1 - - type: FireVisuals - sprite: Effects/fire.rsi - normalState: fire - - type: Damageable - damageModifierSet: Wood - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 15 - behaviors: - - !type:EmptyAllContainersBehaviour - - !type:DoActsBehavior - acts: [ "Destruction" ] - -- type: entity - name: scroll for a special occasion - parent: Paper - id: PaperValentineDay - description: Craft paper for your special occasion. - components: - - type: Sprite - sprite: Exodus/Objects/Misc/bureaucracy.rsi - layers: - - state: love_paper - - state: love_paper_words - map: ["enum.PaperVisualLayers.Writing"] - visible: false - - type: PaperVisuals - backgroundModulate: "#dfd6b2" - -- type: entity - name: valentine card - parent: Paper - id: PaperValentineCard - description: For someone special... - components: - - type: Sprite - sprite: Exodus/Objects/Misc/bureaucracy.rsi - layers: - - state: paper_heart - - state: paper_heart_words - map: ["enum.PaperVisualLayers.Writing"] - visible: false - - type: PaperVisuals - backgroundModulate: "#ff1861" diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/seal.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/seal.yml deleted file mode 100644 index 943c14f20ff..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/seal.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: entity - parent: BaseItem - id: DeactivatedSeal - name: deactivated seal - description: Deactivated seal of something that was sealed earlier. Useless now. - components: - - type: Sprite - sprite: Exodus/Objects/Misc/seal.rsi - state: seal \ No newline at end of file diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/secret_documents.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/secret_documents.yml deleted file mode 100644 index 792c115a489..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/secret_documents.yml +++ /dev/null @@ -1,60 +0,0 @@ -- type: entity - parent: BaseItem - id: BookSecretDocuments - components: - - type: Sprite - sprite: Exodus/Objects/Misc/secret_documents.rsi - layers: - - state: folder-sec-doc - - state: sec-doc_seal - map: ["seal_layer"] - visible: true - - type: Seal - sealType: AccessSeal - sealTime: 10 - willAnnounce: true - spawnOnUnseal: DeactivatedSeal - announceTitle: seal-secret-documents-unseal-title - announceText: seal-secret-documents-unseal-text - - type: ItemSlots - slots: - item: - name: NuclearCodes - insertVerbText: secret-documents-insert-verb - ejectVerbText: secret-documents-eject-verb - whitelist: - tags: - - NuclearCodes - - type: AccessReader - access: [ [ "Command" ] ] - - type: Appearance - - type: GenericVisualizer - visuals: - enum.SealVisual.Sealed: - seal_layer: - True: { visible: true } - False: { visible: false } - - type: Tag - tags: - - Book - - HighRiskItem - - type: ContainerFill - containers: - item: - - NuclearCodeRecord - -- type: entity - parent: BaseItem - id: NuclearCodeRecord - name: nuclear code records - components: - - type: Sprite - sprite: Exodus/Objects/Misc/secret_documents.rsi - state: records - - type: NukeCodeRecord - - type: Tag - tags: - - NuclearCodes - - HighRiskItem - - type: StealTarget - stealGroup: BookSecretDocuments diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/subdermal_implants.yml deleted file mode 100644 index 82ae3885bc1..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/subdermal_implants.yml +++ /dev/null @@ -1,47 +0,0 @@ -- type: entity - parent: BaseSubdermalImplant - id: StimulantsImplant - name: Stimulants implant - description: Inject to the bloodstream some stimulant - categories: [HideSpawnMenu] - components: - - type: SubdermalImplant - implantAction: ActionStimulantsImplant - - type: TriggerImplantAction - - type: SolutionContainerManager - solutions: - sol1: - maxVol: 45 - reagents: - - ReagentId: Stimulants - Quantity: 45 - - type: InjectOnTrigger - solutions: - - name: sol1 - charges: 3 - transferAmount: 15 - -- type: entity - parent: BaseSubdermalImplant - id: CombatInjectorImplant - name: combat injector implant - description: Inject to the bloodstream some healing reagents - categories: [HideSpawnMenu] - components: - - type: SubdermalImplant - implantAction: ActionCombatInjectorImplant - - type: TriggerImplantAction - - type: SolutionContainerManager - solutions: - sol1: - maxVol: 90 - reagents: - - ReagentId: Omnizine - Quantity: 75 - - ReagentId: TranexamicAcid - Quantity: 15 - - type: InjectOnTrigger - solutions: - - name: sol1 - charges: 3 - transferAmount: 30 diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/tiles.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Misc/tiles.yml deleted file mode 100644 index e397c955292..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Misc/tiles.yml +++ /dev/null @@ -1,47 +0,0 @@ -- type: entity - parent: FloorTileItemBase - id: FloorTileItemConcreteWOWeather - name: concrete tile - components: - - type: Sprite - state: concrete - - type: Item - heldPrefix: generic - - type: FloorTile - outputs: - - Plating - - FloorConcreteWOWeather - - type: Stack - stackType: FloorTileConcreteWOWeather - -- type: entity - parent: FloorTileItemBase - id: FloorTileItemGrayConcreteWOWeather - name: gray concrete tile - components: - - type: Sprite - state: grayconcrete - - type: Item - heldPrefix: generic - - type: FloorTile - outputs: - - Plating - - FloorGrayConcreteWOWeather - - type: Stack - stackType: FloorTileGrayConcreteWOWeather - -- type: entity - parent: FloorTileItemBase - id: FloorTileItemOldConcreteWOWeather - name: old concrete tile - components: - - type: Sprite - state: oldconcrete - - type: Item - heldPrefix: generic - - type: FloorTile - outputs: - - Plating - - FloorOldConcreteWOWeather - - type: Stack - stackType: FloorTileOldConcreteWOWeather diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Specific/Medical/mechanical_injector.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Specific/Medical/mechanical_injector.yml deleted file mode 100644 index 797c59ba48b..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Specific/Medical/mechanical_injector.yml +++ /dev/null @@ -1,90 +0,0 @@ -- type: entity - id: MechanicalInjector - parent: BaseSyringe - name: mechanical injector - description: A special injector for races with thick skin. Intimidating enough to make your patient more careful. Please don't use it to intimidate the crew. - components: - - type: Injector - transferAmount: 15 - toggleState: Draw - effectsAfterInjection: - - !type:Emote - conditions: - - !type:HasTag - tag: ThickSkin - invert: true - - !type:IsMob - emote: Scream - showInChat: true - - !type:HealthChange - conditions: - - !type:HasTag - tag: ThickSkin - invert: true - - !type:IsMob - damage: - types: - Piercing: 10 - - !type:ModifyBleedAmount - conditions: - - !type:HasTag - tag: ThickSkin - invert: true - - !type:IsMob - amount: 5 - - !type:PopupMessage - conditions: - - !type:HasTag - tag: ThickSkin - invert: true - - !type:IsMob - visualType: MediumCaution - messages: ["mechanical-injector-effect-pain-message"] - - type: Sprite - sprite: Exodus/Objects/Specific/Medical/mechanical_injector.rsi - layers: - - state: icon - map: ["enum.SolutionContainerLayers.Base"] - - state: syringe1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: SolutionContainerVisuals - maxFillLevels: 2 - fillBaseName: syringe - inHandsMaxFillLevels: 0 - - type: Icon - sprite: Exodus/Objects/Specific/Medical/mechanical_injector.rsi - state: icon - - type: Item - size: Small - sprite: Exodus/Objects/Specific/Medical/mechanical_injector.rsi - - type: Tag - tags: - - Syringe - - ThickSyringe - -#region Prefilled -- type: entity - parent: MechanicalInjector - id: PrefilledMechanicalInjector - abstract: true - components: - - type: Injector - toggleState: Inject - -- type: entity - suffix: epinephrine - parent: PrefilledMechanicalInjector - id: MechanicalInjectorEpinephrine - components: - - type: Label - currentLabel: reagent-name-epinephrine - - type: SolutionContainerManager - solutions: - injector: - maxVol: 15 - reagents: - - ReagentId: Epinephrine - Quantity: 10 - - ReagentId: TranexamicAcid - Quantity: 5 diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Storage/box.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Storage/box.yml deleted file mode 100644 index d458cff2a07..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Storage/box.yml +++ /dev/null @@ -1,117 +0,0 @@ -- type: entity - name: gift box - parent: BoxCardboard - id: ValentineDayGiftBox - description: It's shockproof, no world mail has affected it. - components: - - type: Sprite - sprite: Exodus/Objects/Storage/boxes.rsi - layers: - - state: icon - map: [ base ] - - type: Storage - maxItemSize: Normal - grid: - - 0,0,1,1 - - type: Item - size: Large - shape: - - 0,0,1,1 - - type: GenericVisualizer - visuals: - enum.StorageVisuals.Open: - base: - True: { state: icon-open } - False: { state: icon } - -- type: entity - id: CandyBoxHeart - parent: BaseStorageItem - name: heart-shaped box - description: What's inside? Chocolate? - components: - - type: Sprite - sprite: Exodus/Objects/Storage/candy_box.rsi - scale: 0.6,0.6 - layers: - - map: [ base ] - state: icon - - type: Storage - maxItemSize: Small - grid: - - 0,0,2,2 - - type: Item - size: Large - shape: - - 0,0,2,2 - - type: GenericVisualizer - visuals: - enum.StorageVisuals.Open: - base: - True: { state: icon-open } - False: { state: icon } - - type: Appearance - - type: Construction - graph: CandyboxHeart - node: candyboxHeart - -- type: entity - id: CandyBox - parent: BaseStorageItem - name: box full of surprises - description: All the good stuff inside! - components: - - type: Sprite - sprite: Exodus/Objects/Consumable/Food/Baked/misc.rsi - layers: - - map: [ base ] - state: candy_box - - state: candy1 - map: ["candy1"] - visible: false - - state: candy2 - map: ["candy2"] - visible: false - - state: candy3 - map: ["candy3"] - visible: false - - state: candy4 - map: ["candy4"] - visible: false - - state: candy5 - map: ["candy5"] - visible: false - - state: candy6 - map: ["candy6"] - visible: false - - type: Storage - maxItemSize: Small - grid: - - 0,0,2,1 - - type: Item - size: Large - shape: - - 0,0,1,1 - - type: GenericVisualizer - visuals: - enum.StorageVisuals.Open: - base: - True: { state: candy_box_open } - False: { state: candy_box } - - type: Appearance - - type: ItemCounter - count: - tags: [Candy] - composite: true - layerStates: - - candy1 - - candy2 - - candy3 - - candy4 - - candy5 - - candy6 - - type: StorageFill - contents: - - id: FoodBakedValentineDaySnack - amount: 6 - diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Bow/bow.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Bow/bow.yml deleted file mode 100644 index a9397b2b863..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Bow/bow.yml +++ /dev/null @@ -1,41 +0,0 @@ -- type: entity - id: ValentineDayBow - parent: BaseBow - name: cupid's bow - description: Love that hurts. - components: - - type: Sprite - sprite: Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi - layers: - - state: unwielded - map: [ base ] - - state: unwielded-arrow - map: [ arrow ] - visible: false - - type: Appearance - - type: ItemMapper - spriteLayers: - - arrow - mapLayers: - arrow: - whitelist: - tags: - - ValentineDayArrow - - type: GenericVisualizer - visuals: - enum.WieldableVisuals.Wielded: - arrow: - True: { state: wielded-arrow } - False: { state: unwielded-arrow } - base: - True: { state: wielded } - False: { state: unwielded } - - type: ItemSlots - slots: - projectiles: - name: Projectiles - startingItem: null - insertSound: /Audio/Weapons/Guns/Misc/arrow_nock.ogg - whitelist: - tags: - - ValentineDayArrow diff --git a/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml deleted file mode 100644 index 3e57e58d654..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ /dev/null @@ -1,36 +0,0 @@ -- type: entity - parent: BaseArrow - id: ValentineDayArrow - name: cupid's arrow - description: Love that hurts. - components: - - type: Sprite - sprite: Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi - layers: - - state: love_arrow - - state: solution1 - map: ["enum.SolutionContainerLayers.Fill"] - visible: false - - type: Projectile - damage: - types: - Piercing: 5 - - type: SolutionContainerManager - solutions: - ammo: - maxVol: 10 - reagents: - - ReagentId: Laughter - Quantity: 10 - - type: Tag - tags: - - ValentineDayArrow - - type: RefillableSolution - solution: ammo - - type: InjectableSolution - solution: ammo - - type: SolutionInjectOnEmbed - transferAmount: 10 - solution: ammo - - type: SolutionTransfer - maxTransferAmount: 10 diff --git a/Resources/Prototypes/_Exodus/Entities/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_Exodus/Entities/Storage/Closets/Lockers/lockers.yml deleted file mode 100644 index 77716197c7b..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Storage/Closets/Lockers/lockers.yml +++ /dev/null @@ -1,63 +0,0 @@ - -- type: entity - id: LockerScientistResprite - parent: LockerScientist - name: Scientist closet - suffix: Resprite - components: - - type: Appearance - - type: Sprite - sprite: Exodus/Structures/Storage/closet.rsi - noRot: true - layers: - - state: science_suit - map: ["enum.StorageVisualLayers.Base"] - - state: science_suit_door - map: ["enum.StorageVisualLayers.Door"] - - state: locked - map: ["enum.LockVisualLayers.Lock"] - shader: unshaded - - state: welded - visible: false - map: ["enum.WeldableLayers.BaseWelded"] - - type: EntityStorageVisuals - stateBaseClosed: science_suit - stateDoorOpen: science_suit_open - stateDoorClosed: science_suit_door - - type: AccessReader - access: [ [ "Research" ] ] -- type: entity - id: LockerScienceSuitFilledResprite - suffix: Filled, Hardsuit, Resprite - parent: LockerScientistResprite - name: Scientist closet - components: - - type: StorageFill - contents: - - id: ClothingHandsGlovesLatex - - id: ClothingHeadsetScience - - id: ClothingMaskSterile - - id: ClothingOuterCoatRnd - - id: AnomalyScanner - - id: NodeScanner - - id: NetworkConfigurator - prob: 0.5 - - id: ClothingOuterHardsuitRnd - -- type: entity - id: LockerScienceSuitFilled - suffix: Filled, Hardsuit - parent: LockerScientist - name: Scientist closet - components: - - type: StorageFill - contents: - - id: ClothingHandsGlovesLatex - - id: ClothingHeadsetScience - - id: ClothingMaskSterile - - id: ClothingOuterCoatRnd - - id: AnomalyScanner - - id: NodeScanner - - id: NetworkConfigurator - prob: 0.5 - - id: ClothingOuterHardsuitRnd diff --git a/Resources/Prototypes/_Exodus/Entities/Structures/Atmospheric/tiny_fan.yml b/Resources/Prototypes/_Exodus/Entities/Structures/Atmospheric/tiny_fan.yml deleted file mode 100644 index 9d9b442a0e0..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Structures/Atmospheric/tiny_fan.yml +++ /dev/null @@ -1,69 +0,0 @@ - -- type: entity - categories: [ HideSpawnMenu ] - id: AtmosDeviceFanFrame - name: tiny fan - description: A tiny fan, releasing a thin gust of air. - components: - - type: InteractionOutline - - type: Clickable - - type: Transform - anchored: true - - type: Sprite - sprite: Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi - state: tinyfan-carcas - - type: Construction - graph: AtmosDeviceFan - node: AtmosDeviceFanFrame - - type: Physics - bodyType: Static - fixedRotation: true - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.05,-0.05,0.05,0.05" - density: 190 - mask: - - MachineMask - layer: - - MachineLayer - - type: Damageable - damageContainer: StructuralInorganic - damageModifierSet: StructuralMetallic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 200 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 50 - behaviors: - - !type:SpawnEntitiesBehavior - spawn: - SheetSteel1: - min: 1 - max: 1 - - !type:PlaySoundBehavior - sound: - collection: MetalBreak - - !type:DoActsBehavior - acts: [ "Destruction" ] - -- type: entity - categories: [ HideSpawnMenu ] - id: AtmosDeviceFanFrameWire - parent: AtmosDeviceFanFrame - components: - - type: Construction - graph: AtmosDeviceFan - node: AtmosDeviceFanFrameWire - - type: Sprite - sprite: Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi - state: tinyfan-carcas-two - diff --git a/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/arcs.yml b/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/arcs.yml deleted file mode 100644 index fd2352145e5..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/arcs.yml +++ /dev/null @@ -1,78 +0,0 @@ -- type: entity - id: BaseDungeonArc - abstract: true - name: old faith arch - description: A fancy arch with multiple patterns. It seems to be made of bone. It seems it shouldn't be here... - placement: - mode: SnapgridCenter - components: - - type: Sprite - sprite: Exodus/Structures/Decoration/arcs.rsi - drawdepth: OverMobs - - type: Clickable - - type: SpriteFade - - type: Physics - bodyType: Static - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-2.5,-1.3,-1.5,0" - mask: - - FullTileMask - layer: - - WallLayer - density: 1000 - fix2: - shape: - !type:PhysShapeAabb - bounds: "1.5,0,2.5,-1.3" - mask: - - FullTileMask - layer: - - WallLayer - density: 1000 - -- type: entity - id: DungeonArc - parent: BaseDungeonArc - components: - - type: Sprite - state: arc - -- type: entity - id: DungeonArcAlt1 - parent: BaseDungeonArc - components: - - type: Sprite - state: arc1 - -- type: entity - id: DungeonArcAlt2 - parent: BaseDungeonArc - components: - - type: Physics - canCollide: false - - type: Sprite - state: arc2 - -- type: entity - id: DungeonArcBlockage - parent: BaseDungeonArc - name: blockage - description: Deaf. Dead end. It's worth looking for another road. - components: - - type: Sprite - state: blockage - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-2,-0.8,2,0.8" - mask: - - FullTileMask - layer: - - WallLayer - density: 1000 diff --git a/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/statues.yml b/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/statues.yml deleted file mode 100644 index 60f429e77a1..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Structures/Decoration/statues.yml +++ /dev/null @@ -1,51 +0,0 @@ -- type: entity - id: BaseExodusStatue - abstract: true - parent: BaseStructure - placement: - mode: SnapgridCenter - components: - - type: Sprite - sprite: Exodus/Structures/Decoration/statues.rsi - drawdepth: Mobs - offset: "0.0,0.5" - noRot: true - - type: HeldSpeedModifier - walkModifier: 0.1 - sprintModifier: 0.1 - -- type: entity - id: DrakeStatue - name: stone guardian - description: An ancient replica of a powerful creature. Too lifelike to be a mere imitator. - parent: BaseExodusStatue - components: - - type: Sprite - state: drake - -- type: entity - parent: BaseExodusStatue - id: DrakeStatueOld - name: old stone guardian - description: Desecrated and disfigured. Looks at you with hatred. - components: - - type: Sprite - state: drake_old - -- type: entity - parent: BaseExodusStatue - id: ObedientStatue - name: obedient statue - description: Nobody knows who he is. Maybe someone important. - components: - - type: Sprite - state: obedient - -- type: entity - parent: BaseExodusStatue - id: AdeptStatue - name: adept statue - description: Knowing the other side of the coin. Covered in an unpleasant sticky substance. - components: - - type: Sprite - state: adept diff --git a/Resources/Prototypes/_Exodus/Entities/Structures/Furniture/potted_plants.yml b/Resources/Prototypes/_Exodus/Entities/Structures/Furniture/potted_plants.yml deleted file mode 100644 index 935e8cc3cdc..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Structures/Furniture/potted_plants.yml +++ /dev/null @@ -1,17 +0,0 @@ -- type: entity - id: PottedValentineDayPlant1 - parent: PottedPlantBase - name: potted plant - description: A lovely piece of nature encased in a vase. - components: - - type: Sprite - sprite: Exodus/Structures/Furniture/potted_plants.rsi - state: plant-01 - -- type: entity - id: PottedValentineDayPlant2 - parent: PottedValentineDayPlant1 - components: - - type: Sprite - sprite: Exodus/Structures/Furniture/potted_plants.rsi - state: plant-02 diff --git a/Resources/Prototypes/_Exodus/Entities/Structures/Lighting/ground_lightning.yml b/Resources/Prototypes/_Exodus/Entities/Structures/Lighting/ground_lightning.yml deleted file mode 100644 index ec563820037..00000000000 --- a/Resources/Prototypes/_Exodus/Entities/Structures/Lighting/ground_lightning.yml +++ /dev/null @@ -1,28 +0,0 @@ -- type: entity - id: ElmosFire - name: St. Elmo's Fire - description: After so many years... - suffix: Not burning - parent: BaseStructure - components: - - type: Sprite - sprite: Exodus/Structures/Lighting/Decoration/elmosfire.rsi - noRot: true - offset: "0.0,0.5" - state: base - - type: PointLight - radius: 10 - energy: 2.5 - softness: 0.9 - color: "#FF6F00FF" - - type: HeldSpeedModifier - walkModifier: 0.1 - sprintModifier: 0.1 - -- type: entity - id: ElmosFireLighten - parent: ElmosFire - suffix: Burning - components: - - type: Sprite - state: glow diff --git a/Resources/Prototypes/_Exodus/Flavors/flavors.yml b/Resources/Prototypes/_Exodus/Flavors/flavors.yml deleted file mode 100644 index 6cbfe3e7a1e..00000000000 --- a/Resources/Prototypes/_Exodus/Flavors/flavors.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: flavor - id: sakura - flavorType: Complex - description: flavor-complex-sakura - -- type: flavor - id: anime - flavorType: Complex - description: flavor-complex-anime - -- type: flavor - id: flowermadness - flavorType: Complex - description: flavor-complex-flower-madness - -- type: flavor - id: berrycreampie - flavorType: Complex - description: flavor-complex-berry-creampie diff --git a/Resources/Prototypes/_Exodus/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/_Exodus/Loadouts/Miscellaneous/survival.yml deleted file mode 100644 index 06e1d853381..00000000000 --- a/Resources/Prototypes/_Exodus/Loadouts/Miscellaneous/survival.yml +++ /dev/null @@ -1,60 +0,0 @@ -- type: loadoutEffectGroup - id: ThickSkinOxygenBreather - effects: - - !type:SpeciesLoadoutEffect - species: - - Reptilian - -- type: loadout - id: EmergencyOxygenMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxSurvivalMechInjector - -- type: loadout - id: EmergencyOxygenExtendedMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxSurvivalEngineeringMechInjector - -- type: loadout - id: EmergencyOxygenSecurityMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxSurvivalSecurityMechInjector - -- type: loadout - id: EmergencyOxygenMedicalMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxSurvivalMedicalMechInjector - -- type: loadout - id: EmergencyOxygenClownMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxHugMechInjector - -- type: loadout - id: EmergencyOxygenMimeMechInjector - effects: - - !type:GroupLoadoutEffect - proto: ThickSkinOxygenBreather - storage: - back: - - BoxMimeMechInjector diff --git a/Resources/Prototypes/_Exodus/Objectives/stealTargetGroups.yml b/Resources/Prototypes/_Exodus/Objectives/stealTargetGroups.yml deleted file mode 100644 index 70eb8fef85a..00000000000 --- a/Resources/Prototypes/_Exodus/Objectives/stealTargetGroups.yml +++ /dev/null @@ -1,6 +0,0 @@ -- type: stealTargetGroup - id: BookSecretDocuments - name: steal-target-groups-book-secret-documents - sprite: - sprite: Exodus/Objects/Misc/secret_documents.rsi - state: folder-sec-doc diff --git a/Resources/Prototypes/_Exodus/Objectives/traitor.yml b/Resources/Prototypes/_Exodus/Objectives/traitor.yml deleted file mode 100644 index 1ba5390e71f..00000000000 --- a/Resources/Prototypes/_Exodus/Objectives/traitor.yml +++ /dev/null @@ -1,12 +0,0 @@ -- type: entity - parent: BaseTraitorStealObjective - id: BookSecretDocumentsObjective - components: - - type: Objective - # HoS will have this on them a lot of the time so.. - difficulty: 3 - - type: NotJobRequirement - job: HeadOfSecurity - - type: StealCondition - stealGroup: BookSecretDocuments - owner: job-name-hos diff --git a/Resources/Prototypes/_Exodus/Polymorphs/polymorph.yml b/Resources/Prototypes/_Exodus/Polymorphs/polymorph.yml deleted file mode 100644 index 02d5b66e701..00000000000 --- a/Resources/Prototypes/_Exodus/Polymorphs/polymorph.yml +++ /dev/null @@ -1,10 +0,0 @@ -- type: polymorph - id: SlimeMorphGeras - configuration: - entity: MobSlimesGeras - transferName: true - transferHumanoidAppearance: false - inventory: Drop - transferDamage: true - revertOnDeath: true - revertOnCrit: true diff --git a/Resources/Prototypes/_Exodus/Reagents/biological.yml b/Resources/Prototypes/_Exodus/Reagents/biological.yml deleted file mode 100644 index f22a57160d0..00000000000 --- a/Resources/Prototypes/_Exodus/Reagents/biological.yml +++ /dev/null @@ -1,11 +0,0 @@ -- type: reagent - parent: Blood - id: ZessulBlood - name: reagent-name-zessul-blood - group: Biological - desc: reagent-desc-zessul-blood - flavor: metallic - color: "#800000" - recognizable: true - physicalDesc: reagent-physical-desc-ferrous - slippery: false diff --git a/Resources/Prototypes/_Exodus/Reagents/drinks.yml b/Resources/Prototypes/_Exodus/Reagents/drinks.yml deleted file mode 100644 index 6b989f946e5..00000000000 --- a/Resources/Prototypes/_Exodus/Reagents/drinks.yml +++ /dev/null @@ -1,16 +0,0 @@ -- type: reagent - id: BerryIceCream - name: reagent-name-berry-icecream - parent: BaseSoda - desc: reagent-desc-berry-icecream - physicalDesc: reagent-physical-desc-creamy - flavor: berrycreampie - color: "#fffbd6" - recognizable: true - metamorphicSprite: - sprite: Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi - state: icon_empty - metamorphicMaxFillLevels: 5 - metamorphicFillBaseName: fill- - metamorphicChangeColor: true - fizziness: 0 diff --git a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/clothing/maximal_salvage_harsuit.yml b/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/clothing/maximal_salvage_harsuit.yml deleted file mode 100644 index b8862c751f2..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/clothing/maximal_salvage_harsuit.yml +++ /dev/null @@ -1,33 +0,0 @@ -- type: constructionGraph - id: HardsuitSalvageMaximal - start: start - graph: - - node: start - edges: - - to: hardsuitSalvageMaximal - steps: - - tag: HardsuitGoliath - name: construction-graph-tag-goliath-hardsuit - icon: - sprite: Clothing/OuterClothing/Hardsuits/goliath.rsi - state: icon - - material: Durathread - amount: 5 - - tag: HivelordRemains - name: construction-graph-component-rorocore - icon: - sprite: Objects/Consumable/Food/rorocore.rsi - state: boiled - - tag: HivelordRemains - name: construction-graph-component-rorocore - icon: - sprite: Objects/Consumable/Food/rorocore.rsi - state: boiled - - tag: HivelordRemains - name: construction-graph-component-rorocore - icon: - sprite: Objects/Consumable/Food/rorocore.rsi - state: boiled - doAfter: 15 - - node: hardsuitSalvageMaximal - entity: ClothingOuterHardsuitSalvageMaximal \ No newline at end of file diff --git a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/misc/box.yml b/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/misc/box.yml deleted file mode 100644 index 9e5a2490802..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/misc/box.yml +++ /dev/null @@ -1,13 +0,0 @@ -- type: constructionGraph - id: CandyboxHeart - start: start - graph: - - node: start - edges: - - to: candyboxHeart - steps: - - material: Cardboard - amount: 3 - doAfter: 5 - - node: candyboxHeart - entity: CandyBoxHeart diff --git a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/utilities/tiny_fan.yml b/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/utilities/tiny_fan.yml deleted file mode 100644 index e0b11cd4fb2..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Construction/Graphs/utilities/tiny_fan.yml +++ /dev/null @@ -1,33 +0,0 @@ -- type: constructionGraph - id: AtmosDeviceFan - start: start - graph: - - node: start - edges: - - to: AtmosDeviceFanFrame - steps: - - material: Steel - amount: 5 - - - node: AtmosDeviceFanFrame - entity: AtmosDeviceFanFrame - edges: - - to: AtmosDeviceFanFrameWire - steps: - - material: CableMV - amount: 10 - doAfter: 1 - - - node: AtmosDeviceFanFrameWire - entity: AtmosDeviceFanFrameWire - edges: - - to: AtmosDeviceFan - steps: - - tag: AASElectronics - name: AAS Electronics - icon: - sprite: Objects/Misc/module.rsi - state: charger_APC - doAfter: 2 - - node: AtmosDeviceFan - entity: AtmosDeviceFanTiny diff --git a/Resources/Prototypes/_Exodus/Recipe/Construction/clothing.yml b/Resources/Prototypes/_Exodus/Recipe/Construction/clothing.yml deleted file mode 100644 index 7d9487a4ac5..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Construction/clothing.yml +++ /dev/null @@ -1,7 +0,0 @@ -- type: construction - id: HardsuitSalvageMaximal - graph: HardsuitSalvageMaximal - startNode: start - targetNode: hardsuitSalvageMaximal - category: construction-category-clothing - objectType: Item diff --git a/Resources/Prototypes/_Exodus/Recipe/Construction/structures.yml b/Resources/Prototypes/_Exodus/Recipe/Construction/structures.yml deleted file mode 100644 index ab646514f22..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Construction/structures.yml +++ /dev/null @@ -1,17 +0,0 @@ -- type: construction - name: diagonal wall - id: DiagonalWall - graph: Girder - startNode: start - targetNode: diagonalWall - category: construction-category-structures - description: Keeps the air in and the greytide out. - icon: - sprite: Structures/Walls/solid_diagonal.rsi - state: state0 - objectType: Structure - placementMode: SnapgridCenter - canRotate: true - canBuildInImpassable: false - conditions: - - !type:TileNotBlocked diff --git a/Resources/Prototypes/_Exodus/Recipe/Cooking/meal_recipes.yml b/Resources/Prototypes/_Exodus/Recipe/Cooking/meal_recipes.yml deleted file mode 100644 index 05fc30e593f..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Cooking/meal_recipes.yml +++ /dev/null @@ -1,63 +0,0 @@ -- type: microwaveMealRecipe - id: RecipeValentineDayCookie - name: slimeman heart - result: FoodBakedValentineDayCookie - time: 5 - solids: - FoodCherry: 1 - FoodButterSlice: 1 - reagents: - Flour: 10 - -- type: microwaveMealRecipe - id: RecipeValentineDaySnack - name: candy - result: FoodBakedValentineDaySnack - time: 5 - solids: - FoodButterSlice: 1 - reagents: - Flour: 5 - Cream: 5 - -- type: microwaveMealRecipe - id: RecipeLoveValentineDayFlowerPie - name: flower cake - result: FoodCakeValentineDayFlowerPie - time: 5 - solids: - FoodCakePlain: 1 - FlowerRose: 1 - FoodButterSlice: 1 - -- type: microwaveMealRecipe - id: RecipeFoodMealOnigiriMeat - name: onigiri - result: FoodMealOnigiriMeat - time: 5 - reagents: - Rice: 10 - Vinegar: 5 - solids: - FoodMeatCutlet: 1 - -- type: microwaveMealRecipe - id: RecipeFoodMealOnigiriFish - name: fish onigiri - result: FoodMealOnigiriFish - time: 5 - reagents: - Rice: 10 - Vinegar: 5 - solids: - FoodMeatFish: 1 - -- type: microwaveMealRecipe - id: RecipeFoodBakedHanamiDango - name: hanami dango - result: FoodBakedHanamiDango - time: 5 - reagents: - Rice: 10 - Sugar: 5 - JuiceBerry: 5 diff --git a/Resources/Prototypes/_Exodus/Recipe/Crafting/box.yml b/Resources/Prototypes/_Exodus/Recipe/Crafting/box.yml deleted file mode 100644 index 05b514bb779..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Crafting/box.yml +++ /dev/null @@ -1,12 +0,0 @@ -- type: construction - name: heart-shaped box - id: CandyboxHeart - graph: CandyboxHeart - startNode: start - targetNode: candyboxHeart - category: construction-category-misc - objectType: Item - description: It's shockproof, no world mail has affected it. - icon: - sprite: Exodus/Objects/Storage/candy_box.rsi - state: icon diff --git a/Resources/Prototypes/_Exodus/Recipe/Crafting/tiny_fan.yml b/Resources/Prototypes/_Exodus/Recipe/Crafting/tiny_fan.yml deleted file mode 100644 index 436aaf0df27..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Crafting/tiny_fan.yml +++ /dev/null @@ -1,13 +0,0 @@ -- type: construction - name: tiny fan - id: AtmosDeviceFanTiny - graph: AtmosDeviceFan - startNode: start - targetNode: AtmosDeviceFan - category: construction-category-utilities - description: "A tiny fan, releasing a thin gust of air." - icon: - sprite: Structures/Piping/Atmospherics/tinyfan.rsi - state: icon - objectType: Structure - placementMode: SnapgridCenter diff --git a/Resources/Prototypes/_Exodus/Recipe/Lathes/medical.yml b/Resources/Prototypes/_Exodus/Recipe/Lathes/medical.yml deleted file mode 100644 index 33324722536..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Lathes/medical.yml +++ /dev/null @@ -1,7 +0,0 @@ -- type: latheRecipe - id: MechanicalInjector - result: MechanicalInjector - completetime: 2 - materials: - Plastic: 100 - Steel: 50 diff --git a/Resources/Prototypes/_Exodus/Recipe/Reactions/drinks.yml b/Resources/Prototypes/_Exodus/Recipe/Reactions/drinks.yml deleted file mode 100644 index 4a4888b7269..00000000000 --- a/Resources/Prototypes/_Exodus/Recipe/Reactions/drinks.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: reaction - id: BerryIceCream - reactants: - JuiceBerry: - amount: 1 - IceCream: - amount: 1 - products: - BerryIceCream: 2 diff --git a/Resources/Prototypes/_Exodus/SoundCollections/emotes.yml b/Resources/Prototypes/_Exodus/SoundCollections/emotes.yml deleted file mode 100644 index 7043f980ab8..00000000000 --- a/Resources/Prototypes/_Exodus/SoundCollections/emotes.yml +++ /dev/null @@ -1,15 +0,0 @@ -#region Reptilian -- type: soundCollection - id: ReptilianGrowl - files: - - /Audio/Exodus/Voice/Reptilian/roar.ogg - - /Audio/Exodus/Voice/Reptilian/roar2.ogg - - /Audio/Exodus/Voice/Reptilian/roar3.ogg - - /Audio/Exodus/Voice/Reptilian/threat.ogg - - /Audio/Exodus/Voice/Reptilian/threat2.ogg - -- type: soundCollection - id: ReptilianRumble - files: - - /Audio/Exodus/Voice/Reptilian/rumble.ogg - - /Audio/Exodus/Voice/Reptilian/rumble2.ogg diff --git a/Resources/Prototypes/_Exodus/Tiles/floors.yml b/Resources/Prototypes/_Exodus/Tiles/floors.yml deleted file mode 100644 index 1b755756faa..00000000000 --- a/Resources/Prototypes/_Exodus/Tiles/floors.yml +++ /dev/null @@ -1,210 +0,0 @@ -- type: tile - id: FloorConcreteWOWeather - name: tiles-concrete-tile-weather - sprite: /Textures/Tiles/Planet/Concrete/concrete.png - suffix: weather - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorConcreteMonoWOWeather - name: tiles-gray-concrete-slab-weather - sprite: /Textures/Tiles/Planet/Concrete/concrete_mono.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorConcreteSmoothWOWeather - name: tiles-gray-concrete-smooth-weather - sprite: /Textures/Tiles/Planet/Concrete/concrete_smooth.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorGrayConcreteWOWeather - name: tiles-gray-concrete-tile-weather - sprite: /Textures/Tiles/Planet/Concrete/grayconcrete.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemGrayConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorGrayConcreteMonoWOWeather - name: tiles-gray-concrete-slab-weather - sprite: /Textures/Tiles/Planet/Concrete/grayconcrete_mono.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemGrayConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorGrayConcreteSmoothWOWeather - name: tiles-old-concrete-smooth-weather - sprite: /Textures/Tiles/Planet/Concrete/grayconcrete_smooth.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemGrayConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorOldConcreteWOWeather - name: tiles-old-concrete-tile-weather - sprite: /Textures/Tiles/Planet/Concrete/oldconcrete.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemOldConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorOldConcreteMonoWOWeather - name: tiles-old-concrete-slab-weather - sprite: /Textures/Tiles/Planet/Concrete/oldconcrete_mono.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemOldConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorOldConcreteSmoothWOWeather - name: tiles-old-concrete-smooth-weather - sprite: /Textures/Tiles/Planet/Concrete/oldconcrete_smooth.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - itemDrop: FloorTileItemOldConcreteWOWeather - heatCapacity: 10000 - weather: false - -- type: tile - id: FloorCobblestone - name: tiles-cobblestone - sprite: /Textures/Exodus/Tiles/cobblestone.png - isSubfloor: true - footstepSounds: - collection: FootstepAsteroid - heatCapacity: 10000 - weather: true - indestructible: true - -- type: tile - id: FloorCobblestonePlates - name: tiles-cobblestone-plates - sprite: /Textures/Exodus/Tiles/cobblestone_plates.png - isSubfloor: true - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - weather: true - indestructible: true - -- type: tile - id: FloorMarble - name: tiles-marble - sprite: /Textures/Exodus/Tiles/marble.png - variants: 4 - placementVariants: - - 1.0 - - 1.0 - - 1.0 - - 1.0 - isSubfloor: true - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - weather: true - indestructible: true diff --git a/Resources/Prototypes/_Exodus/Tiles/masonry.yml b/Resources/Prototypes/_Exodus/Tiles/masonry.yml deleted file mode 100644 index 61dcb21db00..00000000000 --- a/Resources/Prototypes/_Exodus/Tiles/masonry.yml +++ /dev/null @@ -1,247 +0,0 @@ -#region Brown -- type: tile - id: FloorMasonryBrown1 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown1.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown2 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown2.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown3 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown3.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown4 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown4.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown5 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown5.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown6 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-brown6.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryBrown7 - name: tiles-masonry-overgrown - sprite: /Textures/Exodus/Tiles/masonry-brown7.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 -#endregion - -#region Gray -- type: tile - id: FloorMasonryGray1 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray1.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray2 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray2.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray3 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray3.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray4 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray4.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray5 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray5.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray6 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-gray6.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryGray7 - name: tiles-masonry-overgrown - sprite: /Textures/Exodus/Tiles/masonry-gray7.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 -#endregion - -#region Light -- type: tile - id: FloorMasonryLight1 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light1.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight2 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light2.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight3 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light3.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight4 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light4.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight5 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light5.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight6 - name: tiles-masonry - sprite: /Textures/Exodus/Tiles/masonry-light6.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight7 - name: tiles-masonry-overgrown - sprite: /Textures/Exodus/Tiles/masonry-light7.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 - -- type: tile - id: FloorMasonryLight8 - name: tiles-masonry-overgrown - sprite: /Textures/Exodus/Tiles/masonry-light8.png - baseTurf: Plating - isSubfloor: false - deconstructTools: [ Prying ] - footstepSounds: - collection: FootstepTile - heatCapacity: 10000 -#endregion diff --git a/Resources/Prototypes/_Exodus/Voice/speech_emotes.yml b/Resources/Prototypes/_Exodus/Voice/speech_emotes.yml deleted file mode 100644 index 5c0dc4ac97a..00000000000 --- a/Resources/Prototypes/_Exodus/Voice/speech_emotes.yml +++ /dev/null @@ -1,9 +0,0 @@ -- type: emote - id: Rumble - name: chat-emote-name-rumble - icon: _RPSX/Interface/Actions/emotes.rsi/rumble.png - category: Vocal - available: false - chatMessages: [урчит] - chatTriggers: - - урчит diff --git a/Resources/Prototypes/_Exodus/floor_trap.yml b/Resources/Prototypes/_Exodus/floor_trap.yml deleted file mode 100644 index 99bb1cc4219..00000000000 --- a/Resources/Prototypes/_Exodus/floor_trap.yml +++ /dev/null @@ -1,53 +0,0 @@ -- type: entity - parent: CollideFloorTrap - id: FloorTrapSpikes - name: maybe it could be dangerous... - description: You're not going to try this with your feet, are you? - suffix: Trap, Spikes - components: - - type: Clickable - - type: Sprite - sprite: Exodus/Tiles/Misc/floortrap.rsi - state: floortrap - - type: TriggerOnCollide - fixtureID: floortrap - - type: SpawnOnTrigger - proto: FloorTrapSpikesActivated - - type: DeleteOnTrigger - -- type: entity - parent: CollideFloorTrap - id: FloorTrapSpikesActivated - name: spike trap - description: You're not going to try this with your feet, are you? - suffix: Trap, Spikes, Activated - components: - - type: Clickable - - type: InteractionOutline - - type: Sprite - sprite: Exodus/Tiles/Misc/floortrap.rsi - state: floortrap_spikes - noRot: true - - type: DamageContacts - damage: - types: - Piercing: 25 - -- type: entity - parent: FloorTrapSpikes - id: FloorTrapSpikesPoison - suffix: Trap, Spikes, Poison - components: - - type: SpawnOnTrigger - proto: FloorTrapSpikesPoisonActivated - -- type: entity - parent: FloorTrapSpikesActivated - id: FloorTrapSpikesPoisonActivated - suffix: Trap, Spikes, Poison, Activated - components: - - type: DamageContacts - damage: - types: - Piercing: 25 - Poison: 10 diff --git a/Resources/Prototypes/_Exodus/tags.yml b/Resources/Prototypes/_Exodus/tags.yml deleted file mode 100644 index 4c5108ee8e1..00000000000 --- a/Resources/Prototypes/_Exodus/tags.yml +++ /dev/null @@ -1,23 +0,0 @@ -- type: Tag - id: Letter - -- type: Tag - id: NuclearCodes - -- type: Tag - id: AASElectronics - -- type: Tag - id: ThickSyringe - -- type: Tag - id: ThickSkin - -- type: Tag - id: HardsuitMining - -- type: Tag - id: ValentineDayArrow - -- type: Tag - id: Candy diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon-flash.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon-flash.png deleted file mode 100644 index 58b34950050..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon.png deleted file mode 100644 index fca94e8bb1c..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/meta.json b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/meta.json deleted file mode 100644 index f3ec01c0d79..00000000000 --- a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-3.0", - "copyright": "created by olbenok (discord:890504103233458197)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-inhand-left", - "directions": 4 - }, - { - "name": "off-inhand-right", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-inhand-left", - "directions": 4 - }, - { - "name": "icon-flash" - }, - { - "name": "on-inhand-right", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-equipped-HELMET.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-equipped-HELMET.png deleted file mode 100644 index 04b51ca2296..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-left.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-left.png deleted file mode 100644 index 4aedae64284..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-right.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-right.png deleted file mode 100644 index 0eef319b2db..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-equipped-HELMET.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-equipped-HELMET.png deleted file mode 100644 index fb2288bd8f9..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-left.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-left.png deleted file mode 100644 index 0e0b8d63ae9..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-right.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-right.png deleted file mode 100644 index 61470878862..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/rndhelmet.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-flash.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-flash.png deleted file mode 100644 index 0554042d773..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-flash.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-unshaded.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-unshaded.png deleted file mode 100644 index 83c94928463..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon-unshaded.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon.png deleted file mode 100644 index 4e096e37aad..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/light-overlay.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/light-overlay.png deleted file mode 100644 index 0b2915f9458..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/light-overlay.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/meta.json b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/meta.json deleted file mode 100644 index 4bfd81a514c..00000000000 --- a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/meta.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & owned by Space Exodus, by Askolot (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-unshaded" - }, - { - "name": "icon-flash" - }, - { - "name": "light-overlay" - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - }, - { - "name": "on-equipped-HELMET", - "directions": 4 - }, - { - "name": "off-equipped-HELMET-vox", - "directions": 4 - }, - { - "name": "on-equipped-HELMET-vox", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET-vox.png deleted file mode 100644 index 4eb48001cf9..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET-vox.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET.png deleted file mode 100644 index 485c294087d..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET-vox.png deleted file mode 100644 index ea350188997..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET-vox.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET.png b/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET.png deleted file mode 100644 index 31c888b6fc4..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Head/Hardsuits/salvage_maximal.rsi/on-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/equipped-NECK.png b/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/equipped-NECK.png deleted file mode 100644 index ffca3249f13..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/equipped-NECK.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/icon.png b/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/icon.png deleted file mode 100644 index f8e0a9cb8e4..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/meta.json b/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/meta.json deleted file mode 100644 index 3119a51a153..00000000000 --- a/Resources/Textures/Exodus/Clothing/Neck/Misc/shock_collar.rsi/meta.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by EmoGarbage404 (github) for Space Station 14", - "size": { - "x": 32, - "y": 32 - }, - - "states": [ - { - "name": "equipped-NECK", - "directions": 4 - }, - { - "name": "icon" - } - ] - } diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING-reptilian.png deleted file mode 100644 index 60545d13bc2..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index 67480de2cbd..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/icon.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/icon.png deleted file mode 100644 index 67089fa0884..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-left.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-left.png deleted file mode 100644 index 5a200cbfc91..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-right.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-right.png deleted file mode 100644 index edca309c2ee..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/meta.json b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/meta.json deleted file mode 100644 index 22acce6df6e..00000000000 --- a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-3.0", - "copyright": "created by olbenok (discord:890504103233458197)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "off-equipped-HELMET", - "directions": 4 - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/off-equipped-HELMET.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/off-equipped-HELMET.png deleted file mode 100644 index 04b51ca2296..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/rnd.rsi/off-equipped-HELMET.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-reptilian.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-reptilian.png deleted file mode 100644 index 1aebf604586..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-reptilian.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-vox.png deleted file mode 100644 index d9fb2d26fc9..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING-vox.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING.png deleted file mode 100644 index e2b2a1dc66a..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/equipped-OUTERCLOTHING.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/icon.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/icon.png deleted file mode 100644 index 1d33aa6aa5b..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-left.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-left.png deleted file mode 100644 index d5c9805f620..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-right.png b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-right.png deleted file mode 100644 index 9457e09231c..00000000000 Binary files a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/meta.json b/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/meta.json deleted file mode 100644 index 60cc035050c..00000000000 --- a/Resources/Textures/Exodus/Clothing/OuterClothing/Hardsuits/salvage_maximal.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & owned by Space Exodus, by Askolot (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_l.png deleted file mode 100644 index cd551beb847..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_r.png deleted file mode 100644 index df9b9370863..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/arrowarm_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/meta.json deleted file mode 100644 index cbeced704b4..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/meta.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Spase Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "arrowarm_l", - "directions": 4 - }, - { - "name": "arrowarm_r", - "directions": 4 - }, - { - "name": "mittens_l", - "directions": 4 - }, - { - "name": "mittens_r", - "directions": 4 - }, - { - "name": "shoulders_l", - "directions": 4 - }, - { - "name": "shoulders_r", - "directions": 4 - }, - { - "name": "stripesarm_l", - "directions": 4 - }, - { - "name": "stripesarm_r", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_l.png deleted file mode 100644 index e070b41d5f7..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_r.png deleted file mode 100644 index dfc8509836a..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/mittens_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_l.png deleted file mode 100644 index c14ef2d3144..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_r.png deleted file mode 100644 index d97011c399b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/shoulders_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_l.png deleted file mode 100644 index f2423322fda..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_r.png deleted file mode 100644 index a9aa2e9b85b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_arm.rsi/stripesarm_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_inner.png deleted file mode 100644 index 3f1c19e0ba8..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_outer.png deleted file mode 100644 index bcb585125a3..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_cutoff_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_inner.png deleted file mode 100644 index e6069bd9370..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_outer.png deleted file mode 100644 index 0242344e05f..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_fennec_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_inner.png deleted file mode 100644 index a706ad7b0a1..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_outer.png deleted file mode 100644 index b82aa65847f..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_hyena_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_inner.png deleted file mode 100644 index 11726c542cd..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_outer.png deleted file mode 100644 index 7bfc7be7e4b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_linx_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_inner.png deleted file mode 100644 index 7f6d9ce401d..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_outer.png deleted file mode 100644 index 18e6dcffa20..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_round_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_inner.png deleted file mode 100644 index 8b4a9579db4..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_outer.png deleted file mode 100644 index 4377ec9589e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_sharp_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_inner.png deleted file mode 100644 index c2e467fb92e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_outer.png deleted file mode 100644 index 50f595c6a79..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_left_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_inner.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_inner.png deleted file mode 100644 index 4e3958a23c9..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_inner.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_outer.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_outer.png deleted file mode 100644 index 1d241141d39..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_skar_right_outer.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_spaniel.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_spaniel.png deleted file mode 100644 index 5c80efaeaf8..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/ears_spaniel.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/meta.json deleted file mode 100644 index a0f68d3e943..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_ears.rsi/meta.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot (discord:788252896016990219), owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "ears_cutoff_inner", - "directions": 4 - }, - { - "name": "ears_cutoff_outer", - "directions": 4 - }, - { - "name": "ears_fennec_inner", - "directions": 4 - }, - { - "name": "ears_fennec_outer", - "directions": 4 - }, - { - "name": "ears_hyena_inner", - "directions": 4 - }, - { - "name": "ears_hyena_outer", - "directions": 4 - }, - { - "name": "ears_linx_inner", - "directions": 4 - }, - { - "name": "ears_linx_outer", - "directions": 4 - }, - { - "name": "ears_round_inner", - "directions": 4 - }, - { - "name": "ears_round_outer", - "directions": 4 - }, - { - "name": "ears_sharp_inner", - "directions": 4 - }, - { - "name": "ears_sharp_outer", - "directions": 4 - }, - { - "name": "ears_skar_left_inner", - "directions": 4 - }, - { - "name": "ears_skar_left_outer", - "directions": 4 - }, - { - "name": "ears_skar_right_inner", - "directions": 4 - }, - { - "name": "ears_skar_right_outer", - "directions": 4 - }, - { - "name": "ears_spaniel", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_l.png deleted file mode 100644 index 8943a03af7b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_r.png deleted file mode 100644 index 8d4cb693a2e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/dot_foot_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_l.png deleted file mode 100644 index 9b7b03bfc87..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_r.png deleted file mode 100644 index a1de832c91d..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/foots_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/meta.json deleted file mode 100644 index fee6bf0d9dd..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/meta.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "trail_foot_l", - "directions": 4 - }, - { - "name": "trail_foot_r", - "directions": 4 - }, - { - "name": "dot_foot_l", - "directions": 4 - }, - { - "name": "dot_foot_r", - "directions": 4 - }, - { - "name": "foots_l", - "directions": 4 - }, - { - "name": "foots_r", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_l.png deleted file mode 100644 index 5cfc04d8e60..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_r.png deleted file mode 100644 index af95d7644f1..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_foot.rsi/trail_foot_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_l.png deleted file mode 100644 index 84ceef2ed18..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_r.png deleted file mode 100644 index 6fdef1aa75b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/glovelett_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_l.png deleted file mode 100644 index 64f7bcf00e5..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_r.png deleted file mode 100644 index 89336b70ea8..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/gloves_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/meta.json deleted file mode 100644 index 06b0706da3e..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_hand.rsi/meta.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "glovelett_l", - "directions": 4 - }, - { - "name": "glovelett_r", - "directions": 4 - }, - { - "name": "gloves_l", - "directions": 4 - }, - { - "name": "gloves_r", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_l.png deleted file mode 100644 index f3955b37917..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_r.png deleted file mode 100644 index e421f4369da..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/bun_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_l.png deleted file mode 100644 index 87893bdadf0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_r.png deleted file mode 100644 index 08c1b3d4546..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/hips_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_l.png deleted file mode 100644 index 193145a5f45..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_r.png deleted file mode 100644 index 67eda898fb6..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/incision_mark_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_l.png deleted file mode 100644 index ea74095d64d..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_r.png deleted file mode 100644 index 53da81e8468..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/inner_thigh_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_l.png deleted file mode 100644 index 68dcea69437..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_r.png deleted file mode 100644 index c0d7ce80af0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/kneesocks_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_l.png deleted file mode 100644 index 510a96ecb93..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_r.png deleted file mode 100644 index bd059d10c6c..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/long_stripes_leg_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/meta.json deleted file mode 100644 index 23d9fc4c213..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/meta.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "inner_thigh_l", - "directions": 4 - }, - { - "name": "inner_thigh_r", - "directions": 4 - }, - { - "name": "kneesocks_l", - "directions": 4 - }, - { - "name": "kneesocks_r", - "directions": 4 - }, - { - "name": "long_stripes_leg_l", - "directions": 4 - }, - { - "name": "long_stripes_leg_r", - "directions": 4 - }, - { - "name": "socksleg_l", - "directions": 4 - }, - { - "name": "socksleg_r", - "directions": 4 - }, - { - "name": "bun_l", - "directions": 4 - }, - { - "name": "bun_r", - "directions": 4 - }, - { - "name": "hips_l", - "directions": 4 - }, - { - "name": "hips_r", - "directions": 4 - }, - { - "name": "incision_mark_l", - "directions": 4 - }, - { - "name": "incision_mark_r", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_l.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_l.png deleted file mode 100644 index 94a33d208f9..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_l.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_r.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_r.png deleted file mode 100644 index 6d2dc145edf..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_leg.rsi/socksleg_r.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrow.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrow.png deleted file mode 100644 index 42c586da7d0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrow.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrows.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrows.png deleted file mode 100644 index 268577e93e5..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/arrows.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/belt.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/belt.png deleted file mode 100644 index bf2fc76cb25..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/belt.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/case.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/case.png deleted file mode 100644 index 8bb1031ca3b..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/case.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/eyebrows.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/eyebrows.png deleted file mode 100644 index 7ec4f982aa7..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/eyebrows.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/helmet.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/helmet.png deleted file mode 100644 index 02a25b42e7e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/helmet.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/ladle.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/ladle.png deleted file mode 100644 index 352c7721163..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/ladle.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/lantern.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/lantern.png deleted file mode 100644 index 88e2c3baef0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/lantern.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/mask.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/mask.png deleted file mode 100644 index a98213d35fb..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/mask.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/meta.json deleted file mode 100644 index 72a08419021..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/meta.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot (discord:788252896016990219), owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "throat", - "directions": 4 - }, - { - "name": "arrow", - "directions": 4 - }, - { - "name": "raccoon", - "directions": 4 - }, - { - "name": "arrows", - "directions": 4 - }, - { - "name": "belt", - "directions": 4 - }, - { - "name": "case", - "directions": 4 - }, - { - "name": "eyebrows", - "directions": 4 - }, - { - "name": "helmet", - "directions": 4 - }, - { - "name": "ladle", - "directions": 4 - }, - { - "name": "lantern", - "directions": 4 - }, - { - "name": "mask", - "directions": 4 - }, - { - "name": "siamisblurred", - "directions": 4 - }, - { - "name": "star", - "directions": 4 - }, - { - "name": "tear", - "directions": 4 - }, - { - "name": "tearsmall", - "directions": 4 - }, - { - "name": "thai", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/raccoon.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/raccoon.png deleted file mode 100644 index 4e6aae087d2..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/raccoon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/siamisblurred.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/siamisblurred.png deleted file mode 100644 index d4b475af868..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/siamisblurred.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/star.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/star.png deleted file mode 100644 index 5eedf550a8c..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/star.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tear.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tear.png deleted file mode 100644 index f553993aaab..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tear.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tearsmall.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tearsmall.png deleted file mode 100644 index d1c62465561..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/tearsmall.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/thai.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/thai.png deleted file mode 100644 index 6efb3539931..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/thai.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/throat.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/throat.png deleted file mode 100644 index 0ac197c2e85..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_snout.rsi/throat.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_f.png deleted file mode 100644 index 24f01db497f..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_m.png deleted file mode 100644 index b5d54e43ab9..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belly_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt.png deleted file mode 100644 index 91f1b9e401c..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt2.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt2.png deleted file mode 100644 index b3b34fb8527..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/belt2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_f.png deleted file mode 100644 index 74d0a1e94e8..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_m.png deleted file mode 100644 index 3d941c874f6..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/breast_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_f.png deleted file mode 100644 index d70f34e6a75..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_m.png deleted file mode 100644 index 8739ecca342..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/chest_and_throat_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_f.png deleted file mode 100644 index 56a4f72daca..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_m.png deleted file mode 100644 index 943cb715f17..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/cross_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_f.png deleted file mode 100644 index 62ffef577c5..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_m.png deleted file mode 100644 index bf32100b86e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/horza_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/hyena.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/hyena.png deleted file mode 100644 index 3663c6be7f2..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/hyena.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_f.png deleted file mode 100644 index 5fe40bf3687..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_m.png deleted file mode 100644 index db8f5d5d9e0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal1_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_f.png deleted file mode 100644 index 12740d5eeac..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_m.png deleted file mode 100644 index ad7ead84b48..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/jackal2_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_f.png deleted file mode 100644 index 89c36dcf5fa..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_m.png deleted file mode 100644 index d594b1b580a..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mane_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_f.png deleted file mode 100644 index aa7537e0ece..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_m.png deleted file mode 100644 index 2b791889964..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/mantle_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/meta.json b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/meta.json deleted file mode 100644 index 585c8fcdb21..00000000000 --- a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/meta.json +++ /dev/null @@ -1,147 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "necklac_m", - "directions": 4 - }, - { - "name": "necklace_f", - "directions": 4 - }, - { - "name": "necklace2_f", - "directions": 4 - }, - { - "name": "necklace2_m", - "directions": 4 - }, - { - "name": "sections1_f", - "directions": 4 - }, - { - "name": "sections2_f", - "directions": 4 - }, - { - "name": "sheet_f", - "directions": 4 - }, - { - "name": "sheet_m", - "directions": 4 - }, - { - "name": "spot_f", - "directions": 4 - }, - { - "name": "spot_m", - "directions": 4 - }, - { - "name": "srite", - "directions": 4 - }, - { - "name": "stripes_are_fron_m", - "directions": 4 - }, - { - "name": "stripes_are_torn_f", - "directions": 4 - }, - { - "name": "belly_f", - "directions": 4 - }, - { - "name": "belly_m", - "directions": 4 - }, - { - "name": "belt", - "directions": 4 - }, - { - "name": "belt2", - "directions": 4 - }, - { - "name": "breast_f", - "directions": 4 - }, - { - "name": "breast_m", - "directions": 4 - }, - { - "name": "chest_and_throat_f", - "directions": 4 - }, - { - "name": "chest_and_throat_m", - "directions": 4 - }, - { - "name": "cross_f", - "directions": 4 - }, - { - "name": "cross_m", - "directions": 4 - }, - { - "name": "horza_f", - "directions": 4 - }, - { - "name": "horza_m", - "directions": 4 - }, - { - "name": "hyena", - "directions": 4 - }, - { - "name": "jackal1_f", - "directions": 4 - }, - { - "name": "jackal1_m", - "directions": 4 - }, - { - "name": "jackal2_f", - "directions": 4 - }, - { - "name": "jackal2_m", - "directions": 4 - }, - { - "name": "mane_f", - "directions": 4 - }, - { - "name": "mane_m", - "directions": 4 - }, - { - "name": "mantle_f", - "directions": 4 - }, - { - "name": "mantle_m", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklac_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklac_m.png deleted file mode 100644 index 9cfa46966f7..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklac_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_f.png deleted file mode 100644 index b88357c5d57..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_m.png deleted file mode 100644 index 2834e34df2a..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace2_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace_f.png deleted file mode 100644 index 51ad0d8fe53..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/necklace_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections1_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections1_f.png deleted file mode 100644 index a6635b73702..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections1_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections2_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections2_f.png deleted file mode 100644 index ab96b25e85e..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sections2_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_f.png deleted file mode 100644 index 4380693fb0a..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_m.png deleted file mode 100644 index 68f229803b0..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/sheet_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_f.png deleted file mode 100644 index d5dc3cd7586..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_m.png deleted file mode 100644 index 9551f0dde36..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/spot_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/srite.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/srite.png deleted file mode 100644 index ac851730bc3..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/srite.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_fron_m.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_fron_m.png deleted file mode 100644 index e47b39f0465..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_fron_m.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_torn_f.png b/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_torn_f.png deleted file mode 100644 index ed3c6599bdc..00000000000 Binary files a/Resources/Textures/Exodus/Mobs/Customization/Vulpkanin/vulpkanin_torso.rsi/stripes_are_torn_f.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-1.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-1.png deleted file mode 100644 index ce90e57dc6c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-2.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-2.png deleted file mode 100644 index 1014e5d78bd..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-3.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-3.png deleted file mode 100644 index 13fd6fb4486..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-4.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-4.png deleted file mode 100644 index 6636477ec03..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-5.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-5.png deleted file mode 100644 index c398367d5ff..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/fill-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon.png deleted file mode 100644 index 85ea4afc22e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon_empty.png b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon_empty.png deleted file mode 100644 index d3792182d44..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/icon_empty.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/meta.json b/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/meta.json deleted file mode 100644 index 9e8784b04f5..00000000000 --- a/Resources/Textures/Exodus/Objects/Consumable/Drinks/berry_icecreamglass.rsi/meta.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": 1, - "size": - { - "x": 32, - "y": 32 - }, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Askolot, (discord:788252896016990219)", - "states": - [ - { - "name": "icon" - }, - { - "name": "icon_empty" - }, - { - "name": "fill-1" - }, - { - "name": "fill-2" - }, - { - "name": "fill-3" - }, - { - "name": "fill-4" - }, - { - "name": "fill-5" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love-slice.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love-slice.png deleted file mode 100644 index 1bdfd9b1fce..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love-slice.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love.png deleted file mode 100644 index 84c7e76ec7c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/cherry_love.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/meta.json b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/meta.json deleted file mode 100644 index 395921ee93e..00000000000 --- a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/cake.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Askolot, (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "cherry_love-slice" - }, - { - "name": "cherry_love" - } - ] - } diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy1.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy1.png deleted file mode 100644 index 998d71eb24d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy2.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy2.png deleted file mode 100644 index 83395f0dc00..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy3.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy3.png deleted file mode 100644 index 6467f093f68..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy4.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy4.png deleted file mode 100644 index 0597a6c4963..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy5.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy5.png deleted file mode 100644 index 2a9b0a167b1..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy6.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy6.png deleted file mode 100644 index ee8e3109dac..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box.png deleted file mode 100644 index fbd8f9ce3b8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box_open.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box_open.png deleted file mode 100644 index e3cd6a7ae76..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_box_open.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_snack.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_snack.png deleted file mode 100644 index 9f1dd29a5b6..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/candy_snack.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/cookie_heart.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/cookie_heart.png deleted file mode 100644 index a3695bc1907..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/cookie_heart.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/hanami_dango.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/hanami_dango.png deleted file mode 100644 index 2d4b4eee22a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/hanami_dango.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/meta.json b/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/meta.json deleted file mode 100644 index 536f0218a00..00000000000 --- a/Resources/Textures/Exodus/Objects/Consumable/Food/Baked/misc.rsi/meta.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Askolot, (discord:788252896016990219)- cookie_heart, candy_box, candy_box_open; by Cog, (discord:834690530104967209) - candy_snack", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "cookie_heart" - }, - { - "name": "candy_snack" - }, - { - "name": "candy_box" - }, - { - "name": "candy_box_open" - }, - { - "name": "hanami_dango" - }, - { - "name": "candy1" - }, - { - "name": "candy2" - }, - { - "name": "candy3" - }, - { - "name": "candy4" - }, - { - "name": "candy5" - }, - { - "name": "candy6" - } - ] - } diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/icon.png b/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/icon.png deleted file mode 100644 index e3c70552777..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/meta.json b/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/meta.json deleted file mode 100644 index 3638c021f7e..00000000000 --- a/Resources/Textures/Exodus/Objects/Consumable/Food/Meals/onigiri.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Askolot, (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - } - ] - } diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble01.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble01.png deleted file mode 100644 index 9d09c6ba0a3..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble02.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble02.png deleted file mode 100644 index b45636b9cee..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble03.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble03.png deleted file mode 100644 index c11e320311a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble04.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble04.png deleted file mode 100644 index b2c34991aa6..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble05.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble05.png deleted file mode 100644 index 11e0acf6fd9..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble06.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble06.png deleted file mode 100644 index bdef574f07b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble07.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble07.png deleted file mode 100644 index 29f71ca45a3..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble08.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble08.png deleted file mode 100644 index 1a06acb0e2c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble09.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble09.png deleted file mode 100644 index 2a1ed30b09c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble10.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble10.png deleted file mode 100644 index 1174b8ad61a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble10.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble11.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble11.png deleted file mode 100644 index f3bdd13b2ce..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble11.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble12.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble12.png deleted file mode 100644 index 76862f9dbeb..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble12.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble13.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble13.png deleted file mode 100644 index a8b4dbd1de5..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble13.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble14.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble14.png deleted file mode 100644 index 7fcec92b883..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble14.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble15.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble15.png deleted file mode 100644 index 3eb8695fe5c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/blackpebble15.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/meta.json b/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/meta.json deleted file mode 100644 index f3b02e7f134..00000000000 --- a/Resources/Textures/Exodus/Objects/Decoration/Pebble/blackpebble.rsi/meta.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "blackpebble01" - }, - { - "name": "blackpebble02" - }, - { - "name": "blackpebble03" - }, - { - "name": "blackpebble04" - }, - { - "name": "blackpebble05" - }, - { - "name": "blackpebble06" - }, - { - "name": "blackpebble07" - }, - { - "name": "blackpebble08" - }, - { - "name": "blackpebble09" - }, - { - "name": "blackpebble10" - }, - { - "name": "blackpebble11" - }, - { - "name": "blackpebble12" - }, - { - "name": "blackpebble13" - }, - { - "name": "blackpebble14" - }, - { - "name": "blackpebble15" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/meta.json b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/meta.json deleted file mode 100644 index 64f8f8c44d8..00000000000 --- a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/meta.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "pebble01" - }, - { - "name": "pebble02" - }, - { - "name": "pebble03" - }, - { - "name": "pebble04" - }, - { - "name": "pebble05" - }, - { - "name": "pebble06" - }, - { - "name": "pebble07" - }, - { - "name": "pebble08" - }, - { - "name": "pebble09" - }, - { - "name": "pebble10" - }, - { - "name": "pebble11" - }, - { - "name": "pebble12" - }, - { - "name": "pebble13" - }, - { - "name": "pebble14" - }, - { - "name": "pebble15" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble01.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble01.png deleted file mode 100644 index e0fe63dc26e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble02.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble02.png deleted file mode 100644 index 7afa6571b8d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble03.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble03.png deleted file mode 100644 index 4bf84447de8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble04.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble04.png deleted file mode 100644 index 455248bf1aa..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble05.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble05.png deleted file mode 100644 index 2d103907330..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble06.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble06.png deleted file mode 100644 index 11532d7ef3b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble07.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble07.png deleted file mode 100644 index 164047d74d7..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble08.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble08.png deleted file mode 100644 index e29a8f8f660..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble09.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble09.png deleted file mode 100644 index 0d3519c7234..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble10.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble10.png deleted file mode 100644 index c34858a0f2a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble10.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble11.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble11.png deleted file mode 100644 index db1101f9455..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble11.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble12.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble12.png deleted file mode 100644 index 501cbd60678..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble12.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble13.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble13.png deleted file mode 100644 index d1ad17129f6..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble13.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble14.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble14.png deleted file mode 100644 index ab63988d833..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble14.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble15.png b/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble15.png deleted file mode 100644 index 79951963801..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/Pebble/pebble.rsi/pebble15.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone.png b/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone.png deleted file mode 100644 index a9133d51887..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone1.png b/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone1.png deleted file mode 100644 index f2f8eadb997..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bone1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones.png b/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones.png deleted file mode 100644 index e8be4f05a4f..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones1.png b/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones1.png deleted file mode 100644 index 0cd1f90bfb3..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/bones1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/meta.json b/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/meta.json deleted file mode 100644 index f1ccb773a08..00000000000 --- a/Resources/Textures/Exodus/Objects/Decoration/bones.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ss220-space/Paradise/tree/5b5674bb6783568071de2d7058f0571c0226f7fd", - "size": { - "x": 64, - "y": 64 - }, - "states": [ - { - "name": "bone" - }, - { - "name": "bone1" - }, - { - "name": "bones" - }, - { - "name": "bones1" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/meta.json deleted file mode 100644 index 61fdb4859d8..00000000000 --- a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/meta.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & plush_heart by Piv2r (discord:716737363895648256), other by Askolot (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "plush_loxmat" - }, - { - "name": "plush_fragoler" - }, - { - "name": "plush_lokilife" - }, - { - "name": "plush_asler" - }, - { - "name": "plush_atima" - }, - { - "name": "plush_jidor" - }, - { - "name": "plush_heart" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_asler.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_asler.png deleted file mode 100644 index 7afae138869..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_asler.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_atima.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_atima.png deleted file mode 100644 index 61ec670b23b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_atima.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_fragoler.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_fragoler.png deleted file mode 100644 index b1970b36533..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_fragoler.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_heart.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_heart.png deleted file mode 100644 index da8dd09a54e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_heart.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_jidor.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_jidor.png deleted file mode 100644 index c90489b8ea8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_jidor.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_lokilife.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_lokilife.png deleted file mode 100644 index ae98ea3975d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_lokilife.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_loxmat.png b/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_loxmat.png deleted file mode 100644 index d2df10383b3..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Fun/toys.rsi/plush_loxmat.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart-on.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart-on.png deleted file mode 100644 index c31dc52d17a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart-on.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart.png deleted file mode 100644 index caf086e7e8a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/lamp_heart.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/meta.json b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/meta.json deleted file mode 100644 index 7cbd7a93321..00000000000 --- a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Cog, (discord:834690530104967209)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "lamp_heart" - }, - { - "name": "lamp_heart-on" - } - ] - } \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-left.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-left.png deleted file mode 100644 index bd99422d552..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-right.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-right.png deleted file mode 100644 index 048947a6eaf..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/off-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-left.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-left.png deleted file mode 100644 index a129336b3f8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-right.png b/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-right.png deleted file mode 100644 index a610b72e3de..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/Lights/love_lamp.rsi/on-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper.png deleted file mode 100644 index ca3f79f3c94..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper_words.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper_words.png deleted file mode 100644 index ca3f79f3c94..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/love_paper_words.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/meta.json b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/meta.json deleted file mode 100644 index 1c45474c3c0..00000000000 --- a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/meta.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Cog, (discord:834690530104967209)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "valentinka_closed" - }, - { - "name": "valentinka_open" - }, - { - "name": "valentinka_torn" - }, - { - "name": "love_paper" - }, - { - "name": "love_paper_words" - }, - { - "name": "paper_heart" - }, - { - "name": "paper_heart_words" - } - ] - } diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart.png deleted file mode 100644 index 67492947916..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart_words.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart_words.png deleted file mode 100644 index 67492947916..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/paper_heart_words.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_closed.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_closed.png deleted file mode 100644 index 732eb133495..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_closed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_open.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_open.png deleted file mode 100644 index d420629793b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_open.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_torn.png b/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_torn.png deleted file mode 100644 index 7ed5e7322df..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/bureaucracy.rsi/valentinka_torn.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/seal.rsi/meta.json b/Resources/Textures/Exodus/Objects/Misc/seal.rsi/meta.json deleted file mode 100644 index 4b88c3ee7ed..00000000000 --- a/Resources/Textures/Exodus/Objects/Misc/seal.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Asler (discord ID: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "seal" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Misc/seal.rsi/seal.png b/Resources/Textures/Exodus/Objects/Misc/seal.rsi/seal.png deleted file mode 100644 index ebeb1d6788b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/seal.rsi/seal.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/folder-sec-doc.png b/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/folder-sec-doc.png deleted file mode 100644 index fbaf0ac187e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/folder-sec-doc.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/meta.json b/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/meta.json deleted file mode 100644 index 539f4cb0182..00000000000 --- a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Asler (discord ID: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "sec-doc_seal" - }, - { - "name": "folder-sec-doc" - }, - { - "name": "records" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/records.png b/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/records.png deleted file mode 100644 index b9d87d9ee88..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/records.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/sec-doc_seal.png b/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/sec-doc_seal.png deleted file mode 100644 index 70bc157f1d7..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Misc/secret_documents.rsi/sec-doc_seal.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/dead.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/dead.png deleted file mode 100644 index 9b9a308f377..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/harvest.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/harvest.png deleted file mode 100644 index a8b0de007af..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/meta.json deleted file mode 100644 index 0c0d4142c84..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Wooby (discord: 863844665538510888), Made by MashaDark1 (discord: 800986431261638676) - produce ", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "harvest" - }, - { - "name": "produce" - }, - { - "name": "seed" - }, - { - "name": "stage-1" - }, - { - "name": "stage-2" - }, - { - "name": "stage-3" - }, - { - "name": "stage-4" - }, - { - "name": "stage-5" - }, - { - "name": "stage-6" - }, - { - "name": "dead" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/produce.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/produce.png deleted file mode 100644 index ecb739e6f5c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/produce.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/seed.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/seed.png deleted file mode 100644 index 44a30ccb9be..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/seed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-1.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-1.png deleted file mode 100644 index dfec12ffd0e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-2.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-2.png deleted file mode 100644 index 9866d9c9fd4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-3.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-3.png deleted file mode 100644 index a569fb2af26..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-4.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-4.png deleted file mode 100644 index ae974101acb..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-5.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-5.png deleted file mode 100644 index 1b3dc435c7a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-6.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-6.png deleted file mode 100644 index 14ef1f76efe..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/blueberry.rsi/stage-6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/dead.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/dead.png deleted file mode 100644 index 99626623e6c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-left.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-left.png deleted file mode 100644 index 4cb35cf466f..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-right.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-right.png deleted file mode 100644 index 9c2ca74b1c5..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower.png deleted file mode 100644 index 922ead0ed5c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/flower.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/harvest.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/harvest.png deleted file mode 100644 index 50ec19dba6a..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/meta.json deleted file mode 100644 index 387fdd09409..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Askolot (discord: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "dead" - }, - { - "name": "harvest" - }, - { - "name": "flower" - }, - { - "name": "flower-inhand-right", - "directions": 4 - }, - { - "name": "flower-inhand-left", - "directions": 4 - }, - { - "name": "seed" - }, - { - "name": "stage-1" - }, - { - "name": "stage-2" - }, - { - "name": "stage-3" - }, - { - "name": "stage-4" - }, - { - "name": "stage-5" - }, - { - "name": "stage-6" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/seed.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/seed.png deleted file mode 100644 index d7833c76333..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/seed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-1.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-1.png deleted file mode 100644 index 99626623e6c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-2.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-2.png deleted file mode 100644 index 99626623e6c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-3.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-3.png deleted file mode 100644 index 99626623e6c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-4.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-4.png deleted file mode 100644 index 82084bf1642..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-5.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-5.png deleted file mode 100644 index 82084bf1642..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-6.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-6.png deleted file mode 100644 index 82084bf1642..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/stage-6.png and /dev/null differ diff --git "a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/\321\200\320\260\320\267\320\275\320\276\321\202\321\200\320\260\320\262\321\214\320\265.png" "b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/\321\200\320\260\320\267\320\275\320\276\321\202\321\200\320\260\320\262\321\214\320\265.png" deleted file mode 100644 index 03673bf4b2e..00000000000 Binary files "a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/fieldflower.rsi/\321\200\320\260\320\267\320\275\320\276\321\202\321\200\320\260\320\262\321\214\320\265.png" and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/dead.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/dead.png deleted file mode 100644 index 98e49fac295..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-left.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-left.png deleted file mode 100644 index 2de8e3279d8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-right.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-right.png deleted file mode 100644 index cf18e475e86..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower.png deleted file mode 100644 index ba3e9b8c0c8..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/flower.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/harvest.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/harvest.png deleted file mode 100644 index 74b7d3570a4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/meta.json deleted file mode 100644 index 387fdd09409..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Askolot (discord: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "dead" - }, - { - "name": "harvest" - }, - { - "name": "flower" - }, - { - "name": "flower-inhand-right", - "directions": 4 - }, - { - "name": "flower-inhand-left", - "directions": 4 - }, - { - "name": "seed" - }, - { - "name": "stage-1" - }, - { - "name": "stage-2" - }, - { - "name": "stage-3" - }, - { - "name": "stage-4" - }, - { - "name": "stage-5" - }, - { - "name": "stage-6" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/seed.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/seed.png deleted file mode 100644 index b8c877f6618..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/seed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-1.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-1.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-2.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-2.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-3.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-3.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-4.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-4.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-5.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-5.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-6.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-6.png deleted file mode 100644 index 1f90ef4bd72..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/stage-6.png and /dev/null differ diff --git "a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/\321\206\320\262\320\265\321\202\320\276\320\272.png" "b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/\321\206\320\262\320\265\321\202\320\276\320\272.png" deleted file mode 100644 index 2e3aec913cc..00000000000 Binary files "a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/lilie.rsi/\321\206\320\262\320\265\321\202\320\276\320\272.png" and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/dead.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/dead.png deleted file mode 100644 index 8ea091adea4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-left.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-left.png deleted file mode 100644 index 1ef498c8b4c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-right.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-right.png deleted file mode 100644 index 7117a32dcbe..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower.png deleted file mode 100644 index 91c52d377bd..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/flower.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/harvest.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/harvest.png deleted file mode 100644 index f520604979f..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/meta.json deleted file mode 100644 index 387fdd09409..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Askolot (discord: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "dead" - }, - { - "name": "harvest" - }, - { - "name": "flower" - }, - { - "name": "flower-inhand-right", - "directions": 4 - }, - { - "name": "flower-inhand-left", - "directions": 4 - }, - { - "name": "seed" - }, - { - "name": "stage-1" - }, - { - "name": "stage-2" - }, - { - "name": "stage-3" - }, - { - "name": "stage-4" - }, - { - "name": "stage-5" - }, - { - "name": "stage-6" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/seed.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/seed.png deleted file mode 100644 index baadb541bb9..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/seed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-1.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-1.png deleted file mode 100644 index 8ea091adea4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-2.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-2.png deleted file mode 100644 index 8ea091adea4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-3.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-3.png deleted file mode 100644 index 8ea091adea4..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-4.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-4.png deleted file mode 100644 index 6e7f26df91d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-5.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-5.png deleted file mode 100644 index 6e7f26df91d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-6.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-6.png deleted file mode 100644 index 6e7f26df91d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/rose.rsi/stage-6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/dead.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/dead.png deleted file mode 100644 index 87028b2b480..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/dead.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-left.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-left.png deleted file mode 100644 index f102bac0a2c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-right.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-right.png deleted file mode 100644 index 8623ef80ebb..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower.png deleted file mode 100644 index 04532869d0d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/flower.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/harvest.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/harvest.png deleted file mode 100644 index 1ee17f0da1f..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/harvest.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/meta.json deleted file mode 100644 index 387fdd09409..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/meta.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-4.0", - "copyright": "Made by Askolot (discord: 788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "dead" - }, - { - "name": "harvest" - }, - { - "name": "flower" - }, - { - "name": "flower-inhand-right", - "directions": 4 - }, - { - "name": "flower-inhand-left", - "directions": 4 - }, - { - "name": "seed" - }, - { - "name": "stage-1" - }, - { - "name": "stage-2" - }, - { - "name": "stage-3" - }, - { - "name": "stage-4" - }, - { - "name": "stage-5" - }, - { - "name": "stage-6" - } - ] -} \ No newline at end of file diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/seed.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/seed.png deleted file mode 100644 index c998a00b822..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/seed.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-1.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-1.png deleted file mode 100644 index 87028b2b480..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-2.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-2.png deleted file mode 100644 index 87028b2b480..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-3.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-3.png deleted file mode 100644 index 87028b2b480..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-4.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-4.png deleted file mode 100644 index 6fe6c188a4c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-5.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-5.png deleted file mode 100644 index 6fe6c188a4c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-6.png b/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-6.png deleted file mode 100644 index 6fe6c188a4c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Hydroponics/sunflower.rsi/stage-6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/icon.png b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/icon.png deleted file mode 100644 index dfc34045f59..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-left.png b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-left.png deleted file mode 100644 index 98cb489031c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-right.png b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-right.png deleted file mode 100644 index 722474038af..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/meta.json b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/meta.json deleted file mode 100644 index acb2a708457..00000000000 --- a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/meta.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & owned by Space Exodus, made by Askolot (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "syringe1" - }, - { - "name": "syringe2" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe1.png b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe1.png deleted file mode 100644 index 592d2272abc..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe2.png b/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe2.png deleted file mode 100644 index 718cbd46e0d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Specific/Medical/mechanical_injector.rsi/syringe2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon-open.png b/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon-open.png deleted file mode 100644 index c2a18e0169b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon.png b/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon.png deleted file mode 100644 index 5b3a2a624f0..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/meta.json b/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/meta.json deleted file mode 100644 index 4551176447e..00000000000 --- a/Resources/Textures/Exodus/Objects/Storage/boxes.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Piv2r (discord:716737363895648256)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon-open.png b/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon-open.png deleted file mode 100644 index 1875cd90d2e..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon-open.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon.png b/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon.png deleted file mode 100644 index 3d9d02c6b5b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/icon.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/meta.json b/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/meta.json deleted file mode 100644 index 77b0edf547f..00000000000 --- a/Resources/Textures/Exodus/Objects/Storage/candy_box.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Cog, (discord:834690530104967209)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - } - ] - } diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/equipped-BACKPACK.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/equipped-BACKPACK.png deleted file mode 100644 index 5ac246a37b9..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/equipped-BACKPACK.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-left.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-left.png deleted file mode 100644 index 73536bbcbf5..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-right.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-right.png deleted file mode 100644 index f42c56bb822..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/meta.json b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/meta.json deleted file mode 100644 index 229dc8b27ac..00000000000 --- a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/meta.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Piv2r (discord:716737363895648256)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "unwielded" - }, - { - "name": "unwielded-arrow" - }, - { - "name": "wielded" - }, - { - "name": "wielded-arrow" - }, - { - "name": "equipped-BACKPACK", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded-arrow.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded-arrow.png deleted file mode 100644 index 3c473b8e7c7..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded-arrow.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded.png deleted file mode 100644 index 47244a029dd..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/unwielded.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-arrow.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-arrow.png deleted file mode 100644 index dd795f4d19c..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-arrow.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-left.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-left.png deleted file mode 100644 index e6f7fe637ee..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-right.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-right.png deleted file mode 100644 index a4a54e0e891..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded.png deleted file mode 100644 index f4f4d86168d..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Bow/love_bow.rsi/wielded.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/love_arrow.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/love_arrow.png deleted file mode 100644 index 602af8adc6b..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/love_arrow.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/meta.json b/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/meta.json deleted file mode 100644 index 3425a588596..00000000000 --- a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Piv2r (discord:716737363895648256)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "love_arrow" - }, - { - "name": "solution1" - } - ] -} diff --git a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/solution1.png b/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/solution1.png deleted file mode 100644 index 7244b37f5c7..00000000000 Binary files a/Resources/Textures/Exodus/Objects/Weapons/Guns/Projectiles/love_arrows.rsi/solution1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid01.png deleted file mode 100644 index fd0b6935404..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid02.png deleted file mode 100644 index a9d6d75ff37..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid03.png deleted file mode 100644 index 3cf8493a860..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/bigblackrockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/meta.json deleted file mode 100644 index 5651a178df3..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/bigblackrocksolid.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 48, - "y": 64 - }, - "states": [ - { - "name": "bigblackrockssolid01" - }, - { - "name": "bigblackrockssolid02" - }, - { - "name": "bigblackrockssolid03" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/largeblackrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/largeblackrockssolid01.png deleted file mode 100644 index 316bdf6aa0c..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/largeblackrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/meta.json deleted file mode 100644 index d820d9485fb..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/largeblackrocksolid.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 64, - "y": 80 - }, - "states": [ - { - "name": "largeblackrockssolid01" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/meta.json deleted file mode 100644 index ffdadacaa08..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 48, - "y": 48 - }, - "states": [ - { - "name": "middleblackrockssolid01" - }, - { - "name": "middleblackrockssolid02" - }, - { - "name": "middleblackrockssolid03" - }, - { - "name": "middleblackrockssolid04" - }, - { - "name": "middleblackrockssolid05" - }, - { - "name": "middleblackrockssolid06" - }, - { - "name": "middleblackrockssolid07" - }, - { - "name": "middleblackrockssolid08" - }, - { - "name": "middleblackrockssolid09" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid01.png deleted file mode 100644 index 74359048da3..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid02.png deleted file mode 100644 index fb317210e94..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid03.png deleted file mode 100644 index 0ffe3ec32a0..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid04.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid04.png deleted file mode 100644 index 3240777fca3..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid05.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid05.png deleted file mode 100644 index fc891477367..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid06.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid06.png deleted file mode 100644 index 67bc2bd9656..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid07.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid07.png deleted file mode 100644 index 24733e400f8..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid08.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid08.png deleted file mode 100644 index 13c61d37f62..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid09.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid09.png deleted file mode 100644 index 5591a8b831e..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/middleblackrocksolid.rsi/middleblackrockssolid09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/meta.json deleted file mode 100644 index 33a2ae92b7e..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/meta.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "smallblackrockssolid01" - }, - { - "name": "smallblackrockssolid02" - }, - { - "name": "smallblackrockssolid03" - }, - { - "name": "smallblackrockssolid04" - }, - { - "name": "smallblackrockssolid05" - }, - { - "name": "smallblackrockssolid06" - }, - { - "name": "smallblackrockssolid07" - }, - { - "name": "smallblackrockssolid08" - }, - { - "name": "smallblackrockssolid09" - }, - { - "name": "smallblackrockssolid10" - }, - { - "name": "smallblackrockssolid11" - }, - { - "name": "smallblackrockssolid12" - }, - { - "name": "smallblackrockssolid13" - }, - { - "name": "smallblackrockssolid14" - }, - { - "name": "smallblackrockssolid15" - }, - { - "name": "smallblackrockssolid16" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid01.png deleted file mode 100644 index 5178a87086a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid02.png deleted file mode 100644 index 1cd369d2db7..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid03.png deleted file mode 100644 index 69b80b93bc4..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid04.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid04.png deleted file mode 100644 index b7f4a8490b6..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid05.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid05.png deleted file mode 100644 index 3db0a7e5644..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid06.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid06.png deleted file mode 100644 index 5da0d9a1d85..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid07.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid07.png deleted file mode 100644 index fe09acae351..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid08.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid08.png deleted file mode 100644 index 8500cfe6d4f..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid09.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid09.png deleted file mode 100644 index b30fbff37bc..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid10.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid10.png deleted file mode 100644 index ae698e46de9..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid10.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid11.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid11.png deleted file mode 100644 index c4e59140285..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid11.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid12.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid12.png deleted file mode 100644 index 17aa9edf46d..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid12.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid13.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid13.png deleted file mode 100644 index b53dfabbea0..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid13.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid14.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid14.png deleted file mode 100644 index cb3efdd18c1..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid14.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid15.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid15.png deleted file mode 100644 index f84e6a35e59..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid15.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid16.png b/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid16.png deleted file mode 100644 index 55cbe59ab8a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/BlackRockSolid/smallblackrocksolid.rsi/smallblackrockssolid16.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid01.png deleted file mode 100644 index 2925f1c8856..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid02.png deleted file mode 100644 index ca79f2867f0..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid03.png deleted file mode 100644 index 254161b99cf..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/bigrockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/meta.json deleted file mode 100644 index 720a70a530e..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/bigrocksolid.rsi/meta.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 48, - "y": 64 - }, - "states": [ - { - "name": "bigrockssolid01" - }, - { - "name": "bigrockssolid02" - }, - { - "name": "bigrockssolid03" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/largerockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/largerockssolid01.png deleted file mode 100644 index bd048334979..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/largerockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/meta.json deleted file mode 100644 index 9822c767aae..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/largerocksolid.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 64, - "y": 80 - }, - "states": [ - { - "name": "largerockssolid01" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/meta.json deleted file mode 100644 index 8534ffd343d..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/meta.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 48, - "y": 48 - }, - "states": [ - { - "name": "middlerockssolid01" - }, - { - "name": "middlerockssolid02" - }, - { - "name": "middlerockssolid03" - }, - { - "name": "middlerockssolid04" - }, - { - "name": "middlerockssolid05" - }, - { - "name": "middlerockssolid06" - }, - { - "name": "middlerockssolid07" - }, - { - "name": "middlerockssolid08" - }, - { - "name": "middlerockssolid09" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid01.png deleted file mode 100644 index 1534367b01d..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid02.png deleted file mode 100644 index b481d3c3673..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid03.png deleted file mode 100644 index 9e10cbcf155..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid04.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid04.png deleted file mode 100644 index 13665f3a8bf..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid05.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid05.png deleted file mode 100644 index 29340c9128a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid06.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid06.png deleted file mode 100644 index e36b60fb630..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid07.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid07.png deleted file mode 100644 index 07cc1f98e2f..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid08.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid08.png deleted file mode 100644 index ec8335e0001..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid09.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid09.png deleted file mode 100644 index e88fa6d68c6..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/middlerocksolid.rsi/middlerockssolid09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/meta.json deleted file mode 100644 index 291c1ed40a9..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/meta.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "by Piv2r", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "smallrockssolid01" - }, - { - "name": "smallrockssolid02" - }, - { - "name": "smallrockssolid03" - }, - { - "name": "smallrockssolid04" - }, - { - "name": "smallrockssolid05" - }, - { - "name": "smallrockssolid06" - }, - { - "name": "smallrockssolid07" - }, - { - "name": "smallrockssolid08" - }, - { - "name": "smallrockssolid09" - }, - { - "name": "smallrockssolid10" - }, - { - "name": "smallrockssolid11" - }, - { - "name": "smallrockssolid12" - }, - { - "name": "smallrockssolid13" - }, - { - "name": "smallrockssolid14" - }, - { - "name": "smallrockssolid15" - }, - { - "name": "smallrockssolid16" - }, - { - "name": "smallrockssolid17" - }, - { - "name": "smallrockssolid18" - }, - { - "name": "smallrockssolid19" - }, - { - "name": "smallrockssolid20" - }, - { - "name": "smallrockssolid21" - }, - { - "name": "smallrockssolid22" - }, - { - "name": "smallrockssolid23" - }, - { - "name": "smallrockssolid24" - }, - { - "name": "smallrockssolid25" - }, - { - "name": "smallrockssolid26" - }, - { - "name": "smallrockssolid27" - }, - { - "name": "smallrockssolid28" - }, - { - "name": "smallrockssolid29" - }, - { - "name": "smallrockssolid30" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid01.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid01.png deleted file mode 100644 index d9345afa51e..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid02.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid02.png deleted file mode 100644 index eb1a34f5b4a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid03.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid03.png deleted file mode 100644 index e27b25a1ac5..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid03.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid04.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid04.png deleted file mode 100644 index 8dfb386fb77..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid04.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid05.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid05.png deleted file mode 100644 index d23106107fb..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid05.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid06.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid06.png deleted file mode 100644 index 2e6591d75b6..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid06.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid07.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid07.png deleted file mode 100644 index 2e6591d75b6..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid07.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid08.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid08.png deleted file mode 100644 index eac5091856a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid08.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid09.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid09.png deleted file mode 100644 index ac6b59630ed..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid09.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid10.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid10.png deleted file mode 100644 index 9dafe8e39db..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid10.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid11.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid11.png deleted file mode 100644 index 3168b1ee6f7..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid11.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid12.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid12.png deleted file mode 100644 index c844150201f..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid12.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid13.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid13.png deleted file mode 100644 index 580f5e0e516..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid13.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid14.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid14.png deleted file mode 100644 index 8ddf5cbda48..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid14.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid15.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid15.png deleted file mode 100644 index 389f83b6957..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid15.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid16.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid16.png deleted file mode 100644 index a62146536d5..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid16.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid17.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid17.png deleted file mode 100644 index 897b0faa337..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid17.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid18.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid18.png deleted file mode 100644 index 996759ab5fe..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid18.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid19.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid19.png deleted file mode 100644 index 094f1049cfb..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid19.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid20.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid20.png deleted file mode 100644 index 7b4377556e8..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid20.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid21.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid21.png deleted file mode 100644 index 78320266f66..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid21.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid22.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid22.png deleted file mode 100644 index a388e550b74..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid22.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid23.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid23.png deleted file mode 100644 index 464275ee728..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid23.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid24.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid24.png deleted file mode 100644 index c47d2070fa2..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid24.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid25.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid25.png deleted file mode 100644 index 31a86857675..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid25.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid26.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid26.png deleted file mode 100644 index 6ef463166a2..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid26.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid27.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid27.png deleted file mode 100644 index 884ca060b8c..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid27.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid28.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid28.png deleted file mode 100644 index a6c410971a6..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid28.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid29.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid29.png deleted file mode 100644 index 545d17c47c8..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid29.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid30.png b/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid30.png deleted file mode 100644 index 6783759b913..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/RockSolid/smallrocksolid.rsi/smallrockssolid30.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc.png b/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc.png deleted file mode 100644 index bf783469e77..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc1.png b/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc1.png deleted file mode 100644 index 1ab7815590a..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc2.png b/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc2.png deleted file mode 100644 index 81c5c45ca5e..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/arc2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/blockage.png b/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/blockage.png deleted file mode 100644 index 3a3ac4cdb47..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/blockage.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/meta.json deleted file mode 100644 index 71c3b95517e..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/arcs.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ss220-space/Paradise/tree/5b5674bb6783568071de2d7058f0571c0226f7fd", - "size": { - "x": 160, - "y": 160 - }, - "states": [ - { - "name": "arc" - }, - { - "name": "arc1" - }, - { - "name": "arc2" - }, - { - "name": "blockage" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/adept.png b/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/adept.png deleted file mode 100644 index 9896d6d4a02..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/adept.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake.png b/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake.png deleted file mode 100644 index 6c19cdad64c..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake_old.png b/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake_old.png deleted file mode 100644 index 91e4e65fa94..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/drake_old.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/meta.json b/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/meta.json deleted file mode 100644 index e9cdcaa9fb5..00000000000 --- a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/meta.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/ss220-space/Paradise/tree/5b5674bb6783568071de2d7058f0571c0226f7fd", - "size": { - "x": 64, - "y": 64 - }, - "states": [ - { - "name": "drake" - }, - { - "name": "drake_old" - }, - { - "name": "adept" - }, - { - "name": "obedient" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/obedient.png b/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/obedient.png deleted file mode 100644 index fdc44d82444..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Decoration/statues.rsi/obedient.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/meta.json b/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/meta.json deleted file mode 100644 index fbe405e4e6d..00000000000 --- a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-NC-SA-4.0", - "copyright": "RPS-eXtended & by Askolot, (discord:788252896016990219)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "plant-01" - }, - { - "name": "plant-02" - } - ] - } diff --git a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-01.png b/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-01.png deleted file mode 100644 index 881ac94ba53..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-01.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-02.png b/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-02.png deleted file mode 100644 index beb0286e716..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Furniture/potted_plants.rsi/plant-02.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/base.png b/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/base.png deleted file mode 100644 index 03d8561288f..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/base.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/glow.png b/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/glow.png deleted file mode 100644 index 22d37bc1a46..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/glow.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/meta.json b/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/meta.json deleted file mode 100644 index bba9abcaf11..00000000000 --- a/Resources/Textures/Exodus/Structures/Lighting/Decoration/elmosfire.rsi/meta.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot (discord:788252896016990219), owned by Space Exodus", - "size": { - "x": 32, - "y": 64 - }, - "states": [ - { - "name": "base", - "directions": 4 - }, - { - "name": "glow", - "delays": [ - [ - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2 - ] - ], - "directions": 4 - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/meta.json b/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/meta.json deleted file mode 100644 index 1e010bf8588..00000000000 --- a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot, owned by Space Exodus (discord:788252896016990219), based on https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "tinyfan-carcas" - }, - { - "name": "tinyfan-carcas-two" - } - ] - } diff --git a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas-two.png b/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas-two.png deleted file mode 100644 index 8d694666976..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas-two.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas.png b/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas.png deleted file mode 100644 index 6cf8023ef62..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Piping/Atmospherics/tiny_fan.rsi/tinyfan-carcas.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/locked.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/locked.png deleted file mode 100644 index d90218d19e2..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/locked.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/meta.json deleted file mode 100644 index 221e6e1c6d6..00000000000 --- a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/meta.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "copyright": "Made by piv2r (discord:716737363895648256)", - "license": "CC-BY-SA-3.0", - "states": [ - { - "name": "science_suit" - }, - { - "name": "science_suit_door" - }, - { - "name": "science_suit_open" - }, - { - "name": "welded" - }, - { - "name": "locked" - }, - { - "name": "unlocked" - } - ] -} diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit.png deleted file mode 100644 index 70a2a86475c..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_door.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_door.png deleted file mode 100644 index 929c06b7fa3..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_door.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_open.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_open.png deleted file mode 100644 index 039b747226f..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/science_suit_open.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/unlocked.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/unlocked.png deleted file mode 100644 index 418607bfaf5..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/unlocked.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/welded.png b/Resources/Textures/Exodus/Structures/Storage/closet.rsi/welded.png deleted file mode 100644 index 5ba5dcc8962..00000000000 Binary files a/Resources/Textures/Exodus/Structures/Storage/closet.rsi/welded.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap.png b/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap.png deleted file mode 100644 index f732bf66c7d..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap_spikes.png b/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap_spikes.png deleted file mode 100644 index a7ff44fb9a7..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/floortrap_spikes.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/meta.json b/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/meta.json deleted file mode 100644 index 8d4110eef52..00000000000 --- a/Resources/Textures/Exodus/Tiles/Misc/floortrap.rsi/meta.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "license": "CLA", - "copyright": "RPS-eXtended & by Askolot (discord:788252896016990219), owned by Space Exodus", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "floortrap" - }, - { - "name": "floortrap_spikes" - } - ] -} diff --git a/Resources/Textures/Exodus/Tiles/attributions.yml b/Resources/Textures/Exodus/Tiles/attributions.yml deleted file mode 100644 index 65caed9db85..00000000000 --- a/Resources/Textures/Exodus/Tiles/attributions.yml +++ /dev/null @@ -1,31 +0,0 @@ -- files: - [ - "cobblestone_plates.png", - "cobblestone.png", - "marble.png", - "masonry-brown1.png", - "masonry-brown2.png", - "masonry-brown3.png", - "masonry-brown4.png", - "masonry-brown5.png", - "masonry-brown6.png", - "masonry-brown7.png", - "masonry-gray1.png", - "masonry-gray2.png", - "masonry-gray3.png", - "masonry-gray4.png", - "masonry-gray5.png", - "masonry-gray6.png", - "masonry-gray7.png", - "masonry-light1.png", - "masonry-light2.png", - "masonry-light3.png", - "masonry-light4.png", - "masonry-light5.png", - "masonry-light6.png", - "masonry-light7.png", - "masonry-light8.png", - ] - license: "Custom" - copyright: "Under CLA, by Askolot (discord:788252896016990219), owned by Space Exodus" - source: "https://github.com/space-exodus/space-station-14" diff --git a/Resources/Textures/Exodus/Tiles/cobblestone.png b/Resources/Textures/Exodus/Tiles/cobblestone.png deleted file mode 100644 index 4db0b5c6d0a..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/cobblestone.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/cobblestone_plates.png b/Resources/Textures/Exodus/Tiles/cobblestone_plates.png deleted file mode 100644 index 9d560a2f66f..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/cobblestone_plates.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/marble.png b/Resources/Textures/Exodus/Tiles/marble.png deleted file mode 100644 index 4ec885d412e..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/marble.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown1.png b/Resources/Textures/Exodus/Tiles/masonry-brown1.png deleted file mode 100644 index e45409f6809..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown2.png b/Resources/Textures/Exodus/Tiles/masonry-brown2.png deleted file mode 100644 index 876d0e163df..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown3.png b/Resources/Textures/Exodus/Tiles/masonry-brown3.png deleted file mode 100644 index 35bf91a99c5..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown4.png b/Resources/Textures/Exodus/Tiles/masonry-brown4.png deleted file mode 100644 index 7d2c98f7774..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown5.png b/Resources/Textures/Exodus/Tiles/masonry-brown5.png deleted file mode 100644 index 28dc72e2aba..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown6.png b/Resources/Textures/Exodus/Tiles/masonry-brown6.png deleted file mode 100644 index f20a2f879d1..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-brown7.png b/Resources/Textures/Exodus/Tiles/masonry-brown7.png deleted file mode 100644 index 4ca3ff030a2..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-brown7.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray1.png b/Resources/Textures/Exodus/Tiles/masonry-gray1.png deleted file mode 100644 index cb400c989bc..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray2.png b/Resources/Textures/Exodus/Tiles/masonry-gray2.png deleted file mode 100644 index bbb4e3101e0..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray3.png b/Resources/Textures/Exodus/Tiles/masonry-gray3.png deleted file mode 100644 index 64bed254ef5..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray4.png b/Resources/Textures/Exodus/Tiles/masonry-gray4.png deleted file mode 100644 index 75ca650c56a..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray5.png b/Resources/Textures/Exodus/Tiles/masonry-gray5.png deleted file mode 100644 index 8b61fe0f0c1..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray6.png b/Resources/Textures/Exodus/Tiles/masonry-gray6.png deleted file mode 100644 index 778da6404ef..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-gray7.png b/Resources/Textures/Exodus/Tiles/masonry-gray7.png deleted file mode 100644 index 92939bfe917..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-gray7.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light1.png b/Resources/Textures/Exodus/Tiles/masonry-light1.png deleted file mode 100644 index 389737bd64e..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light1.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light2.png b/Resources/Textures/Exodus/Tiles/masonry-light2.png deleted file mode 100644 index 24e50e68c1f..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light2.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light3.png b/Resources/Textures/Exodus/Tiles/masonry-light3.png deleted file mode 100644 index 55640aeaa57..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light3.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light4.png b/Resources/Textures/Exodus/Tiles/masonry-light4.png deleted file mode 100644 index 5a3ea3b7646..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light4.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light5.png b/Resources/Textures/Exodus/Tiles/masonry-light5.png deleted file mode 100644 index 95cdcf6e7e2..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light5.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light6.png b/Resources/Textures/Exodus/Tiles/masonry-light6.png deleted file mode 100644 index 94f4ce5497a..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light6.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light7.png b/Resources/Textures/Exodus/Tiles/masonry-light7.png deleted file mode 100644 index 3cdc777f20a..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light7.png and /dev/null differ diff --git a/Resources/Textures/Exodus/Tiles/masonry-light8.png b/Resources/Textures/Exodus/Tiles/masonry-light8.png deleted file mode 100644 index 1bc9976cc1d..00000000000 Binary files a/Resources/Textures/Exodus/Tiles/masonry-light8.png and /dev/null differ diff --git a/Resources/migration.yml b/Resources/migration.yml index b470056acad..6ebe85296dd 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -412,10 +412,8 @@ FoodMeatFiestaKebab: FoodKebabSkewer #2024-08-14 ClothingBeltSuspenders: ClothingBeltSuspendersRed -# Exodus-ShockCollar-Start -# # 2024-08-19 -# ClothingNeckShockCollar: ClothingBackpackElectropack -# Exodus-ShockCollar-End +# 2024-08-19 +ClothingNeckShockCollar: ClothingBackpackElectropack #Corvax-mining-shuttle-return-Start # 2024-08-22