diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 43dbd76b1043..13d2985319e3 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -787,6 +787,42 @@ itemDrop: FloorTileItemLaundry heatCapacity: 10000 +- type: tile + id: FloorSteelDamaged + name: tiles-steel-floor + sprite: /Textures/Tiles/steel_damaged.png + variants: 5 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteel #This should probably be made null when it becomes possible to make it such. + heatCapacity: 10000 + +- type: tile + id: FloorSteelBurnt + name: tiles-steel-floor + sprite: /Textures/Tiles/steel_burnt.png + variants: 2 + placementVariants: + - 1.0 + - 1.0 + baseTurf: Plating + isSubfloor: false + canCrowbar: true + footstepSounds: + collection: FootstepFloor + itemDrop: FloorTileItemSteel #Same case as FloorSteelDamaged, make it null when possible + heatCapacity: 10000 + + # Concrete - type: tile id: FloorConcrete diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index b732333dd799..49cb108eb0bc 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -51,10 +51,10 @@ copyright: "arcadered renamed from eightiesred, arcadeblue by Peptide90 modified from arcadered.png, tgstation commit 8abb19545828230d92ba18827feeb42a67a55d49" source: "https://github.com/tgstation/tgstation/" -- files: ["hull", "hull_reinforced.png"] +- files: ["hull", "hull_reinforced.png", "steel_damaged.png", "steel_burnt.png"] license: "CC-BY-SA-3.0" copyright: "Taken from /tg/station at commit 6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae" - source: "https://github.com/space-wizards/space-station-14/pull/18676" + source: "https://github.com/tgstation/tgstation/" - files: ["shuttleblue.png", "shuttleorange.png", "shuttlepurple.png", "shuttlered.png", "shuttlewhite.png"] license: "CC-BY-SA-3.0" diff --git a/Resources/Textures/Tiles/steel.png b/Resources/Textures/Tiles/steel.png index d9405e7d5cf0..b7792ef138e8 100644 Binary files a/Resources/Textures/Tiles/steel.png and b/Resources/Textures/Tiles/steel.png differ diff --git a/Resources/Textures/Tiles/steel_burnt.png b/Resources/Textures/Tiles/steel_burnt.png new file mode 100644 index 000000000000..646c28591611 Binary files /dev/null and b/Resources/Textures/Tiles/steel_burnt.png differ diff --git a/Resources/Textures/Tiles/steel_damaged.png b/Resources/Textures/Tiles/steel_damaged.png new file mode 100644 index 000000000000..c226b12c021d Binary files /dev/null and b/Resources/Textures/Tiles/steel_damaged.png differ