Tile fixes (#14388)
- Set some of the defaults in the definition to what we use for most prototypes - Added planet variant for dirt to avoid black space - Dirt looks like literal poop but will have another sprite for it soon
This commit is contained in:
@@ -9,12 +9,10 @@ using Robust.Shared.Utility;
|
|||||||
|
|
||||||
namespace Content.Shared.Maps
|
namespace Content.Shared.Maps
|
||||||
{
|
{
|
||||||
[UsedImplicitly]
|
|
||||||
[Prototype("tile")]
|
[Prototype("tile")]
|
||||||
public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition
|
public sealed class ContentTileDefinition : IPrototype, IInheritingPrototype, ITileDefinition
|
||||||
{
|
{
|
||||||
public const string SpaceID = "Space";
|
public const string SpaceID = "Space";
|
||||||
private string _name = string.Empty;
|
|
||||||
|
|
||||||
[ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer<ContentTileDefinition>))]
|
[ParentDataFieldAttribute(typeof(AbstractPrototypeIdArraySerializer<ContentTileDefinition>))]
|
||||||
public string[]? Parents { get; private set; }
|
public string[]? Parents { get; private set; }
|
||||||
@@ -53,7 +51,7 @@ namespace Content.Shared.Maps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField("barestepSounds")] public SoundSpecifier? BarestepSounds { get; } = new SoundCollectionSpecifier("BarestepHard");
|
[DataField("barestepSounds")] public SoundSpecifier? BarestepSounds { get; } = new SoundCollectionSpecifier("BarestepHard");
|
||||||
|
|
||||||
[DataField("friction")] public float Friction { get; set; }
|
[DataField("friction")] public float Friction { get; set; } = 0.3f;
|
||||||
|
|
||||||
[DataField("variants")] public byte Variants { get; set; } = 1;
|
[DataField("variants")] public byte Variants { get; set; } = 1;
|
||||||
|
|
||||||
@@ -62,7 +60,7 @@ namespace Content.Shared.Maps
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[DataField("placementVariants")] public byte[] PlacementVariants { get; set; } = new byte[1] { 0 };
|
[DataField("placementVariants")] public byte[] PlacementVariants { get; set; } = new byte[1] { 0 };
|
||||||
|
|
||||||
[DataField("thermalConductivity")] public float ThermalConductivity { get; set; } = 0.05f;
|
[DataField("thermalConductivity")] public float ThermalConductivity = 0.04f;
|
||||||
|
|
||||||
// Heat capacity is opt-in, not opt-out.
|
// Heat capacity is opt-in, not opt-out.
|
||||||
[DataField("heatCapacity")] public float HeatCapacity = Atmospherics.MinimumHeatCapacity;
|
[DataField("heatCapacity")] public float HeatCapacity = Atmospherics.MinimumHeatCapacity;
|
||||||
|
|||||||
@@ -10,9 +10,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -27,9 +25,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -44,9 +40,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -61,9 +55,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -78,9 +70,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -97,7 +87,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -114,7 +103,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -131,7 +119,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -148,7 +135,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -163,9 +149,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteel
|
itemDrop: FloorTileItemSteel
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -182,9 +166,7 @@
|
|||||||
collection: FootstepWood
|
collection: FootstepWood
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
collection: BarestepWood
|
collection: BarestepWood
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemWood
|
itemDrop: FloorTileItemWood
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -201,7 +183,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -218,7 +199,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -235,7 +215,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -252,7 +231,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -269,7 +247,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -286,7 +263,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -303,7 +279,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -320,7 +295,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -337,7 +311,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -354,7 +327,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemWhite
|
itemDrop: FloorTileItemWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -369,9 +341,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -386,9 +356,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -403,9 +371,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -420,9 +386,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -439,7 +403,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -456,7 +419,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -473,7 +435,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -490,7 +451,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -507,7 +467,6 @@
|
|||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.25
|
friction: 0.25
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -522,9 +481,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDark
|
itemDrop: FloorTileItemDark
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -537,9 +494,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemTechmaint
|
itemDrop: FloorTileItemTechmaint
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -552,9 +507,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemReinforced
|
itemDrop: FloorTileItemReinforced
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -567,9 +520,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemMono
|
itemDrop: FloorTileItemMono
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -582,9 +533,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemLino
|
itemDrop: FloorTileItemLino
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -597,9 +546,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemDirty
|
itemDrop: FloorTileItemDirty
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -612,9 +559,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemElevatorShaft
|
itemDrop: FloorTileItemElevatorShaft
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -627,9 +572,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemMetalDiamond
|
itemDrop: FloorTileItemMetalDiamond
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -642,9 +585,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemRockVault
|
itemDrop: FloorTileItemRockVault
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -657,9 +598,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemBlue
|
itemDrop: FloorTileItemBlue
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# Departamental
|
# Departamental
|
||||||
@@ -673,9 +612,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemFreezer
|
itemDrop: FloorTileItemFreezer
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -688,9 +625,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShowroom
|
itemDrop: FloorTileItemShowroom
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -703,9 +638,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemHydro
|
itemDrop: FloorTileItemHydro
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -720,9 +653,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemBar
|
itemDrop: FloorTileItemBar
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -735,9 +666,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemClown
|
itemDrop: FloorTileItemClown
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -750,9 +679,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemMime
|
itemDrop: FloorTileItemMime
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -765,9 +692,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemKitchen
|
itemDrop: FloorTileItemKitchen
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -780,9 +705,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemLaundry
|
itemDrop: FloorTileItemLaundry
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# Carpets (non smoothing)
|
# Carpets (non smoothing)
|
||||||
@@ -800,7 +723,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemArcadeBlue
|
itemDrop: FloorTileItemArcadeBlue
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -817,7 +739,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemArcadeBlue2
|
itemDrop: FloorTileItemArcadeBlue2
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -834,7 +755,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemArcadeRed
|
itemDrop: FloorTileItemArcadeRed
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -851,7 +771,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemEighties
|
itemDrop: FloorTileItemEighties
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -868,7 +787,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemCarpetClown
|
itemDrop: FloorTileItemCarpetClown
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -885,7 +803,6 @@
|
|||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemCarpetOffice
|
itemDrop: FloorTileItemCarpetOffice
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -902,7 +819,6 @@
|
|||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemBoxing
|
itemDrop: FloorTileItemBoxing
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -919,7 +835,6 @@
|
|||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.40
|
friction: 0.40
|
||||||
itemDrop: FloorTileItemGym
|
itemDrop: FloorTileItemGym
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# Shuttle
|
# Shuttle
|
||||||
@@ -933,9 +848,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShuttleWhite
|
itemDrop: FloorTileItemShuttleWhite
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -948,9 +861,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShuttleBlue
|
itemDrop: FloorTileItemShuttleBlue
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -963,9 +874,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShuttleOrange
|
itemDrop: FloorTileItemShuttleOrange
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -978,9 +887,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShuttlePurple
|
itemDrop: FloorTileItemShuttlePurple
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -993,9 +900,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepFloor
|
collection: FootstepFloor
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemShuttleRed
|
itemDrop: FloorTileItemShuttleRed
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
|
|
||||||
@@ -1010,9 +915,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGold
|
itemDrop: FloorTileItemGold
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1025,9 +928,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSilver
|
itemDrop: FloorTileItemSilver
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1040,9 +941,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: SheetGlass1
|
itemDrop: SheetGlass1
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1055,9 +954,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepTile
|
collection: FootstepTile
|
||||||
friction: 0.30
|
|
||||||
itemDrop: SheetRGlass1
|
itemDrop: SheetRGlass1
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# Circuits
|
# Circuits
|
||||||
@@ -1071,9 +968,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGCircuit
|
itemDrop: FloorTileItemGCircuit
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1086,9 +981,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemBCircuit
|
itemDrop: FloorTileItemBCircuit
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# Terrain
|
# Terrain
|
||||||
@@ -1102,9 +995,7 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGrass
|
itemDrop: FloorTileItemGrass
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1118,9 +1009,7 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGrassJungle
|
itemDrop: FloorTileItemGrassJungle
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1136,8 +1025,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1153,8 +1040,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1170,8 +1055,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1186,8 +1069,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1201,8 +1082,6 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1218,8 +1097,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1245,8 +1122,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1260,8 +1135,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1275,8 +1148,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1290,8 +1161,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1305,8 +1174,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -1323,8 +1190,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1339,8 +1204,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1356,7 +1219,6 @@
|
|||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: BarestepCarpet
|
collection: BarestepCarpet
|
||||||
friction: 0.20 #slippy
|
friction: 0.20 #slippy
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1369,9 +1231,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemSteelMaint
|
itemDrop: FloorTileItemSteelMaint
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1386,9 +1246,7 @@
|
|||||||
canCrowbar: true
|
canCrowbar: true
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepHull
|
collection: FootstepHull
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGratingMaint
|
itemDrop: FloorTileItemGratingMaint
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -1405,7 +1263,5 @@
|
|||||||
collection: FootstepWood
|
collection: FootstepWood
|
||||||
barestepSounds:
|
barestepSounds:
|
||||||
collection: BarestepWood
|
collection: BarestepWood
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemWoodPattern
|
itemDrop: FloorTileItemWoodPattern
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|||||||
@@ -1,3 +1,16 @@
|
|||||||
|
- type: tile
|
||||||
|
id: FloorPlanetDirt
|
||||||
|
name: tiles-dirt-floor
|
||||||
|
sprite: /Textures/Tiles/dirt.png
|
||||||
|
variants: 4
|
||||||
|
placementVariants: [0, 1, 2, 3]
|
||||||
|
isSubfloor: true
|
||||||
|
canCrowbar: false
|
||||||
|
footstepSounds:
|
||||||
|
collection: FootstepAsteroid
|
||||||
|
heatCapacity: 10000
|
||||||
|
weather: true
|
||||||
|
|
||||||
# Desert
|
# Desert
|
||||||
- type: tile
|
- type: tile
|
||||||
id: FloorDesert
|
id: FloorDesert
|
||||||
@@ -9,8 +22,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -24,8 +35,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -41,14 +50,12 @@
|
|||||||
cardinalSprites:
|
cardinalSprites:
|
||||||
- /Textures/Tiles/Planet/Grass/double_edge.png
|
- /Textures/Tiles/Planet/Grass/double_edge.png
|
||||||
baseTurfs:
|
baseTurfs:
|
||||||
- FloorDirt
|
- FloorPlanetDirt
|
||||||
isSubfloor: true
|
isSubfloor: true
|
||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepGrass
|
collection: FootstepGrass
|
||||||
friction: 0.30
|
|
||||||
itemDrop: FloorTileItemGrass
|
itemDrop: FloorTileItemGrass
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -61,8 +68,6 @@
|
|||||||
canCrowbar: false
|
canCrowbar: false
|
||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepAsteroid
|
collection: FootstepAsteroid
|
||||||
friction: 0.30
|
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
@@ -82,7 +87,6 @@
|
|||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepSnow
|
collection: FootstepSnow
|
||||||
friction: 0.20
|
friction: 0.20
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
weather: true
|
weather: true
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
footstepSounds:
|
footstepSounds:
|
||||||
collection: FootstepPlating
|
collection: FootstepPlating
|
||||||
friction: 0.5
|
friction: 0.5
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
- type: tile
|
- type: tile
|
||||||
@@ -24,7 +23,6 @@
|
|||||||
friction: 0.5
|
friction: 0.5
|
||||||
isSpace: true
|
isSpace: true
|
||||||
itemDrop: PartRodMetal1
|
itemDrop: PartRodMetal1
|
||||||
thermalConductivity: 0.04
|
|
||||||
heatCapacity: 10000
|
heatCapacity: 10000
|
||||||
|
|
||||||
# The final step in underplating's deprecation before it gets completely wiped from the codebase.
|
# The final step in underplating's deprecation before it gets completely wiped from the codebase.
|
||||||
|
|||||||
@@ -97,7 +97,7 @@
|
|||||||
# Fill remainder with sand.
|
# Fill remainder with sand.
|
||||||
- !type:BiomeTileLayer
|
- !type:BiomeTileLayer
|
||||||
threshold: 0
|
threshold: 0
|
||||||
tile: FloorAsteroidSand
|
tile: FloorPlanetDirt
|
||||||
- !type:BiomeTileLayer
|
- !type:BiomeTileLayer
|
||||||
threshold: 0.5
|
threshold: 0.5
|
||||||
tile: FloorPlanetGrass
|
tile: FloorPlanetGrass
|
||||||
|
|||||||
Reference in New Issue
Block a user