diff --git a/Content.Client/GameObjects/Components/Doors/AirlockVisualizer.cs b/Content.Client/GameObjects/Components/Doors/AirlockVisualizer.cs index f32dc10c22..50898879f9 100644 --- a/Content.Client/GameObjects/Components/Doors/AirlockVisualizer.cs +++ b/Content.Client/GameObjects/Components/Doors/AirlockVisualizer.cs @@ -84,7 +84,7 @@ namespace Content.Client.GameObjects.Components.Doors var flick = new AnimationTrackSpriteFlick(); DenyAnimation.AnimationTracks.Add(flick); flick.LayerKey = DoorVisualLayers.BaseUnlit; - flick.KeyFrames.Add(new AnimationTrackSpriteFlick.KeyFrame("deny", 0f)); + flick.KeyFrames.Add(new AnimationTrackSpriteFlick.KeyFrame("deny_unlit", 0f)); var sound = new AnimationTrackPlaySound(); DenyAnimation.AnimationTracks.Add(sound); @@ -128,7 +128,7 @@ namespace Content.Client.GameObjects.Components.Doors case DoorVisualState.Closed: sprite.LayerSetState(DoorVisualLayers.Base, "closed"); sprite.LayerSetState(DoorVisualLayers.BaseUnlit, "closed_unlit"); - sprite.LayerSetState(DoorVisualLayers.BaseBolted, "bolted"); + sprite.LayerSetState(DoorVisualLayers.BaseBolted, "bolted_unlit"); sprite.LayerSetState(WiresVisualizer.WiresVisualLayers.MaintenancePanel, "panel_open"); break; case DoorVisualState.Opening: diff --git a/Resources/Prototypes/Entities/Constructible/Doors/airlock_base.yml b/Resources/Prototypes/Entities/Constructible/Doors/airlock_base.yml index e7f8e5877a..326da5d7d5 100644 --- a/Resources/Prototypes/Entities/Constructible/Doors/airlock_base.yml +++ b/Resources/Prototypes/Entities/Constructible/Doors/airlock_base.yml @@ -9,7 +9,7 @@ - type: Sprite netsync: false drawdepth: Mobs # They're on the same layer as mobs, perspective. - sprite: Constructible/Structures/Doors/airlock_basic.rsi + sprite: Constructible/Structures/Doors/Standard/basic.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] @@ -18,7 +18,7 @@ map: ["enum.DoorVisualLayers.BaseUnlit"] - state: welded map: ["enum.DoorVisualLayers.BaseWelded"] - - state: bolted + - state: bolted_unlit shader: unshaded map: ["enum.DoorVisualLayers.BaseBolted"] - state: panel_open @@ -73,23 +73,3 @@ mode: NoSprite placement: mode: SnapgridCenter - -- type: entity - id: AirlockGlass - parent: Airlock - name: glass airlock - components: - - type: Door - occludes: false - - type: Occluder - enabled: false - - type: Sprite - sprite: Constructible/Structures/Doors/airlock_glass.rsi - -- type: entity - parent: Airlock - id: AirlockMaint - name: maintenance hatch - components: - - type: Sprite - sprite: Constructible/Structures/Doors/airlock_maint.rsi diff --git a/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml b/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml index 46eb8b6c90..cec0c0d245 100644 --- a/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml +++ b/Resources/Prototypes/Entities/Constructible/Doors/airlock_types.yml @@ -1,4 +1,5 @@ -# Airlocks +# Standard + - type: entity parent: Airlock id: AirlockExternal @@ -8,7 +9,7 @@ - type: Door bumpOpen: false - type: Sprite - sprite: Constructible/Structures/Doors/airlock_external.rsi + sprite: Constructible/Structures/Doors/Standard/external.rsi - type: Appearance visuals: - type: AirlockVisualizer @@ -23,7 +24,7 @@ suffix: Freezer components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_freezer.rsi + sprite: Constructible/Structures/Doors/Standard/freezer.rsi - type: entity parent: Airlock @@ -31,7 +32,7 @@ suffix: Engineering components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_engineering.rsi + sprite: Constructible/Structures/Doors/Standard/engineering.rsi - type: entity parent: Airlock @@ -39,7 +40,7 @@ suffix: Cargo components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_cargo.rsi + sprite: Constructible/Structures/Doors/Standard/cargo.rsi - type: entity parent: Airlock @@ -47,7 +48,7 @@ suffix: Medical components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_medical.rsi + sprite: Constructible/Structures/Doors/Standard/medical.rsi - type: entity parent: Airlock @@ -55,7 +56,7 @@ suffix: Science components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_science.rsi + sprite: Constructible/Structures/Doors/Standard/science.rsi - type: entity parent: Airlock @@ -63,7 +64,7 @@ suffix: Command components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_command.rsi + sprite: Constructible/Structures/Doors/Standard/command.rsi - type: entity parent: Airlock @@ -71,16 +72,37 @@ suffix: Security components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_security.rsi + sprite: Constructible/Structures/Doors/Standard/security.rsi + +- type: entity + parent: Airlock + id: AirlockMaint + name: maintenance hatch + components: + - type: Sprite + sprite: Constructible/Structures/Doors/Standard/maint.rsi + +# Glass + +- type: entity + id: AirlockGlass + parent: Airlock + name: glass airlock + components: + - type: Door + occludes: false + - type: Occluder + enabled: false + - type: Sprite + sprite: Constructible/Structures/Doors/Glass/glass.rsi -# Glass Airlocks - type: entity parent: AirlockGlass id: AirlockEngineeringGlass suffix: Engineering components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_engineering_glass.rsi + sprite: Constructible/Structures/Doors/Glass/engineering.rsi - type: entity parent: AirlockGlass @@ -88,7 +110,7 @@ suffix: Cargo components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_cargo_glass.rsi + sprite: Constructible/Structures/Doors/Glass/cargo.rsi - type: entity parent: AirlockGlass @@ -96,7 +118,7 @@ suffix: Medical components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_medical_glass.rsi + sprite: Constructible/Structures/Doors/Glass/medical.rsi - type: entity parent: AirlockGlass @@ -104,7 +126,7 @@ suffix: Science components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_science_glass.rsi + sprite: Constructible/Structures/Doors/Glass/science.rsi - type: entity parent: AirlockGlass @@ -112,7 +134,7 @@ suffix: Command components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_command_glass.rsi + sprite: Constructible/Structures/Doors/Glass/command.rsi - type: entity parent: AirlockGlass @@ -120,4 +142,4 @@ suffix: Security components: - type: Sprite - sprite: Constructible/Structures/Doors/airlock_security_glass.rsi + sprite: Constructible/Structures/Doors/Glass/security.rsi diff --git a/Resources/Prototypes/Entities/Constructible/Doors/firelock.yml b/Resources/Prototypes/Entities/Constructible/Doors/firelock.yml index 94df24b331..873bc4175a 100644 --- a/Resources/Prototypes/Entities/Constructible/Doors/firelock.yml +++ b/Resources/Prototypes/Entities/Constructible/Doors/firelock.yml @@ -18,7 +18,7 @@ - type: Sprite netsync: false drawdepth: Mobs # They're on the same layer as mobs, perspective. - sprite: Constructible/Structures/Doors/firelock.rsi + sprite: Constructible/Structures/Doors/Standard/firelock.rsi layers: - state: closed map: ["enum.DoorVisualLayers.Base"] @@ -27,12 +27,11 @@ map: ["enum.DoorVisualLayers.BaseUnlit"] - state: welded map: ["enum.DoorVisualLayers.BaseWelded"] - - state: bolted + - state: bolted_unlit shader: unshaded map: ["enum.DoorVisualLayers.BaseBolted"] - state: panel_open map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: Physics canCollide: false fixtures: @@ -79,7 +78,6 @@ - type: Construction graph: Firelock node: Firelock - placement: mode: SnapgridCenter @@ -93,8 +91,7 @@ - type: Occluder enabled: false - type: Sprite - sprite: Constructible/Structures/Doors/firelock_glass.rsi - + sprite: Constructible/Structures/Doors/Glass/firelock.rsi - type: entity id: FirelockEdge diff --git a/Resources/Prototypes/Entities/Constructible/Doors/firelock_frame.yml b/Resources/Prototypes/Entities/Constructible/Doors/firelock_frame.yml index 0ab2d1acbe..8b07e959c9 100644 --- a/Resources/Prototypes/Entities/Constructible/Doors/firelock_frame.yml +++ b/Resources/Prototypes/Entities/Constructible/Doors/firelock_frame.yml @@ -4,7 +4,7 @@ description: That is a firelock frame. components: - type: Sprite - sprite: Constructible/Structures/Doors/firelock.rsi + sprite: Constructible/Structures/Doors/Standard/firelock.rsi state: frame1 - type: Construction graph: Firelock diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 277d5b9db2..9850da038d 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -133,7 +133,7 @@ category: Structures description: This is a firelock - it locks an area when a fire alarm in the area is triggered. Don't get squished! icon: - sprite: Constructible/Structures/Doors/firelock.rsi + sprite: Constructible/Structures/Doors/Standard/firelock.rsi state: closed objectType: Structure placementMode: SnapgridCenter diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/assembly.png new file mode 100644 index 0000000000..e00bac61a5 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/meta.json similarity index 77% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/meta.json index bc90377a89..3ee302f219 100644 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/meta.json @@ -1,35 +1,23 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/doorint.dmi", "states": [ { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "assembly" }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "locked" + }, + { + "name": "closed" }, { "name": "closed_unlit", @@ -66,7 +54,7 @@ ] }, { - "name": "deny", + "name": "deny_unlit", "delays": [ [ 0.1, @@ -76,12 +64,7 @@ ] }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -126,12 +109,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "panel_opening", @@ -201,12 +179,7 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/cargo.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/assembly.png new file mode 100644 index 0000000000..f3dc26e53f Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/meta.json similarity index 77% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/meta.json index 5587579b77..3ee302f219 100644 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/meta.json @@ -1,35 +1,23 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", "states": [ { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "assembly" }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "locked" + }, + { + "name": "closed" }, { "name": "closed_unlit", @@ -66,7 +54,7 @@ ] }, { - "name": "deny", + "name": "deny_unlit", "delays": [ [ 0.1, @@ -76,12 +64,7 @@ ] }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -126,12 +109,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "panel_opening", @@ -201,12 +179,7 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/command.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/assembly.png new file mode 100644 index 0000000000..c24585647e Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/meta.json similarity index 77% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/meta.json index 5587579b77..3ee302f219 100644 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/meta.json @@ -1,35 +1,23 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", "states": [ { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "assembly" }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "locked" + }, + { + "name": "closed" }, { "name": "closed_unlit", @@ -66,7 +54,7 @@ ] }, { - "name": "deny", + "name": "deny_unlit", "delays": [ [ 0.1, @@ -76,12 +64,7 @@ ] }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -126,12 +109,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "panel_opening", @@ -201,12 +179,7 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/engineering.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/deny.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/deny.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/deny_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/deny_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/meta.json similarity index 71% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/meta.json index b50d9cf17b..5ddfbf80a7 100644 --- a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/meta.json @@ -1,35 +1,20 @@ { "version": 1, + "license": "CC-BY-SA 3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA 3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", "states": [ { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "closed" }, { - "name": "closed_unlit", - "delays": [ - [ - 1 - ] - ] + "name": "closed_unlit" }, { "name": "closing", @@ -78,20 +63,10 @@ ] }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "locked" }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -134,12 +109,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "panel_opening", @@ -156,20 +126,10 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" }, { - "name": "welded_open", - "delays": [ - [ - 1 - ] - ] + "name": "welded_open" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/welded_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/welded_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/welded_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/firelock.rsi/welded_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/assembly.png new file mode 100644 index 0000000000..84ece07480 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/meta.json similarity index 77% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/meta.json index 5587579b77..3ee302f219 100644 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/meta.json @@ -1,35 +1,23 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", "states": [ { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "assembly" }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "locked" + }, + { + "name": "closed" }, { "name": "closed_unlit", @@ -66,7 +54,7 @@ ] }, { - "name": "deny", + "name": "deny_unlit", "delays": [ [ 0.1, @@ -76,12 +64,7 @@ ] }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -126,12 +109,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "panel_opening", @@ -201,12 +179,7 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/glass.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/assembly.png new file mode 100644 index 0000000000..4257c9f03e Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/medical.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/assembly.png new file mode 100644 index 0000000000..7ebcf260a7 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/science.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/assembly.png new file mode 100644 index 0000000000..da1739bb27 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Glass/security.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/assembly.png new file mode 100644 index 0000000000..08229edfeb Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_basic.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/basic.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/assembly.png new file mode 100644 index 0000000000..8f1a614ca3 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/cargo.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/assembly.png new file mode 100644 index 0000000000..7ac258fede Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_command.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/command.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/assembly.png new file mode 100644 index 0000000000..02c9ca5455 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_engineering.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/engineering.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/meta.json similarity index 75% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/meta.json rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/meta.json index 42df7c08c2..f12b801297 100644 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/meta.json @@ -1,27 +1,17 @@ { "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", "size": { "x": 32, "y": 32 }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Doorext.dmi", "states": [ { - "name": "closed", - "delays": [ - [ - 1 - ] - ] + "name": "closed" }, { - "name": "locked", - "delays": [ - [ - 1 - ] - ] + "name": "locked" }, { "name": "closed_unlit" @@ -52,7 +42,7 @@ ] }, { - "name": "deny", + "name": "deny_unlit", "delays": [ [ 0.1, @@ -62,12 +52,7 @@ ] }, { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] + "name": "bolted_unlit" }, { "name": "panel_closing", @@ -98,12 +83,7 @@ ] }, { - "name": "open", - "delays": [ - [ - 1 - ] - ] + "name": "open" }, { "name": "opening", @@ -131,12 +111,7 @@ ] }, { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] + "name": "panel_open" }, { "name": "spark", @@ -188,12 +163,7 @@ ] }, { - "name": "welded", - "delays": [ - [ - 1 - ] - ] + "name": "welded" } ] } diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_external.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/external.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/assembly.png new file mode 100644 index 0000000000..ade0a87386 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/deny.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/deny.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/deny_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/deny_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame1.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame1.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame1.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame1.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame2.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame2.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame2.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame2.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame3.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame3.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame3.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame3.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame4.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame4.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/frame4.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/frame4.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/meta.json new file mode 100644 index 0000000000..431b2c66f8 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/meta.json @@ -0,0 +1,150 @@ +{ + "version": 1, + "license": "CC-BY-SA 3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit" + }, + { + "name": "closing", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "frame1" + }, + { + "name": "frame2" + }, + { + "name": "frame3" + }, + { + "name": "frame4" + }, + { + "name": "locked" + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "welded" + }, + { + "name": "welded_open" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/welded_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/welded_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/firelock_glass.rsi/welded_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/firelock.rsi/welded_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/assembly.png new file mode 100644 index 0000000000..da6d507c5b Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/freezer.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/assembly.png new file mode 100644 index 0000000000..a4dd56307c Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/maint.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/assembly.png new file mode 100644 index 0000000000..c91e70204e Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/medical.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/assembly.png new file mode 100644 index 0000000000..661c50c60a Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/science.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/assembly.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/assembly.png new file mode 100644 index 0000000000..9ac8b2ad68 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/assembly.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closed.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closed.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closed.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closed.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closed_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closed_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closed_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closing_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/closing_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/closing_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/deny.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/deny_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/deny.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/deny_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/locked.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/locked.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/locked.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/locked.png diff --git a/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/meta.json new file mode 100644 index 0000000000..3ee302f219 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/meta.json @@ -0,0 +1,185 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly" + }, + { + "name": "bolted_unlit" + }, + { + "name": "locked" + }, + { + "name": "closed" + }, + { + "name": "closed_unlit", + "delays": [ + [] + ] + }, + { + "name": "closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "open" + }, + { + "name": "opening", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "spark", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/opening_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/opening_unlit.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/opening_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_closing.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_closing.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_closing.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_opening.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/panel_opening.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/panel_opening.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/spark.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/spark.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/spark.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/spark.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_broken.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_broken.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_broken.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_damaged.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_damaged.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_damaged.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_open.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/sparks_open.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/sparks_open.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/welded.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/welded.png rename to Resources/Textures/Constructible/Structures/Doors/Standard/security.rsi/welded.png diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/meta.json deleted file mode 100644 index 6980f346b8..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/d86e175508b8553ca8396f39f2af7ecec4595375/icons/obj/doors/Doormining.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.5 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.5 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.4, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/meta.json deleted file mode 100644 index 71ab1ed0ed..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_cargo_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/d86e175508b8553ca8396f39f2af7ecec4595375/icons/obj/doors/Doorminingglass.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.5, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.5 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.5 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.4, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_engineering_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/meta.json deleted file mode 100644 index bc90377a89..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_freezer.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/doorint.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/meta.json deleted file mode 100644 index 5a3ec40d9b..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_maint.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/d86e175508b8553ca8396f39f2af7ecec4595375/icons/obj/doors/Doormaint.dmi - modified by rexonaje#5787 on discord", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.3 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_medical.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_medical_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_science.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_science_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/meta.json deleted file mode 100644 index a8a97fc4c7..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_security.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.1, - 0.1, - 0.1, - 0.5 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/meta.json deleted file mode 100644 index 5587579b77..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/airlock_security_glass.rsi/meta.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/2b969adc2dfd3e9621bf3597c5cbffeb3ac8c9f0/icons/obj/doors/Dooreng.dmi", - "states": [ - { - "name": "bolted", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "locked", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "closed_unlit", - "delays": [ - [] - ] - }, - { - "name": "closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.25, - 0.07, - 0.07, - 0.07, - 0.07, - 0.15 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "opening", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.25 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - "delays": [ - [ - 1 - ] - ] - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "spark", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_broken", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "sparks_damaged", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 1.7 - ] - ] - }, - { - "name": "sparks_open", - "delays": [ - [ - 0.1, - 0.1, - 0.1, - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "welded", - "delays": [ - [ - 1 - ] - ] - } - ] -} diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_0.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_0.png new file mode 100644 index 0000000000..243eb18759 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_0.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_1.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_1.png new file mode 100644 index 0000000000..2706588072 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_1.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_2.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_2.png new file mode 100644 index 0000000000..8aaa8ea092 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/assembly_2.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_0.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_0.png new file mode 100644 index 0000000000..3c2c7d4e65 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_0.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_1.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_1.png new file mode 100644 index 0000000000..70e95efcd4 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_1.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_2.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_2.png new file mode 100644 index 0000000000..d70e5475f1 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_2.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_3.png b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_3.png new file mode 100644 index 0000000000..d47a97ed68 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/fire_3.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/meta.json new file mode 100644 index 0000000000..0ea778a990 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/assembly.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "assembly_0" + }, + { + "name": "assembly_1" + }, + { + "name": "assembly_2" + }, + { + "name": "fire_0" + }, + { + "name": "fire_1" + }, + { + "name": "fire_2" + }, + { + "name": "fire_3" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/bolted.png b/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/bolted_unlit.png similarity index 100% rename from Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/bolted.png rename to Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/bolted_unlit.png diff --git a/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/meta.json index 961e7b979f..563e7750ab 100644 --- a/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Doors/edge_door_hazard.rsi/meta.json @@ -1,423 +1,296 @@ { - "version": 1, - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/ at 38b65a605df7ae2907d6bf0d4aebc5faa1bbc561", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "alert_cold", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ] + ] }, - "license": "CC-BY-SA 3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/ at 38b65a605df7ae2907d6bf0d4aebc5faa1bbc561", - "states": [ - { - "name": "alert_cold", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ] - ] - }, - { - "name": "alert_hot", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ] - ] - }, - { - "name": "bolted", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "closed", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "closed_unlit", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "closing", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "deny_unlit", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "locked", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "open", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "opening", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "directions": 4, - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "palert", - "directions": 4, - "delays": [ - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "welded", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - }, - { - "name": "welded_open", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] - } - ] -} \ No newline at end of file + { + "name": "alert_hot", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "bolted_unlit", + "directions": 4 + }, + { + "name": "closed", + "directions": 4 + }, + { + "name": "closed_unlit", + "directions": 4 + }, + { + "name": "closing", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "closing_unlit", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "deny", + "directions": 4 + }, + { + "name": "deny_unlit", + "directions": 4 + }, + { + "name": "locked", + "directions": 4 + }, + { + "name": "open", + "directions": 4 + }, + { + "name": "opening", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "opening_unlit", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "palert", + "directions": 4, + "delays": [ + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ], + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open", + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "welded", + "directions": 4 + }, + { + "name": "welded_open", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/bolted_unlit.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/bolted_unlit.png new file mode 100644 index 0000000000..0fa52b6b4e Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/bolted_unlit.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closed_unlit.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closed_unlit.png new file mode 100644 index 0000000000..1d57c065a7 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closed_unlit.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closing_unlit.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closing_unlit.png new file mode 100644 index 0000000000..6120c6089a Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/closing_unlit.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/deny_unlit.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/deny_unlit.png new file mode 100644 index 0000000000..b7af192743 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/deny_unlit.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/meta.json new file mode 100644 index 0000000000..919f9154a1 --- /dev/null +++ b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/meta.json @@ -0,0 +1,126 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/59fe5dd2841f47a8abce60eecb9fafad34282bd0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bolted_unlit" + }, + { + "name": "closed_unlit" + { + "name": "closing_unlit", + "delays": [ + [ + 0.25, + 0.07, + 0.07, + 0.07, + 0.07, + 0.15 + ] + ] + }, + { + "name": "deny_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "opening_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.25 + ] + ] + }, + { + "name": "panel_closing", + "delays": [ + [ + 0.1, + 0.1, + 0.07, + 0.07, + 0.07, + 0.07, + 0.27 + ] + ] + }, + { + "name": "panel_open" + }, + { + "name": "panel_opening", + "delays": [ + [ + 0.2, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.2 + ] + ] + }, + { + "name": "sparks_broken", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "sparks_damaged", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1.7 + ] + ] + }, + { + "name": "sparks_open", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "welded" + } + ] +} diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/opening_unlit.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/opening_unlit.png new file mode 100644 index 0000000000..846e50ff8e Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/opening_unlit.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_closing.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_closing.png new file mode 100644 index 0000000000..1a612bfdde Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_closing.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_open.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_open.png new file mode 100644 index 0000000000..777c6dd693 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_open.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_opening.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_opening.png new file mode 100644 index 0000000000..3679c4821d Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/panel_opening.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_broken.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_broken.png new file mode 100644 index 0000000000..fb5d774588 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_broken.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_damaged.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_damaged.png new file mode 100644 index 0000000000..f16a028dee Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_damaged.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_open.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_open.png new file mode 100644 index 0000000000..630eabb976 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/sparks_open.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/effects.rsi/welded.png b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/welded.png new file mode 100644 index 0000000000..7bdc0c7c65 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Doors/effects.rsi/welded.png differ diff --git a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/meta.json b/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/meta.json deleted file mode 100644 index 325d9a4cb7..0000000000 --- a/Resources/Textures/Constructible/Structures/Doors/firelock.rsi/meta.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "version": 1, - "size": { - "x": 32, - "y": 32 - }, - "license": "CC-BY-SA 3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 04e43d8c1d5097fdb697addd4395fb849dd341bd", - "states": [ - { - "name": "bolted", - - }, - { - "name": "closed", - - }, - { - "name": "closed_unlit", - - }, - { - "name": "closing", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "closing_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "deny", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "deny_unlit", - "delays": [ - [ - 0.1, - 0.1, - 0.1 - ] - ] - }, - { - "name": "frame1", - - }, - { - "name": "frame2", - - }, - { - "name": "frame3", - - }, - { - "name": "frame4", - - }, - { - "name": "locked", - - }, - { - "name": "open", - - }, - { - "name": "opening", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "opening_unlit", - "delays": [ - [ - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ] - ] - }, - { - "name": "panel_closing", - "delays": [ - [ - 0.1, - 0.1, - 0.07, - 0.07, - 0.07, - 0.07, - 0.27 - ] - ] - }, - { - "name": "panel_open", - - }, - { - "name": "panel_opening", - "delays": [ - [ - 0.2, - 0.07, - 0.07, - 0.07, - 0.07, - 0.07, - 0.2 - ] - ] - }, - { - "name": "welded", - - }, - { - "name": "welded_open", - - } - ] -} \ No newline at end of file