Generalize tile prying to any tool quality (#24432)
* Generalize tile prying to any tool quality * ballin
This commit is contained in:
@@ -7,9 +7,6 @@ using Robust.Shared.Map;
|
|||||||
|
|
||||||
namespace Content.Server.Interaction
|
namespace Content.Server.Interaction
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// <see cref="Shared.Tools.Components.TilePryingComponent.TryPryTile"/>
|
|
||||||
/// </summary>
|
|
||||||
[AdminCommand(AdminFlags.Debug)]
|
[AdminCommand(AdminFlags.Debug)]
|
||||||
sealed class TilePryCommand : IConsoleCommand
|
sealed class TilePryCommand : IConsoleCommand
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
using Content.Shared.Tools;
|
|
||||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
||||||
|
|
||||||
namespace Content.Server.Tools.Components;
|
|
||||||
|
|
||||||
[RegisterComponent]
|
|
||||||
public sealed partial class LatticeCuttingComponent : Component
|
|
||||||
{
|
|
||||||
[DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer<ToolQualityPrototype>))]
|
|
||||||
public string QualityNeeded = "Cutting";
|
|
||||||
|
|
||||||
[DataField("delay")]
|
|
||||||
public float Delay = 1f;
|
|
||||||
|
|
||||||
[DataField("vacuumDelay")]
|
|
||||||
public float VacuumDelay = 1.75f;
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
using Content.Server.Administration.Logs;
|
|
||||||
using Content.Server.Maps;
|
|
||||||
using Content.Server.Tools.Components;
|
|
||||||
using Content.Shared.Database;
|
|
||||||
using Content.Shared.DoAfter;
|
|
||||||
using Content.Shared.Interaction;
|
|
||||||
using Content.Shared.Maps;
|
|
||||||
using Content.Shared.Tools.Components;
|
|
||||||
using Robust.Shared.Map;
|
|
||||||
|
|
||||||
namespace Content.Server.Tools;
|
|
||||||
|
|
||||||
public sealed partial class ToolSystem
|
|
||||||
{
|
|
||||||
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
|
|
||||||
[Dependency] private readonly TileSystem _tile = default!;
|
|
||||||
|
|
||||||
private void InitializeLatticeCutting()
|
|
||||||
{
|
|
||||||
SubscribeLocalEvent<LatticeCuttingComponent, AfterInteractEvent>(OnLatticeCuttingAfterInteract);
|
|
||||||
SubscribeLocalEvent<LatticeCuttingComponent, LatticeCuttingCompleteEvent>(OnLatticeCutComplete);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnLatticeCutComplete(EntityUid uid, LatticeCuttingComponent component, LatticeCuttingCompleteEvent args)
|
|
||||||
{
|
|
||||||
if (args.Cancelled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
var coords = GetCoordinates(args.Coordinates);
|
|
||||||
var gridUid = coords.GetGridUid(EntityManager);
|
|
||||||
if (gridUid == null)
|
|
||||||
return;
|
|
||||||
var grid = _mapManager.GetGrid(gridUid.Value);
|
|
||||||
var tile = grid.GetTileRef(coords);
|
|
||||||
|
|
||||||
if (_tileDefinitionManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef
|
|
||||||
|| !tileDef.CanWirecutter
|
|
||||||
|| string.IsNullOrEmpty(tileDef.BaseTurf)
|
|
||||||
|| tile.IsBlockedTurf(true))
|
|
||||||
return;
|
|
||||||
|
|
||||||
_tile.CutTile(tile);
|
|
||||||
_adminLogger.Add(LogType.LatticeCut, LogImpact.Medium, $"{ToPrettyString(args.User):user} cut the lattice at {args.Coordinates:target}");
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnLatticeCuttingAfterInteract(EntityUid uid, LatticeCuttingComponent component,
|
|
||||||
AfterInteractEvent args)
|
|
||||||
{
|
|
||||||
if (args.Handled || !args.CanReach || args.Target != null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (TryCut(uid, args.User, component, args.ClickLocation))
|
|
||||||
args.Handled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool TryCut(EntityUid toolEntity, EntityUid user, LatticeCuttingComponent component, EntityCoordinates clickLocation)
|
|
||||||
{
|
|
||||||
if (!_mapManager.TryFindGridAt(clickLocation.ToMap(EntityManager, _transformSystem), out _, out var mapGrid))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var tile = mapGrid.GetTileRef(clickLocation);
|
|
||||||
|
|
||||||
var coordinates = mapGrid.GridTileToLocal(tile.GridIndices);
|
|
||||||
|
|
||||||
if (!InteractionSystem.InRangeUnobstructed(user, coordinates, popup: false))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (_tileDefinitionManager[tile.Tile.TypeId] is not ContentTileDefinition tileDef
|
|
||||||
|| !tileDef.CanWirecutter
|
|
||||||
|| string.IsNullOrEmpty(tileDef.BaseTurf)
|
|
||||||
|| _tileDefinitionManager[tileDef.BaseTurf] is not ContentTileDefinition ||
|
|
||||||
tile.IsBlockedTurf(true))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
var ev = new LatticeCuttingCompleteEvent(GetNetCoordinates(coordinates));
|
|
||||||
return UseTool(toolEntity, user, toolEntity, component.Delay, component.QualityNeeded, ev);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ namespace Content.Server.Tools
|
|||||||
_solutionContainer.RemoveReagent(entity.Comp.FuelSolution.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost);
|
_solutionContainer.RemoveReagent(entity.Comp.FuelSolution.Value, entity.Comp.FuelReagent, entity.Comp.FuelLitCost);
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
_adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(args.User):user} toggled {ToPrettyString(entity.Owner):welder} on");
|
AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(args.User):user} toggled {ToPrettyString(entity.Owner):welder} on");
|
||||||
|
|
||||||
_ignitionSource.SetIgnited(entity.Owner);
|
_ignitionSource.SetIgnited(entity.Owner);
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ namespace Content.Server.Tools
|
|||||||
public void TurnOff(Entity<WelderComponent> entity, ref ItemToggleDeactivateAttemptEvent args)
|
public void TurnOff(Entity<WelderComponent> entity, ref ItemToggleDeactivateAttemptEvent args)
|
||||||
{
|
{
|
||||||
// Logging
|
// Logging
|
||||||
_adminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(args.User):user} toggled {ToPrettyString(entity.Owner):welder} off");
|
AdminLogger.Add(LogType.InteractActivate, LogImpact.Low, $"{ToPrettyString(args.User):user} toggled {ToPrettyString(entity.Owner):welder} off");
|
||||||
|
|
||||||
_ignitionSource.SetIgnited(entity.Owner, false);
|
_ignitionSource.SetIgnited(entity.Owner, false);
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ using Content.Server.Popups;
|
|||||||
using Content.Server.Tools.Components;
|
using Content.Server.Tools.Components;
|
||||||
using Robust.Server.GameObjects;
|
using Robust.Server.GameObjects;
|
||||||
using Robust.Shared.Audio.Systems;
|
using Robust.Shared.Audio.Systems;
|
||||||
using Robust.Shared.Map;
|
|
||||||
|
|
||||||
using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem;
|
using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem;
|
||||||
|
|
||||||
@@ -13,13 +12,9 @@ namespace Content.Server.Tools
|
|||||||
// TODO move tool system to shared, and make it a friend of Tool Component.
|
// TODO move tool system to shared, and make it a friend of Tool Component.
|
||||||
public sealed partial class ToolSystem : SharedToolSystem
|
public sealed partial class ToolSystem : SharedToolSystem
|
||||||
{
|
{
|
||||||
[Dependency] private readonly IMapManager _mapManager = default!;
|
|
||||||
[Dependency] private readonly ITileDefinitionManager _tileDefinitionManager = default!;
|
|
||||||
[Dependency] private readonly AppearanceSystem _appearanceSystem = default!;
|
|
||||||
[Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
|
[Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
|
||||||
[Dependency] private readonly PopupSystem _popup = default!;
|
[Dependency] private readonly PopupSystem _popup = default!;
|
||||||
[Dependency] private readonly SharedAudioSystem _audio = default!;
|
[Dependency] private readonly SharedAudioSystem _audio = default!;
|
||||||
[Dependency] private readonly SharedPointLightSystem _light = default!;
|
|
||||||
[Dependency] private readonly SolutionContainerSystem _solutionContainer = default!;
|
[Dependency] private readonly SolutionContainerSystem _solutionContainer = default!;
|
||||||
[Dependency] private readonly TransformSystem _transformSystem = default!;
|
[Dependency] private readonly TransformSystem _transformSystem = default!;
|
||||||
|
|
||||||
@@ -27,7 +22,6 @@ namespace Content.Server.Tools
|
|||||||
{
|
{
|
||||||
base.Initialize();
|
base.Initialize();
|
||||||
|
|
||||||
InitializeLatticeCutting();
|
|
||||||
InitializeWelders();
|
InitializeWelders();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
using Content.Shared.Atmos;
|
using Content.Shared.Atmos;
|
||||||
using Content.Shared.Movement.Systems;
|
using Content.Shared.Movement.Systems;
|
||||||
|
using Content.Shared.Tools;
|
||||||
using Robust.Shared.Audio;
|
using Robust.Shared.Audio;
|
||||||
using Robust.Shared.Map;
|
using Robust.Shared.Map;
|
||||||
using Robust.Shared.Prototypes;
|
using Robust.Shared.Prototypes;
|
||||||
@@ -12,6 +13,9 @@ namespace Content.Shared.Maps
|
|||||||
[Prototype("tile")]
|
[Prototype("tile")]
|
||||||
public sealed partial class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition
|
public sealed partial class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition
|
||||||
{
|
{
|
||||||
|
[ValidatePrototypeId<ToolQualityPrototype>]
|
||||||
|
public const string PryingToolQuality = "Prying";
|
||||||
|
|
||||||
public const string SpaceID = "Space";
|
public const string SpaceID = "Space";
|
||||||
|
|
||||||
[ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer<ContentTileDefinition>))]
|
[ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer<ContentTileDefinition>))]
|
||||||
@@ -38,14 +42,13 @@ namespace Content.Shared.Maps
|
|||||||
[DataField("baseTurf")]
|
[DataField("baseTurf")]
|
||||||
public string BaseTurf { get; private set; } = string.Empty;
|
public string BaseTurf { get; private set; } = string.Empty;
|
||||||
|
|
||||||
[DataField("canCrowbar")] public bool CanCrowbar { get; private set; }
|
[DataField]
|
||||||
|
public PrototypeFlags<ToolQualityPrototype> DeconstructTools { get; set; } = new();
|
||||||
|
|
||||||
/// <summary>
|
/// <remarks>
|
||||||
/// Whether this tile can be pried by an advanced prying tool if not pryable otherwise.
|
/// Legacy AF but nice to have.
|
||||||
/// </summary>
|
/// </remarks>
|
||||||
[DataField("canAxe")] public bool CanAxe { get; private set; }
|
public bool CanCrowbar => DeconstructTools.Contains(PryingToolQuality);
|
||||||
|
|
||||||
[DataField("canWirecutter")] public bool CanWirecutter { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// These play when the mob has shoes on.
|
/// These play when the mob has shoes on.
|
||||||
|
|||||||
@@ -65,22 +65,7 @@ public sealed class TileSystem : EntitySystem
|
|||||||
|
|
||||||
var tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.TypeId];
|
var tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.TypeId];
|
||||||
|
|
||||||
if (!tileDef.CanCrowbar && !(pryPlating && tileDef.CanAxe))
|
if (!tileDef.CanCrowbar)
|
||||||
return false;
|
|
||||||
|
|
||||||
return DeconstructTile(tileRef);
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool CutTile(TileRef tileRef)
|
|
||||||
{
|
|
||||||
var tile = tileRef.Tile;
|
|
||||||
|
|
||||||
if (tile.IsEmpty)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.TypeId];
|
|
||||||
|
|
||||||
if (!tileDef.CanWirecutter)
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
return DeconstructTile(tileRef);
|
return DeconstructTile(tileRef);
|
||||||
@@ -112,7 +97,7 @@ public sealed class TileSystem : EntitySystem
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool DeconstructTile(TileRef tileRef)
|
public bool DeconstructTile(TileRef tileRef)
|
||||||
{
|
{
|
||||||
if (tileRef.Tile.IsEmpty)
|
if (tileRef.Tile.IsEmpty)
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
using Robust.Shared.GameStates;
|
|
||||||
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
||||||
|
|
||||||
namespace Content.Shared.Tools.Components;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Allows prying tiles up on a grid.
|
|
||||||
/// </summary>
|
|
||||||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
||||||
public sealed partial class TilePryingComponent : Component
|
|
||||||
{
|
|
||||||
[DataField("toolComponentNeeded"), AutoNetworkedField]
|
|
||||||
public bool ToolComponentNeeded = true;
|
|
||||||
|
|
||||||
[DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer<ToolQualityPrototype>)), AutoNetworkedField]
|
|
||||||
public string QualityNeeded = "Prying";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether this tool can pry tiles with CanAxe.
|
|
||||||
/// </summary>
|
|
||||||
[DataField("advanced"), AutoNetworkedField]
|
|
||||||
public bool Advanced = false;
|
|
||||||
|
|
||||||
[DataField("delay"), AutoNetworkedField]
|
|
||||||
public float Delay = 1f;
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
using Content.Shared.DoAfter;
|
||||||
|
using Content.Shared.Tools.Systems;
|
||||||
|
using Robust.Shared.GameStates;
|
||||||
|
using Robust.Shared.Map;
|
||||||
|
using Robust.Shared.Serialization;
|
||||||
|
|
||||||
|
namespace Content.Shared.Tools.Components;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is used for entities with <see cref="ToolComponent"/> that are additionally
|
||||||
|
/// able to modify tiles.
|
||||||
|
/// </summary>
|
||||||
|
[RegisterComponent, NetworkedComponent]
|
||||||
|
[Access(typeof(SharedToolSystem))]
|
||||||
|
public sealed partial class ToolTileCompatibleComponent : Component
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The time it takes to modify the tile.
|
||||||
|
/// </summary>
|
||||||
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
||||||
|
public TimeSpan Delay = TimeSpan.FromSeconds(1);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether or not the tile being modified must be unobstructed
|
||||||
|
/// </summary>
|
||||||
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
||||||
|
public bool RequiresUnobstructed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Serializable, NetSerializable]
|
||||||
|
public sealed partial class TileToolDoAfterEvent : DoAfterEvent
|
||||||
|
{
|
||||||
|
public NetCoordinates Coordinates;
|
||||||
|
|
||||||
|
public TileToolDoAfterEvent(NetCoordinates coordinates)
|
||||||
|
{
|
||||||
|
Coordinates = coordinates;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override DoAfterEvent Clone()
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@ using Content.Shared.Tools.Components;
|
|||||||
|
|
||||||
namespace Content.Shared.Tools.Systems;
|
namespace Content.Shared.Tools.Systems;
|
||||||
|
|
||||||
public abstract partial class SharedToolSystem : EntitySystem
|
public abstract partial class SharedToolSystem
|
||||||
{
|
{
|
||||||
public void InitializeMultipleTool()
|
public void InitializeMultipleTool()
|
||||||
{
|
{
|
||||||
@@ -57,7 +57,7 @@ public abstract partial class SharedToolSystem : EntitySystem
|
|||||||
if (!Resolve(uid, ref multiple, ref tool))
|
if (!Resolve(uid, ref multiple, ref tool))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Dirty(multiple);
|
Dirty(uid, multiple);
|
||||||
|
|
||||||
if (multiple.Entries.Length <= multiple.CurrentEntry)
|
if (multiple.Entries.Length <= multiple.CurrentEntry)
|
||||||
{
|
{
|
||||||
|
|||||||
103
Content.Shared/Tools/Systems/SharedToolSystem.Tile.cs
Normal file
103
Content.Shared/Tools/Systems/SharedToolSystem.Tile.cs
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
using Content.Shared.Database;
|
||||||
|
using Content.Shared.Fluids.Components;
|
||||||
|
using Content.Shared.Interaction;
|
||||||
|
using Content.Shared.Maps;
|
||||||
|
using Content.Shared.Physics;
|
||||||
|
using Content.Shared.Tools.Components;
|
||||||
|
using Robust.Shared.Map;
|
||||||
|
using Robust.Shared.Map.Components;
|
||||||
|
using Robust.Shared.Network;
|
||||||
|
using Robust.Shared.Utility;
|
||||||
|
|
||||||
|
namespace Content.Shared.Tools.Systems;
|
||||||
|
|
||||||
|
public abstract partial class SharedToolSystem
|
||||||
|
{
|
||||||
|
[Dependency] private readonly INetManager _net = default!;
|
||||||
|
|
||||||
|
public void InitializeTile()
|
||||||
|
{
|
||||||
|
SubscribeLocalEvent<ToolTileCompatibleComponent, AfterInteractEvent>(OnToolTileAfterInteract);
|
||||||
|
SubscribeLocalEvent<ToolTileCompatibleComponent, TileToolDoAfterEvent>(OnToolTileComplete);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnToolTileAfterInteract(Entity<ToolTileCompatibleComponent> ent, ref AfterInteractEvent args)
|
||||||
|
{
|
||||||
|
if (args.Handled || args.Target != null && !HasComp<PuddleComponent>(args.Target))
|
||||||
|
return;
|
||||||
|
|
||||||
|
args.Handled = UseToolOnTile((ent, ent, null), args.User, args.ClickLocation);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OnToolTileComplete(Entity<ToolTileCompatibleComponent> ent, ref TileToolDoAfterEvent args)
|
||||||
|
{
|
||||||
|
var comp = ent.Comp;
|
||||||
|
if (args.Handled || args.Cancelled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!TryComp<ToolComponent>(ent, out var tool))
|
||||||
|
return;
|
||||||
|
var coordinates = GetCoordinates(args.Coordinates);
|
||||||
|
|
||||||
|
var gridUid = coordinates.GetGridUid(EntityManager);
|
||||||
|
if (!TryComp<MapGridComponent>(gridUid, out var grid))
|
||||||
|
{
|
||||||
|
Log.Error("Attempted use tool on a non-existent grid?");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var tileRef = _maps.GetTileRef(gridUid.Value, grid, coordinates);
|
||||||
|
if (comp.RequiresUnobstructed && _turfs.IsTileBlocked(gridUid.Value, tileRef.GridIndices, CollisionGroup.MobMask))
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (!TryDeconstructWithToolQualities(tileRef, tool.Qualities))
|
||||||
|
return;
|
||||||
|
|
||||||
|
AdminLogger.Add(LogType.LatticeCut, LogImpact.Medium,
|
||||||
|
$"{ToPrettyString(args.User):player} used {ToPrettyString(ent)} to edit the tile at {args.Coordinates}");
|
||||||
|
args.Handled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool UseToolOnTile(Entity<ToolTileCompatibleComponent?, ToolComponent?> ent, EntityUid user, EntityCoordinates clickLocation)
|
||||||
|
{
|
||||||
|
if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2, false))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var comp = ent.Comp1!;
|
||||||
|
var tool = ent.Comp2!;
|
||||||
|
|
||||||
|
if (!_mapManager.TryFindGridAt(clickLocation.ToMap(EntityManager, _transformSystem), out var gridUid, out var mapGrid))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var tileRef = _maps.GetTileRef(gridUid, mapGrid, clickLocation);
|
||||||
|
var tileDef = (ContentTileDefinition) _tileDefManager[tileRef.Tile.TypeId];
|
||||||
|
|
||||||
|
if (!tool.Qualities.ContainsAny(tileDef.DeconstructTools))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(tileDef.BaseTurf))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (comp.RequiresUnobstructed && _turfs.IsTileBlocked(gridUid, tileRef.GridIndices, CollisionGroup.MobMask))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var coordinates = _maps.GridTileToLocal(gridUid, mapGrid, tileRef.GridIndices);
|
||||||
|
if (!InteractionSystem.InRangeUnobstructed(user, coordinates, popup: false))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
var args = new TileToolDoAfterEvent(GetNetCoordinates(coordinates));
|
||||||
|
UseTool(ent, user, ent, comp.Delay, tool.Qualities, args, out _, toolComponent: tool);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool TryDeconstructWithToolQualities(TileRef tileRef, PrototypeFlags<ToolQualityPrototype> withToolQualities)
|
||||||
|
{
|
||||||
|
var tileDef = (ContentTileDefinition) _tileDefManager[tileRef.Tile.TypeId];
|
||||||
|
if (withToolQualities.ContainsAny(tileDef.DeconstructTools))
|
||||||
|
{
|
||||||
|
// don't do this on the client or else the tile entity spawn mispredicts and looks horrible
|
||||||
|
return _net.IsClient || _tiles.DeconstructTile(tileRef);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
using Content.Shared.Database;
|
|
||||||
using Content.Shared.Fluids.Components;
|
|
||||||
using Content.Shared.Interaction;
|
|
||||||
using Content.Shared.Maps;
|
|
||||||
using Content.Shared.Tools.Components;
|
|
||||||
using Robust.Shared.Map;
|
|
||||||
using Robust.Shared.Map.Components;
|
|
||||||
|
|
||||||
namespace Content.Shared.Tools.Systems;
|
|
||||||
|
|
||||||
public abstract partial class SharedToolSystem
|
|
||||||
{
|
|
||||||
private void InitializeTilePrying()
|
|
||||||
{
|
|
||||||
SubscribeLocalEvent<TilePryingComponent, AfterInteractEvent>(OnTilePryingAfterInteract);
|
|
||||||
SubscribeLocalEvent<TilePryingComponent, TilePryingDoAfterEvent>(OnTilePryComplete);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTilePryingAfterInteract(EntityUid uid, TilePryingComponent component, AfterInteractEvent args)
|
|
||||||
{
|
|
||||||
if (args.Handled || !args.CanReach || args.Target != null && !HasComp<PuddleComponent>(args.Target))
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (TryPryTile(uid, args.User, component, args.ClickLocation))
|
|
||||||
args.Handled = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnTilePryComplete(EntityUid uid, TilePryingComponent component, TilePryingDoAfterEvent args)
|
|
||||||
{
|
|
||||||
if (args.Cancelled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
var coords = GetCoordinates(args.Coordinates);
|
|
||||||
var gridUid = coords.GetGridUid(EntityManager);
|
|
||||||
if (!TryComp(gridUid, out MapGridComponent? grid))
|
|
||||||
{
|
|
||||||
Log.Error("Attempted to pry from a non-existent grid?");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var tile = _maps.GetTileRef(gridUid.Value, grid, coords);
|
|
||||||
var center = _turfs.GetTileCenter(tile);
|
|
||||||
|
|
||||||
if (args.Used != null)
|
|
||||||
{
|
|
||||||
_adminLogger.Add(LogType.Tile, LogImpact.Low,
|
|
||||||
$"{ToPrettyString(args.User):actor} used {ToPrettyString(args.Used.Value):tool} to pry {_tileDefManager[tile.Tile.TypeId].Name} at {center}");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_adminLogger.Add(LogType.Tile, LogImpact.Low,
|
|
||||||
$"{ToPrettyString(args.User):actor} pried {_tileDefManager[tile.Tile.TypeId].Name} at {center}");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_netManager.IsServer)
|
|
||||||
_tiles.PryTile(tile, component.Advanced);
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool TryPryTile(EntityUid toolEntity, EntityUid user, TilePryingComponent component, EntityCoordinates clickLocation)
|
|
||||||
{
|
|
||||||
if (!TryComp<ToolComponent>(toolEntity, out var tool) && component.ToolComponentNeeded)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (!_mapManager.TryFindGridAt(clickLocation.ToMap(EntityManager, _transformSystem), out var gridUid, out var mapGrid))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var tile = _maps.GetTileRef(gridUid, mapGrid, clickLocation);
|
|
||||||
var coordinates = _maps.GridTileToLocal(gridUid, mapGrid, tile.GridIndices);
|
|
||||||
|
|
||||||
if (!InteractionSystem.InRangeUnobstructed(user, coordinates, popup: false))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var tileDef = (ContentTileDefinition) _tileDefManager[tile.Tile.TypeId];
|
|
||||||
|
|
||||||
if (!tileDef.CanCrowbar && !(tileDef.CanAxe && component.Advanced))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
var ev = new TilePryingDoAfterEvent(GetNetCoordinates(coordinates));
|
|
||||||
|
|
||||||
return UseTool(toolEntity, user, toolEntity, component.Delay, component.QualityNeeded, ev, toolComponent: tool);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -3,10 +3,8 @@ using Content.Shared.DoAfter;
|
|||||||
using Content.Shared.Interaction;
|
using Content.Shared.Interaction;
|
||||||
using Content.Shared.Maps;
|
using Content.Shared.Maps;
|
||||||
using Content.Shared.Tools.Components;
|
using Content.Shared.Tools.Components;
|
||||||
using Robust.Shared.Audio;
|
|
||||||
using Robust.Shared.Audio.Systems;
|
using Robust.Shared.Audio.Systems;
|
||||||
using Robust.Shared.Map;
|
using Robust.Shared.Map;
|
||||||
using Robust.Shared.Network;
|
|
||||||
using Robust.Shared.Prototypes;
|
using Robust.Shared.Prototypes;
|
||||||
using Robust.Shared.Serialization;
|
using Robust.Shared.Serialization;
|
||||||
using Robust.Shared.Utility;
|
using Robust.Shared.Utility;
|
||||||
@@ -16,9 +14,8 @@ namespace Content.Shared.Tools.Systems;
|
|||||||
public abstract partial class SharedToolSystem : EntitySystem
|
public abstract partial class SharedToolSystem : EntitySystem
|
||||||
{
|
{
|
||||||
[Dependency] private readonly IMapManager _mapManager = default!;
|
[Dependency] private readonly IMapManager _mapManager = default!;
|
||||||
[Dependency] private readonly INetManager _netManager = default!;
|
|
||||||
[Dependency] private readonly IPrototypeManager _protoMan = default!;
|
[Dependency] private readonly IPrototypeManager _protoMan = default!;
|
||||||
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
|
[Dependency] protected readonly ISharedAdminLogManager AdminLogger = default!;
|
||||||
[Dependency] private readonly ITileDefinitionManager _tileDefManager = default!;
|
[Dependency] private readonly ITileDefinitionManager _tileDefManager = default!;
|
||||||
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
|
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
|
||||||
[Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
|
[Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
|
||||||
@@ -31,7 +28,7 @@ public abstract partial class SharedToolSystem : EntitySystem
|
|||||||
public override void Initialize()
|
public override void Initialize()
|
||||||
{
|
{
|
||||||
InitializeMultipleTool();
|
InitializeMultipleTool();
|
||||||
InitializeTilePrying();
|
InitializeTile();
|
||||||
SubscribeLocalEvent<ToolComponent, ToolDoAfterEvent>(OnDoAfter);
|
SubscribeLocalEvent<ToolComponent, ToolDoAfterEvent>(OnDoAfter);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,8 +148,6 @@ public abstract partial class SharedToolSystem : EntitySystem
|
|||||||
/// <param name="toolQualityNeeded">The quality needed for this tool to work.</param>
|
/// <param name="toolQualityNeeded">The quality needed for this tool to work.</param>
|
||||||
/// <param name="doAfterEv">The event that will be raised when the tool has finished (including cancellation). Event
|
/// <param name="doAfterEv">The event that will be raised when the tool has finished (including cancellation). Event
|
||||||
/// will be directed at the tool target.</param>
|
/// will be directed at the tool target.</param>
|
||||||
/// <param name="id">The id of the DoAfter that was created. This may be null even if the function returns true in
|
|
||||||
/// the event that this tool-use cancelled an existing DoAfter</param>
|
|
||||||
/// <param name="toolComponent">The tool component.</param>
|
/// <param name="toolComponent">The tool component.</param>
|
||||||
/// <returns>Returns true if any interaction takes place.</returns>
|
/// <returns>Returns true if any interaction takes place.</returns>
|
||||||
public bool UseTool(
|
public bool UseTool(
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
damage:
|
damage:
|
||||||
types:
|
types:
|
||||||
Slash: 10
|
Slash: 10
|
||||||
- type: TilePrying
|
- type: ToolTileCompatible
|
||||||
- type: Tool
|
- type: Tool
|
||||||
qualities:
|
qualities:
|
||||||
- Prying
|
- Prying
|
||||||
|
|||||||
@@ -93,7 +93,7 @@
|
|||||||
useSound:
|
useSound:
|
||||||
path: /Audio/Items/crowbar.ogg
|
path: /Audio/Items/crowbar.ogg
|
||||||
speed: 0.05
|
speed: 0.05
|
||||||
- type: TilePrying
|
- type: ToolTileCompatible
|
||||||
- type: Prying
|
- type: Prying
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
|
|||||||
@@ -17,8 +17,7 @@
|
|||||||
quickEquip: false
|
quickEquip: false
|
||||||
slots:
|
slots:
|
||||||
- Belt
|
- Belt
|
||||||
- type: TilePrying
|
- type: ToolTileCompatible
|
||||||
- type: LatticeCutting
|
|
||||||
- type: Tool
|
- type: Tool
|
||||||
qualities:
|
qualities:
|
||||||
- Prying
|
- Prying
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
- type: Item
|
- type: Item
|
||||||
sprite: Objects/Tools/wirecutters.rsi
|
sprite: Objects/Tools/wirecutters.rsi
|
||||||
storedRotation: -90
|
storedRotation: -90
|
||||||
- type: LatticeCutting
|
- type: ToolTileCompatible
|
||||||
- type: PhysicalComposition
|
- type: PhysicalComposition
|
||||||
materialComposition:
|
materialComposition:
|
||||||
Steel: 100
|
Steel: 100
|
||||||
@@ -156,7 +156,7 @@
|
|||||||
- Prying
|
- Prying
|
||||||
useSound:
|
useSound:
|
||||||
path: /Audio/Items/crowbar.ogg
|
path: /Audio/Items/crowbar.ogg
|
||||||
- type: TilePrying
|
- type: ToolTileCompatible
|
||||||
- type: PhysicalComposition
|
- type: PhysicalComposition
|
||||||
materialComposition:
|
materialComposition:
|
||||||
Steel: 100
|
Steel: 100
|
||||||
@@ -431,7 +431,6 @@
|
|||||||
- type: Tag
|
- type: Tag
|
||||||
tags:
|
tags:
|
||||||
- Multitool
|
- Multitool
|
||||||
- type: TilePrying
|
|
||||||
- type: Prying
|
- type: Prying
|
||||||
enabled: false
|
enabled: false
|
||||||
- type: Tool
|
- type: Tool
|
||||||
@@ -439,7 +438,7 @@
|
|||||||
- Screwing
|
- Screwing
|
||||||
speed: 1.2 # Kept for future adjustments. Currently 1.2x for balance
|
speed: 1.2 # Kept for future adjustments. Currently 1.2x for balance
|
||||||
useSound: /Audio/Items/drill_use.ogg
|
useSound: /Audio/Items/drill_use.ogg
|
||||||
- type: LatticeCutting
|
- type: ToolTileCompatible
|
||||||
- type: MultipleTool
|
- type: MultipleTool
|
||||||
statusShowBehavior: true
|
statusShowBehavior: true
|
||||||
entries:
|
entries:
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
- type: Tool
|
- type: Tool
|
||||||
qualities:
|
qualities:
|
||||||
- Prying
|
- Prying
|
||||||
- type: TilePrying
|
- type: ToolTileCompatible
|
||||||
- type: Prying
|
- type: Prying
|
||||||
- type: UseDelay
|
- type: UseDelay
|
||||||
delay: 1
|
delay: 1
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteelCheckerLight
|
itemDrop: FloorTileItemSteelCheckerLight
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteelCheckerDark
|
itemDrop: FloorTileItemSteelCheckerDark
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -82,7 +82,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -100,7 +100,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -112,7 +112,7 @@
|
|||||||
sprite: /Textures/Tiles/steel_offset.png
|
sprite: /Textures/Tiles/steel_offset.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -130,7 +130,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -184,7 +184,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -202,7 +202,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepWood
|
collection: FootstepWood
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -258,7 +258,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -294,7 +294,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -306,7 +306,7 @@
|
|||||||
sprite: /Textures/Tiles/white_offset.png
|
sprite: /Textures/Tiles/white_offset.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -324,7 +324,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -342,7 +342,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -378,7 +378,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -396,7 +396,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
@@ -414,7 +414,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -432,7 +432,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -450,7 +450,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -468,7 +468,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -480,7 +480,7 @@
|
|||||||
sprite: /Textures/Tiles/dark_offset.png
|
sprite: /Textures/Tiles/dark_offset.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -498,7 +498,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -516,7 +516,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -534,7 +534,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -552,7 +552,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -570,7 +570,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
@@ -582,7 +582,7 @@
|
|||||||
sprite: /Textures/Tiles/tech_maint.png
|
sprite: /Textures/Tiles/tech_maint.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemTechmaint
|
itemDrop: FloorTileItemTechmaint
|
||||||
@@ -594,7 +594,7 @@
|
|||||||
sprite: /Textures/Tiles/reinforced.png
|
sprite: /Textures/Tiles/reinforced.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemReinforced
|
itemDrop: FloorTileItemReinforced
|
||||||
@@ -606,7 +606,7 @@
|
|||||||
sprite: /Textures/Tiles/mono.png
|
sprite: /Textures/Tiles/mono.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemMono
|
itemDrop: FloorTileItemMono
|
||||||
@@ -618,7 +618,7 @@
|
|||||||
sprite: /Textures/Tiles/lino.png
|
sprite: /Textures/Tiles/lino.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemLino
|
itemDrop: FloorTileItemLino
|
||||||
@@ -630,7 +630,7 @@
|
|||||||
sprite: /Textures/Tiles/steel_dirty.png
|
sprite: /Textures/Tiles/steel_dirty.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
itemDrop: FloorTileItemDirty
|
itemDrop: FloorTileItemDirty
|
||||||
@@ -642,7 +642,7 @@
|
|||||||
sprite: /Textures/Tiles/elevator_shaft.png
|
sprite: /Textures/Tiles/elevator_shaft.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemElevatorShaft
|
itemDrop: FloorTileItemElevatorShaft
|
||||||
@@ -654,7 +654,7 @@
|
|||||||
sprite: /Textures/Tiles/metaldiamond.png
|
sprite: /Textures/Tiles/metaldiamond.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemMetalDiamond
|
itemDrop: FloorTileItemMetalDiamond
|
||||||
@@ -666,7 +666,7 @@
|
|||||||
sprite: /Textures/Tiles/rock_vault.png
|
sprite: /Textures/Tiles/rock_vault.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
itemDrop: FloorTileItemRockVault
|
itemDrop: FloorTileItemRockVault
|
||||||
@@ -678,7 +678,7 @@
|
|||||||
sprite: /Textures/Tiles/blue.png
|
sprite: /Textures/Tiles/blue.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemBlue
|
itemDrop: FloorTileItemBlue
|
||||||
@@ -696,7 +696,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemLime
|
itemDrop: FloorTileItemLime
|
||||||
@@ -708,7 +708,7 @@
|
|||||||
sprite: /Textures/Tiles/mining_floor.png
|
sprite: /Textures/Tiles/mining_floor.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemMining
|
itemDrop: FloorTileItemMining
|
||||||
@@ -720,7 +720,7 @@
|
|||||||
sprite: /Textures/Tiles/mining_floor_dark.png
|
sprite: /Textures/Tiles/mining_floor_dark.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemMiningDark
|
itemDrop: FloorTileItemMiningDark
|
||||||
@@ -732,7 +732,7 @@
|
|||||||
sprite: /Textures/Tiles/mining_floor_light.png
|
sprite: /Textures/Tiles/mining_floor_light.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemMiningLight
|
itemDrop: FloorTileItemMiningLight
|
||||||
@@ -745,7 +745,7 @@
|
|||||||
sprite: /Textures/Tiles/freezer.png
|
sprite: /Textures/Tiles/freezer.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemFreezer
|
itemDrop: FloorTileItemFreezer
|
||||||
@@ -757,7 +757,7 @@
|
|||||||
sprite: /Textures/Tiles/showroom.png
|
sprite: /Textures/Tiles/showroom.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShowroom
|
itemDrop: FloorTileItemShowroom
|
||||||
@@ -769,7 +769,7 @@
|
|||||||
sprite: /Textures/Tiles/hydro.png
|
sprite: /Textures/Tiles/hydro.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemHydro
|
itemDrop: FloorTileItemHydro
|
||||||
@@ -787,7 +787,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemBar
|
itemDrop: FloorTileItemBar
|
||||||
@@ -799,7 +799,7 @@
|
|||||||
sprite: /Textures/Tiles/clown.png
|
sprite: /Textures/Tiles/clown.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemClown
|
itemDrop: FloorTileItemClown
|
||||||
@@ -811,7 +811,7 @@
|
|||||||
sprite: /Textures/Tiles/mime.png
|
sprite: /Textures/Tiles/mime.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemMime
|
itemDrop: FloorTileItemMime
|
||||||
@@ -823,7 +823,7 @@
|
|||||||
sprite: /Textures/Tiles/kitchen.png
|
sprite: /Textures/Tiles/kitchen.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemKitchen
|
itemDrop: FloorTileItemKitchen
|
||||||
@@ -835,7 +835,7 @@
|
|||||||
sprite: /Textures/Tiles/laundry.png
|
sprite: /Textures/Tiles/laundry.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemLaundry
|
itemDrop: FloorTileItemLaundry
|
||||||
@@ -854,7 +854,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such, in SS13 prying destroyed tiles wouldn't give you anything.
|
itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such, in SS13 prying destroyed tiles wouldn't give you anything.
|
||||||
@@ -870,7 +870,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible
|
itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible
|
||||||
@@ -890,7 +890,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemConcrete
|
itemDrop: FloorTileItemConcrete
|
||||||
@@ -909,7 +909,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemConcrete
|
itemDrop: FloorTileItemConcrete
|
||||||
@@ -928,7 +928,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemConcrete
|
itemDrop: FloorTileItemConcrete
|
||||||
@@ -947,7 +947,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemGrayConcrete
|
itemDrop: FloorTileItemGrayConcrete
|
||||||
@@ -966,7 +966,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemGrayConcrete
|
itemDrop: FloorTileItemGrayConcrete
|
||||||
@@ -985,7 +985,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemGrayConcrete
|
itemDrop: FloorTileItemGrayConcrete
|
||||||
@@ -1004,7 +1004,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemOldConcrete
|
itemDrop: FloorTileItemOldConcrete
|
||||||
@@ -1023,7 +1023,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemOldConcrete
|
itemDrop: FloorTileItemOldConcrete
|
||||||
@@ -1042,7 +1042,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemOldConcrete
|
itemDrop: FloorTileItemOldConcrete
|
||||||
@@ -1056,7 +1056,7 @@
|
|||||||
sprite: /Textures/Tiles/arcadeblue.png
|
sprite: /Textures/Tiles/arcadeblue.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1071,7 +1071,7 @@
|
|||||||
sprite: /Textures/Tiles/arcadeblue2.png
|
sprite: /Textures/Tiles/arcadeblue2.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1086,7 +1086,7 @@
|
|||||||
sprite: /Textures/Tiles/arcadered.png
|
sprite: /Textures/Tiles/arcadered.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1101,7 +1101,7 @@
|
|||||||
sprite: /Textures/Tiles/eighties.png
|
sprite: /Textures/Tiles/eighties.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1116,7 +1116,7 @@
|
|||||||
sprite: /Textures/Tiles/carpetclown.png
|
sprite: /Textures/Tiles/carpetclown.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1131,7 +1131,7 @@
|
|||||||
sprite: /Textures/Tiles/carpetoffice.png
|
sprite: /Textures/Tiles/carpetoffice.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1152,7 +1152,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
@@ -1171,7 +1171,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
@@ -1185,7 +1185,7 @@
|
|||||||
sprite: /Textures/Tiles/shuttlewhite.png
|
sprite: /Textures/Tiles/shuttlewhite.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShuttleWhite
|
itemDrop: FloorTileItemShuttleWhite
|
||||||
@@ -1197,7 +1197,7 @@
|
|||||||
sprite: /Textures/Tiles/shuttleblue.png
|
sprite: /Textures/Tiles/shuttleblue.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShuttleBlue
|
itemDrop: FloorTileItemShuttleBlue
|
||||||
@@ -1209,7 +1209,7 @@
|
|||||||
sprite: /Textures/Tiles/shuttleorange.png
|
sprite: /Textures/Tiles/shuttleorange.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShuttleOrange
|
itemDrop: FloorTileItemShuttleOrange
|
||||||
@@ -1221,7 +1221,7 @@
|
|||||||
sprite: /Textures/Tiles/shuttlepurple.png
|
sprite: /Textures/Tiles/shuttlepurple.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShuttlePurple
|
itemDrop: FloorTileItemShuttlePurple
|
||||||
@@ -1233,7 +1233,7 @@
|
|||||||
sprite: /Textures/Tiles/shuttlered.png
|
sprite: /Textures/Tiles/shuttlered.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
itemDrop: FloorTileItemShuttleRed
|
itemDrop: FloorTileItemShuttleRed
|
||||||
@@ -1247,7 +1247,7 @@
|
|||||||
sprite: /Textures/Tiles/gold.png
|
sprite: /Textures/Tiles/gold.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemGold
|
itemDrop: FloorTileItemGold
|
||||||
@@ -1259,7 +1259,7 @@
|
|||||||
sprite: /Textures/Tiles/silver.png
|
sprite: /Textures/Tiles/silver.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: FloorTileItemSilver
|
itemDrop: FloorTileItemSilver
|
||||||
@@ -1277,7 +1277,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: SheetGlass1
|
itemDrop: SheetGlass1
|
||||||
@@ -1295,7 +1295,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
itemDrop: SheetRGlass1
|
itemDrop: SheetRGlass1
|
||||||
@@ -1308,7 +1308,7 @@
|
|||||||
sprite: /Textures/Tiles/green_circuit.png
|
sprite: /Textures/Tiles/green_circuit.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemGCircuit
|
itemDrop: FloorTileItemGCircuit
|
||||||
@@ -1320,7 +1320,7 @@
|
|||||||
sprite: /Textures/Tiles/blue_circuit.png
|
sprite: /Textures/Tiles/blue_circuit.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemBCircuit
|
itemDrop: FloorTileItemBCircuit
|
||||||
@@ -1345,7 +1345,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: FloorDirt
|
baseTurf: FloorDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1357,7 +1356,6 @@
|
|||||||
sprite: /Textures/Tiles/grass.png
|
sprite: /Textures/Tiles/grass.png
|
||||||
baseTurf: FloorDirt
|
baseTurf: FloorDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
itemDrop: FloorTileItemGrass
|
itemDrop: FloorTileItemGrass
|
||||||
@@ -1370,7 +1368,6 @@
|
|||||||
sprite: /Textures/Tiles/grassjungle.png
|
sprite: /Textures/Tiles/grassjungle.png
|
||||||
baseTurf: FloorDirt
|
baseTurf: FloorDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
itemDrop: FloorTileItemGrassJungle
|
itemDrop: FloorTileItemGrassJungle
|
||||||
@@ -1389,7 +1386,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: FloorDirt
|
baseTurf: FloorDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1407,7 +1403,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: FloorDirt
|
baseTurf: FloorDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1425,7 +1420,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1454,7 +1448,6 @@
|
|||||||
- 0.0116
|
- 0.0116
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1466,7 +1459,6 @@
|
|||||||
sprite: /Textures/Tiles/Asteroid/asteroid_dug.png
|
sprite: /Textures/Tiles/Asteroid/asteroid_dug.png
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1493,7 +1485,6 @@
|
|||||||
- 0.0116
|
- 0.0116
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1505,7 +1496,7 @@
|
|||||||
sprite: /Textures/Tiles/Asteroid/asteroid_tile.png
|
sprite: /Textures/Tiles/Asteroid/asteroid_tile.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1534,7 +1525,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1546,7 +1536,6 @@
|
|||||||
sprite: /Textures/Tiles/Asteroid/asteroid0.png
|
sprite: /Textures/Tiles/Asteroid/asteroid0.png
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1558,7 +1547,6 @@
|
|||||||
sprite: /Textures/Tiles/Asteroid/ironsand0.png
|
sprite: /Textures/Tiles/Asteroid/ironsand0.png
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1580,7 +1568,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1601,7 +1588,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1618,7 +1604,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepBlood
|
collection: FootstepBlood
|
||||||
itemDrop: FloorTileItemFlesh
|
itemDrop: FloorTileItemFlesh
|
||||||
@@ -1631,7 +1617,7 @@
|
|||||||
sprite: /Textures/Tiles/steel_maint.png
|
sprite: /Textures/Tiles/steel_maint.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemSteelMaint
|
itemDrop: FloorTileItemSteelMaint
|
||||||
@@ -1649,7 +1635,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemGratingMaint
|
itemDrop: FloorTileItemGratingMaint
|
||||||
@@ -1667,7 +1653,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepWood
|
collection: FootstepWood
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1690,7 +1676,7 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepWood
|
collection: FootstepWood
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1704,7 +1690,7 @@
|
|||||||
sprite: /Textures/Tiles/Misc/Web/web_tile.png
|
sprite: /Textures/Tiles/Misc/Web/web_tile.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepCarpet
|
collection: FootstepCarpet
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
@@ -1727,7 +1713,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -1739,8 +1724,6 @@
|
|||||||
sprite: /Textures/Tiles/hull.png
|
sprite: /Textures/Tiles/hull.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: false
|
|
||||||
canAxe: false #You can't RCD these in SS13 apparently, so this is probably the next best thing
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemSteel #probably should not be normally obtainable, but the game shits itself and dies when you try to put null here
|
itemDrop: FloorTileItemSteel #probably should not be normally obtainable, but the game shits itself and dies when you try to put null here
|
||||||
@@ -1752,8 +1735,6 @@
|
|||||||
sprite: /Textures/Tiles/hull_reinforced.png
|
sprite: /Textures/Tiles/hull_reinforced.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: false
|
|
||||||
canAxe: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
@@ -1765,8 +1746,6 @@
|
|||||||
sprite: /Textures/Tiles/super_reinforced.png
|
sprite: /Textures/Tiles/super_reinforced.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: false
|
|
||||||
canAxe: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
itemDrop: FloorTileItemReinforced #same case as FloorHull
|
itemDrop: FloorTileItemReinforced #same case as FloorHull
|
||||||
@@ -1796,7 +1775,7 @@
|
|||||||
West: /Textures/Tiles/Planet/Grass/double_edge.png
|
West: /Textures/Tiles/Planet/Grass/double_edge.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
itemDrop: FloorTileItemAstroGrass
|
itemDrop: FloorTileItemAstroGrass
|
||||||
@@ -1809,7 +1788,7 @@
|
|||||||
sprite: /Textures/Tiles/Planet/Snow/ice.png
|
sprite: /Textures/Tiles/Planet/Snow/ice.png
|
||||||
baseTurf: Plating
|
baseTurf: Plating
|
||||||
isSubfloor: false
|
isSubfloor: false
|
||||||
canCrowbar: true
|
deconstructTools: [ Prying ]
|
||||||
friction: 0.05
|
friction: 0.05
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
mobFriction: 0.5
|
mobFriction: 0.5
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
name: tiles-dirt-floor
|
name: tiles-dirt-floor
|
||||||
sprite: /Textures/Tiles/Planet/dirt.rsi/dirt.png
|
sprite: /Textures/Tiles/Planet/dirt.rsi/dirt.png
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -24,7 +23,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
- 1.0
|
- 1.0
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -44,7 +42,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
- 1.0
|
- 1.0
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -74,7 +71,6 @@
|
|||||||
West: /Textures/Tiles/Planet/Grass/double_edge.png
|
West: /Textures/Tiles/Planet/Grass/double_edge.png
|
||||||
baseTurf: FloorPlanetDirt
|
baseTurf: FloorPlanetDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
itemDrop: FloorTileItemGrass
|
itemDrop: FloorTileItemGrass
|
||||||
@@ -88,7 +84,6 @@
|
|||||||
name: tiles-basalt-floor
|
name: tiles-basalt-floor
|
||||||
sprite: /Textures/Tiles/Planet/basalt.png
|
sprite: /Textures/Tiles/Planet/basalt.png
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -122,7 +117,6 @@
|
|||||||
North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png
|
North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png
|
||||||
West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png
|
West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepSnow
|
collection: FootstepSnow
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
@@ -135,7 +129,6 @@
|
|||||||
name: tiles-ice
|
name: tiles-ice
|
||||||
sprite: /Textures/Tiles/Planet/Snow/ice.png
|
sprite: /Textures/Tiles/Planet/Snow/ice.png
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
friction: 0.05
|
friction: 0.05
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
@@ -156,7 +149,6 @@
|
|||||||
North: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png
|
North: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png
|
||||||
West: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png
|
West: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepSnow
|
collection: FootstepSnow
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
sprite: /Textures/Tiles/plating.png
|
sprite: /Textures/Tiles/plating.png
|
||||||
baseTurf: Lattice
|
baseTurf: Lattice
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canAxe: true
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.3
|
friction: 0.3
|
||||||
@@ -21,7 +20,6 @@
|
|||||||
- 1.0
|
- 1.0
|
||||||
baseTurf: Lattice
|
baseTurf: Lattice
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canAxe: true
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.3
|
friction: 0.3
|
||||||
@@ -33,7 +31,6 @@
|
|||||||
sprite: /Textures/Tiles/plating_burnt.png
|
sprite: /Textures/Tiles/plating_burnt.png
|
||||||
baseTurf: Lattice
|
baseTurf: Lattice
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canAxe: true
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.3
|
friction: 0.3
|
||||||
@@ -45,7 +42,6 @@
|
|||||||
sprite: /Textures/Tiles/Asteroid/asteroid_plating.png
|
sprite: /Textures/Tiles/Asteroid/asteroid_plating.png
|
||||||
baseTurf: Lattice
|
baseTurf: Lattice
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canAxe: true
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.3
|
friction: 0.3
|
||||||
@@ -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.
|
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
|
baseTurf: Lattice
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canAxe: true
|
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.15 #a little less then actual snow
|
friction: 0.15 #a little less then actual snow
|
||||||
@@ -69,7 +64,7 @@
|
|||||||
sprite: /Textures/Tiles/lattice.png
|
sprite: /Textures/Tiles/lattice.png
|
||||||
baseTurf: Space
|
baseTurf: Space
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canWirecutter: true
|
deconstructTools: [ Cutting ]
|
||||||
weather: true
|
weather: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
|
|||||||
@@ -207,12 +207,11 @@
|
|||||||
components:
|
components:
|
||||||
- Item
|
- Item
|
||||||
permanentComponents:
|
permanentComponents:
|
||||||
- type: TilePrying
|
|
||||||
- type: UserInterface
|
- type: UserInterface
|
||||||
interfaces:
|
interfaces:
|
||||||
- key: enum.SignalLinkerUiKey.Key
|
- key: enum.SignalLinkerUiKey.Key
|
||||||
type: SignalPortSelectorBoundUserInterface
|
type: SignalPortSelectorBoundUserInterface
|
||||||
- type: LatticeCutting
|
- type: ToolTileCompatible
|
||||||
- type: Tool
|
- type: Tool
|
||||||
qualities:
|
qualities:
|
||||||
- Screwing
|
- Screwing
|
||||||
|
|||||||
Reference in New Issue
Block a user