From 94a0bc92b70af23b78f289b60315f060f3b220da Mon Sep 17 00:00:00 2001 From: Chris V Date: Thu, 28 Apr 2022 03:41:04 -0700 Subject: [PATCH] Salvage mining, ore processing, and material clean-up (#7406) * adding stuff cuz new computer * removed unused materials * remove unused materials and such, lathe things * material volume no longer hardcoded * fixed mining system * add 5 stacks of materials, and add them to the ore processor * fix copyright for ores and handdrill * comma momma * whyyyyy * more fixes to make the yaml linter happy * i should get my eyes checked * silver proper * more cleanup * leftovers * remove more references to material doors * couldn't bear to be without bearhide * added uranium, added more lathe recipes * copyright fix, stack fix * ore processor sprite and such * ore processing some binches * MaterialCotton removal * 1 uranium ore means 1 sheet * fix merge conflict? idk * time to ketchup * lathe recognizes material volume again * yaml cleanup * forgot to remove adamantine lol * re-added diamond for now * diamond stacks * functional ore processor * added ignoreColor to lathe visuals * ore processor machine board * add board to industrial tech and circuit printer * provided lathes their whitelists * fix wonky ore spawning, added insert sound to lathe, adjusted ore chance * re-added ore processor * typos and cleanup * Update Content.Client/Lathe/LatheSystem.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Update Content.Server/Lathe/LatheSystem.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * revert mapchange * VV ignorecolor, pass entitymanager, move canceltoken to pickaxe, removed foreach from orespawn * actually null canceltoken * remove five-stacks, ore processor produces full stacks or single sheets/ingots * VV proper * adjust ore chances * readd Cotton * Update Content.Server/Mining/MineableSystem.cs * tweaks * Material is now dict (material, volume) * removed unused property * Space crystal -> space quartz * forgor asteroid space quartz Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth --- .../Lathe/Components/LatheVisualsComponent.cs | 6 +- Content.Client/Lathe/LatheSystem.cs | 5 +- Content.Client/Lathe/UI/LatheMenu.cs | 3 +- .../Lathe/Components/LatheComponent.cs | 15 +- Content.Server/Lathe/LatheSystem.cs | 26 ++- Content.Server/Materials/MaterialComponent.cs | 15 +- .../Mining/Components/MineableComponent.cs | 5 +- .../Mining/Components/PickaxeComponent.cs | 13 +- Content.Server/Mining/MineableSystem.cs | 54 +++-- Resources/Maps/nss_pillar.yml | 203 ++++++++++++++++ .../Catalog/Research/technologies.yml | 1 + .../Markers/Spawners/Random/maintenance.yml | 1 - .../Circuitboards/Machine/production.yml | 13 ++ .../Objects/Materials/Sheets/glass.yml | 78 +------ .../Objects/Materials/Sheets/metal.yml | 109 +-------- .../Objects/Materials/Sheets/other.yml | 32 +-- .../Entities/Objects/Materials/ingots.yml | 140 +---------- .../Entities/Objects/Materials/materials.yml | 221 ++++-------------- .../Entities/Objects/Materials/ore.yml | 198 +++------------- .../Entities/Objects/Misc/space_cash.yml | 2 +- .../Objects/Weapons/Melee/pickaxe.yml | 23 +- .../Doors/MaterialDoors/material_doors.yml | 70 ------ .../Entities/Structures/Machines/lathe.yml | 62 +++++ .../Entities/Structures/Walls/asteroid.yml | 19 ++ .../Prototypes/Reagents/Materials/glass.yml | 14 -- .../Reagents/Materials/materials.yml | 14 +- .../Prototypes/Reagents/Materials/metals.yml | 47 ---- .../Construction/Graphs/structures/doors.yml | 54 ----- .../Recipes/Construction/structures.yml | 51 ---- .../Prototypes/Recipes/Lathes/electronics.yml | 10 + Resources/Prototypes/Recipes/Lathes/sheet.yml | 94 ++++++++ .../Stacks/Materials/Sheets/glass.yml | 11 - .../Stacks/Materials/Sheets/metal.yml | 17 -- .../Stacks/Materials/Sheets/other.yml | 8 +- .../Prototypes/Stacks/Materials/ingots.yml | 24 -- .../Prototypes/Stacks/Materials/materials.yml | 42 +--- Resources/Prototypes/Stacks/Materials/ore.yml | 66 +----- Resources/Prototypes/tags.yml | 4 + .../Objects/Materials/ore.rsi/adamantine.png | Bin 428 -> 191 bytes .../Objects/Materials/ore.rsi/ammonia.png | Bin 191 -> 365 bytes .../Objects/Materials/ore.rsi/bananium.png | Bin 286 -> 0 bytes .../Objects/Materials/ore.rsi/coal.png | Bin 0 -> 199 bytes .../Objects/Materials/ore.rsi/copper.png | Bin 0 -> 191 bytes .../Objects/Materials/ore.rsi/diamond.png | Bin 190 -> 0 bytes .../Objects/Materials/ore.rsi/gold.png | Bin 354 -> 191 bytes .../Objects/Materials/ore.rsi/iron.png | Bin 230 -> 200 bytes .../Objects/Materials/ore.rsi/meta.json | 26 +-- .../Objects/Materials/ore.rsi/phoron.png | Bin 551 -> 0 bytes .../Objects/Materials/ore.rsi/plasma.png | Bin 501 -> 375 bytes .../Objects/Materials/ore.rsi/sand.png | Bin 374 -> 0 bytes .../Objects/Materials/ore.rsi/sand_black.png | Bin 284 -> 0 bytes .../Objects/Materials/ore.rsi/silver.png | Bin 396 -> 209 bytes .../Objects/Materials/ore.rsi/slag.png | Bin 168 -> 0 bytes .../Objects/Materials/ore.rsi/spacequartz.png | Bin 0 -> 219 bytes .../Objects/Materials/ore.rsi/titanium.png | Bin 338 -> 0 bytes .../Objects/Materials/ore.rsi/uranium.png | Bin 352 -> 355 bytes .../Objects/Tools/handdrill.rsi/handdrill.png | Bin 0 -> 687 bytes .../Objects/Tools/handdrill.rsi/meta.json | 14 ++ .../Machines/ore_processor.rsi/building.png | Bin 0 -> 1176 bytes .../Machines/ore_processor.rsi/icon.png | Bin 0 -> 490 bytes .../Machines/ore_processor.rsi/inserting.png | Bin 0 -> 1859 bytes .../Machines/ore_processor.rsi/meta.json | 50 ++++ .../Machines/ore_processor.rsi/panel.png | Bin 0 -> 232 bytes .../Machines/ore_processor.rsi/unlit.png | Bin 0 -> 194 bytes 64 files changed, 707 insertions(+), 1153 deletions(-) delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/bananium.png create mode 100644 Resources/Textures/Objects/Materials/ore.rsi/coal.png create mode 100644 Resources/Textures/Objects/Materials/ore.rsi/copper.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/diamond.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/phoron.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/sand.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/sand_black.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/slag.png create mode 100644 Resources/Textures/Objects/Materials/ore.rsi/spacequartz.png delete mode 100644 Resources/Textures/Objects/Materials/ore.rsi/titanium.png create mode 100644 Resources/Textures/Objects/Tools/handdrill.rsi/handdrill.png create mode 100644 Resources/Textures/Objects/Tools/handdrill.rsi/meta.json create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/building.png create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/icon.png create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/inserting.png create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/meta.json create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/panel.png create mode 100644 Resources/Textures/Structures/Machines/ore_processor.rsi/unlit.png diff --git a/Content.Client/Lathe/Components/LatheVisualsComponent.cs b/Content.Client/Lathe/Components/LatheVisualsComponent.cs index 9622641787..a38f22ce20 100644 --- a/Content.Client/Lathe/Components/LatheVisualsComponent.cs +++ b/Content.Client/Lathe/Components/LatheVisualsComponent.cs @@ -2,7 +2,7 @@ namespace Content.Client.Lathe; /// /// Holds the idle and running state for machines to control -/// playing animtions on the client. +/// playing animations on the client. /// [RegisterComponent] public sealed class LatheVisualsComponent : Component @@ -12,4 +12,8 @@ public sealed class LatheVisualsComponent : Component [DataField("runningState", required: true)] public string RunningState = default!; + + [ViewVariables] + [DataField("ignoreColor")] + public bool IgnoreColor; } diff --git a/Content.Client/Lathe/LatheSystem.cs b/Content.Client/Lathe/LatheSystem.cs index 304ef397db..a62d820368 100644 --- a/Content.Client/Lathe/LatheSystem.cs +++ b/Content.Client/Lathe/LatheSystem.cs @@ -29,9 +29,10 @@ namespace Content.Client.Lathe if (args.Component.TryGetData(LatheVisuals.IsInserting, out bool isInserting) && sprite.LayerMapTryGet(LatheVisualLayers.IsInserting, out var isInsertingLayer)) { - if (args.Component.TryGetData(LatheVisuals.InsertingColor, out Color color)) + if (args.Component.TryGetData(LatheVisuals.InsertingColor, out Color color) + && !component.IgnoreColor) sprite.LayerSetColor(isInsertingLayer, color); - + sprite.LayerSetAnimationTime(isInsertingLayer, 0f); sprite.LayerSetVisible(isInsertingLayer, isInserting); } diff --git a/Content.Client/Lathe/UI/LatheMenu.cs b/Content.Client/Lathe/UI/LatheMenu.cs index 2f31748000..44103d77f2 100644 --- a/Content.Client/Lathe/UI/LatheMenu.cs +++ b/Content.Client/Lathe/UI/LatheMenu.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using Content.Client.Lathe.Components; +using Content.Shared.Lathe; using Content.Shared.Materials; using Content.Shared.Research.Prototypes; using Robust.Client.UserInterface; @@ -35,7 +36,7 @@ namespace Content.Client.Lathe.UI Owner = owner; - Title = "Lathe Menu"; + Title = "Lathe Menu"; // TODO Replace this with the name of the lathe itself var vBox = new BoxContainer { diff --git a/Content.Server/Lathe/Components/LatheComponent.cs b/Content.Server/Lathe/Components/LatheComponent.cs index 13ad772c79..cd32e2aba9 100644 --- a/Content.Server/Lathe/Components/LatheComponent.cs +++ b/Content.Server/Lathe/Components/LatheComponent.cs @@ -3,6 +3,7 @@ using Content.Shared.Lathe; using Content.Shared.Research.Prototypes; using Robust.Server.GameObjects; using Content.Shared.Sound; +using Content.Shared.Whitelist; namespace Content.Server.Lathe.Components { @@ -10,9 +11,11 @@ namespace Content.Server.Lathe.Components public sealed class LatheComponent : SharedLatheComponent { /// - /// How much volume in cm^3 each sheet of material adds + /// Whitelist for specifying the kind of materials that can be insert into the lathe /// - public int VolumePerSheet = 100; + [ViewVariables] + [DataField("whitelist")] + public EntityWhitelist? LatheWhitelist; /// /// The lathe's construction queue @@ -46,10 +49,16 @@ namespace Content.Server.Lathe.Components /// [DataField("producingSound")] public SoundSpecifier? ProducingSound; + + /// + /// The sound that plays when inserting an item into the lathe, if any + /// + [DataField("insertingSound")] + public SoundSpecifier? InsertingSound; /// /// The lathe's UI. /// [ViewVariables] public BoundUserInterface? UserInterface; } -} +} \ No newline at end of file diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index cdb37f42ab..8ff8769f93 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -102,7 +102,9 @@ namespace Content.Server.Lathe /// private void OnInteractUsing(EntityUid uid, LatheComponent component, InteractUsingEvent args) { - if (!TryComp(uid, out var storage) || !TryComp(args.Used, out var material)) + if (!TryComp(uid, out var storage) + || !TryComp(args.Used, out var material) + || component.LatheWhitelist?.IsValid(args.Used) == false) return; var multiplier = 1; @@ -113,24 +115,30 @@ namespace Content.Server.Lathe var totalAmount = 0; // Check if it can insert all materials. - foreach (var mat in material.MaterialIds) + foreach (var (mat, vol) in material._materials) { - // TODO: Change how MaterialComponent works so this is not hard-coded. - if (!storage.CanInsertMaterial(mat, component.VolumePerSheet * multiplier)) - return; - totalAmount += component.VolumePerSheet * multiplier; + if (!storage.CanInsertMaterial(mat, + vol * multiplier)) return; + totalAmount += vol * multiplier; } // Check if it can take ALL of the material's volume. if (storage.StorageLimit > 0 && !storage.CanTakeAmount(totalAmount)) return; var lastMat = string.Empty; - foreach (var mat in material.MaterialIds) + foreach (var (mat, vol) in material._materials) { - storage.InsertMaterial(mat, component.VolumePerSheet * multiplier); + storage.InsertMaterial(mat, vol * multiplier); lastMat = mat; } - /// We need the prototype to get the color + + // Play a sound when inserting, if any + if (component.InsertingSound != null) + { + SoundSystem.Play(Filter.Pvs(component.Owner, entityManager: EntityManager), component.InsertingSound.GetSound(), component.Owner); + } + + // We need the prototype to get the color _prototypeManager.TryIndex(lastMat, out MaterialPrototype? matProto); EntityManager.QueueDeleteEntity(args.Used); diff --git a/Content.Server/Materials/MaterialComponent.cs b/Content.Server/Materials/MaterialComponent.cs index 5b99041459..0f71902538 100644 --- a/Content.Server/Materials/MaterialComponent.cs +++ b/Content.Server/Materials/MaterialComponent.cs @@ -1,12 +1,7 @@ -using System.Collections.Generic; +using System.Linq; using Content.Shared.Materials; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; -using Robust.Shared.Log; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.Manager.Attributes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; -using Robust.Shared.ViewVariables; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Dictionary; namespace Content.Server.Materials { @@ -18,10 +13,10 @@ namespace Content.Server.Materials public sealed class MaterialComponent : Component { [ViewVariables] - [DataField("materials", customTypeSerializer:typeof(PrototypeIdListSerializer))] + [DataField("materials", customTypeSerializer:typeof(PrototypeIdDictionarySerializer))] // ReSharper disable once CollectionNeverUpdated.Local - private readonly List _materials = new(); - public IEnumerable MaterialIds => _materials; + public readonly Dictionary _materials = new(); + public List MaterialIds => _materials.Keys.ToList(); /// /// Returns all materials which make up this entity. diff --git a/Content.Server/Mining/Components/MineableComponent.cs b/Content.Server/Mining/Components/MineableComponent.cs index edbfbdbc8c..0368bcc9e1 100644 --- a/Content.Server/Mining/Components/MineableComponent.cs +++ b/Content.Server/Mining/Components/MineableComponent.cs @@ -1,5 +1,5 @@ -using Robust.Shared.Analyzers; -using Robust.Shared.GameObjects; +using System.Threading; +using Content.Shared.Storage; namespace Content.Server.Mining.Components; @@ -7,5 +7,6 @@ namespace Content.Server.Mining.Components; [Friend(typeof(MineableSystem))] public sealed class MineableComponent : Component { + [DataField("ores")] public List Ores = new(); public float BaseMineTime = 1.0f; } diff --git a/Content.Server/Mining/Components/PickaxeComponent.cs b/Content.Server/Mining/Components/PickaxeComponent.cs index d3f1a0c9da..181ed2757a 100644 --- a/Content.Server/Mining/Components/PickaxeComponent.cs +++ b/Content.Server/Mining/Components/PickaxeComponent.cs @@ -1,17 +1,20 @@ -using System.Collections.Generic; +using System.Threading; using Content.Shared.Damage; using Content.Shared.Sound; -using Robust.Shared.GameObjects; -using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Server.Mining.Components { + /// + /// When interacting with an allows it to spawn entities. + /// [RegisterComponent] public sealed class PickaxeComponent : Component { + [ViewVariables(VVAccess.ReadWrite)] [DataField("sound")] public SoundSpecifier MiningSound { get; set; } = new SoundPathSpecifier("/Audio/Items/Mining/pickaxe.ogg"); + [ViewVariables(VVAccess.ReadWrite)] [DataField("timeMultiplier")] public float MiningTimeMultiplier { get; set; } = 1f; @@ -25,9 +28,11 @@ namespace Content.Server.Mining.Components /// /// How many entities can this pickaxe mine at once? /// + [ViewVariables(VVAccess.ReadWrite)] [DataField("maxEntities")] public int MaxMiningEntities = 1; - public HashSet MiningEntities = new(); + [ViewVariables] + public readonly Dictionary MiningEntities = new(); } } diff --git a/Content.Server/Mining/MineableSystem.cs b/Content.Server/Mining/MineableSystem.cs index 0426d10dd8..7b25f1e9f5 100644 --- a/Content.Server/Mining/MineableSystem.cs +++ b/Content.Server/Mining/MineableSystem.cs @@ -1,11 +1,12 @@ -using Content.Server.DoAfter; +using System.Threading; +using Content.Server.DoAfter; using Content.Server.Mining.Components; using Content.Shared.Damage; using Content.Shared.Interaction; +using Content.Shared.Storage; using Robust.Shared.Audio; -using Robust.Shared.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Player; +using Robust.Shared.Random; namespace Content.Server.Mining; @@ -13,6 +14,7 @@ public sealed class MineableSystem : EntitySystem { [Dependency] private readonly DoAfterSystem _doAfterSystem = default!; [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly IRobustRandom _random = null!; public override void Initialize() { @@ -20,7 +22,7 @@ public sealed class MineableSystem : EntitySystem SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnDoafterCancel); - SubscribeLocalEvent(OnDoafterSuccess); + SubscribeLocalEvent(OnDoafterSuccess); } private void OnInteractUsing(EntityUid uid, MineableComponent component, InteractUsingEvent args) @@ -28,45 +30,63 @@ public sealed class MineableSystem : EntitySystem if (!TryComp(args.Used, out var pickaxe)) return; + if (pickaxe.MiningEntities.TryGetValue(uid, out var cancelToken)) + { + cancelToken.Cancel(); + pickaxe.MiningEntities.Remove(uid); + return; + } + // Can't mine too many entities at once. if (pickaxe.MaxMiningEntities < pickaxe.MiningEntities.Count + 1) return; - // Can't mine one object multiple times. - if (!pickaxe.MiningEntities.Add(uid)) - return; + cancelToken = new CancellationTokenSource(); + pickaxe.MiningEntities[uid] = cancelToken; - var doAfter = new DoAfterEventArgs(args.User, component.BaseMineTime * pickaxe.MiningTimeMultiplier, default, uid) + var doAfter = new DoAfterEventArgs(args.User, component.BaseMineTime * pickaxe.MiningTimeMultiplier, cancelToken.Token, uid) { BreakOnDamage = true, BreakOnStun = true, BreakOnTargetMove = true, BreakOnUserMove = true, - MovementThreshold = 0.5f, - BroadcastCancelledEvent = new MiningDoafterCancel() { Pickaxe = args.Used, Rock = uid }, - BroadcastFinishedEvent = new MiningDoafterSuccess() { Pickaxe = args.Used, Rock = uid } + MovementThreshold = 0.25f, + BroadcastCancelledEvent = new MiningDoafterCancel { Pickaxe = args.Used, Rock = uid }, + TargetFinishedEvent = new MiningDoafterSuccess { Pickaxe = args.Used, Rock = uid, Player = args.User } }; _doAfterSystem.DoAfter(doAfter); } - private void OnDoafterSuccess(MiningDoafterSuccess ev) + private void OnDoafterSuccess(EntityUid uid, MineableComponent component, MiningDoafterSuccess ev) { if (!TryComp(ev.Pickaxe, out PickaxeComponent? pickaxe)) return; _damageableSystem.TryChangeDamage(ev.Rock, pickaxe.Damage); - SoundSystem.Play(Filter.Pvs(ev.Rock), pickaxe.MiningSound.GetSound(), ev.Rock, AudioParams.Default); + SoundSystem.Play(Filter.Pvs(ev.Rock, entityManager: EntityManager), pickaxe.MiningSound.GetSound(), ev.Rock); pickaxe.MiningEntities.Remove(ev.Rock); + + var spawnOre = EntitySpawnCollection.GetSpawns(component.Ores, _random); + var playerPos = Transform(ev.Player).MapPosition; + var spawnPos = playerPos.Offset(_random.NextVector2(0.3f)); + EntityManager.SpawnEntity(spawnOre[0], spawnPos); + pickaxe.MiningEntities.Remove(uid); } private void OnDoafterCancel(MiningDoafterCancel ev) { - if (!TryComp(ev.Pickaxe, out PickaxeComponent? pickaxe)) + if (!TryComp(ev.Pickaxe, out var pickaxe)) return; pickaxe.MiningEntities.Remove(ev.Rock); } + + private sealed class MiningDoafterCancel : EntityEventArgs + { + public EntityUid Pickaxe; + public EntityUid Rock; + } } // grumble grumble @@ -74,10 +94,6 @@ public sealed class MiningDoafterSuccess : EntityEventArgs { public EntityUid Pickaxe; public EntityUid Rock; + public EntityUid Player; } -public sealed class MiningDoafterCancel : EntityEventArgs -{ - public EntityUid Pickaxe; - public EntityUid Rock; -} diff --git a/Resources/Maps/nss_pillar.yml b/Resources/Maps/nss_pillar.yml index 89b6478ead..87d4202470 100644 --- a/Resources/Maps/nss_pillar.yml +++ b/Resources/Maps/nss_pillar.yml @@ -29565,6 +29565,13 @@ entities: pos: -73.5,33.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 1445 type: AirlockExternalGlassShuttleLocked components: @@ -29572,6 +29579,13 @@ entities: pos: -67.5,33.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 1446 type: AirlockExternalGlassLocked components: @@ -29591,6 +29605,13 @@ entities: pos: -61.5,33.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 1449 type: ReinforcedWindow components: @@ -34960,6 +34981,13 @@ entities: pos: -46.5,46.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 2162 type: PoweredSmallLight components: @@ -99866,6 +99894,13 @@ entities: pos: -42.5,46.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 8313 type: WallReinforced components: @@ -107635,6 +107670,13 @@ entities: pos: -83.5,24.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9241 type: AirlockExternalGlassShuttleLocked components: @@ -107642,6 +107684,13 @@ entities: pos: -83.5,25.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9242 type: ReinforcedWindow components: @@ -107760,6 +107809,13 @@ entities: pos: -79.5,29.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9257 type: AirlockExternalGlassShuttleLocked components: @@ -107767,6 +107823,13 @@ entities: pos: -80.5,29.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9258 type: CableApcExtension components: @@ -109983,6 +110046,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9482 type: AirlockShuttle components: @@ -109995,6 +110065,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9483 type: WallReinforced components: @@ -112979,6 +113056,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9801 type: AirlockShuttle components: @@ -112992,6 +113076,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9802 type: SignShipDock components: @@ -114505,6 +114596,13 @@ entities: pos: -43.5,-29.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9979 type: FirelockGlass components: @@ -114534,6 +114632,13 @@ entities: pos: -43.5,-25.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 9983 type: ReinforcedWindow components: @@ -114703,6 +114808,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 10009 type: AirlockShuttle components: @@ -114715,6 +114827,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 10010 type: CableApcExtension components: @@ -127293,6 +127412,13 @@ entities: pos: 65.5,19.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11270 type: AirlockShuttle components: @@ -127300,6 +127426,13 @@ entities: pos: 66.5,16.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11271 type: AirlockExternalGlassShuttleLocked components: @@ -127307,6 +127440,13 @@ entities: pos: 66.5,0.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11272 type: AirlockExternalGlassShuttleLocked components: @@ -127314,6 +127454,13 @@ entities: pos: 66.5,4.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11273 type: AirlockExternalGlassShuttleLocked components: @@ -127321,6 +127468,13 @@ entities: pos: 66.5,7.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11274 type: AirlockExternalGlassShuttleLocked components: @@ -127328,6 +127482,13 @@ entities: pos: 66.5,11.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 11275 type: Catwalk components: @@ -137082,6 +137243,13 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12248 type: AirlockShuttle components: @@ -137095,18 +137263,39 @@ entities: changeAirtight: False state: Opening type: Door + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12249 type: AirlockShuttle components: - pos: 0.5,-7.5 parent: 12185 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12250 type: AirlockShuttle components: - pos: 1.5,-7.5 parent: 12185 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12251 type: Thruster components: @@ -138849,6 +139038,13 @@ entities: pos: 25.5,36.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12428 type: ExtinguisherCabinetFilled components: @@ -141916,6 +142112,13 @@ entities: pos: -43.5,-24.5 parent: 130 type: Transform + - fixtures: + - shape: !type:PhysShapeCircle + position: 0,-0.5 + radius: 0.2 + hard: False + id: docking + type: Fixtures - uid: 12723 type: BoxSterile components: diff --git a/Resources/Prototypes/Catalog/Research/technologies.yml b/Resources/Prototypes/Catalog/Research/technologies.yml index 99e5ce4cd6..58bbf3cf84 100644 --- a/Resources/Prototypes/Catalog/Research/technologies.yml +++ b/Resources/Prototypes/Catalog/Research/technologies.yml @@ -270,6 +270,7 @@ - FireExtinguisher - AutolatheMachineCircuitboard - ProtolatheMachineCircuitboard + - OreProcessorMachineCircuitboard - CircuitImprinterMachineCircuitboard - UniformPrinterMachineCircuitboard - AirAlarmElectronics diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index 6021522361..63cf603f99 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -68,7 +68,6 @@ - Shovel - Welder - FlareGun - - IngotIron - SheetSteel - SheetPlastic chance: 0.6 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index e799916fae..c2324b7e2e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -335,3 +335,16 @@ DefaultPrototype: CryostasisBeaker ExamineName: Cryostasis Beaker +- type: entity + id: OreProcessorMachineCircuitboard + parent: BaseMachineCircuitboard + name: ore processor machine board + components: + - type: MachineBoard + prototype: OreProcessor + requirements: + MatterBin: 1 + Manipulator: 1 + Laser: 2 + materialRequirements: + Glass: 1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml index 05fb93172a..5eb779c646 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/glass.yml @@ -48,7 +48,7 @@ components: - type: Material materials: - - Glass + Glass: 100 - type: Stack stackType: Glass - type: Sprite @@ -89,7 +89,7 @@ components: - type: Material materials: - - ReinforcedGlass + ReinforcedGlass: 100 - type: Stack stackType: ReinforcedGlass - type: Sprite @@ -130,7 +130,7 @@ components: - type: Material materials: - - PlasmaGlass + PlasmaGlass: 100 - type: Stack stackType: PlasmaGlass - type: Sprite @@ -168,7 +168,7 @@ components: - type: Material materials: - - ReinforcedPlasmaGlass + ReinforcedPlasmaGlass: 500 - type: Stack stackType: ReinforcedPlasmaGlass - type: Sprite @@ -197,73 +197,3 @@ - type: Stack stackType: ReinforcedPlasmaGlass count: 1 - -- type: entity - parent: SheetGlassBase - id: SheetTitaniumGlass - name: titanium glass - suffix: Full - components: - - type: Material - materials: - - TitaniumGlass - - type: Stack - stackType: TitaniumGlass - - type: Sprite - state: titaniumglass_3 - - type: Item - HeldPrefix: titaniumglass - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - titaniumglass - - titaniumglass_2 - - titaniumglass_3 - -- type: entity - parent: SheetTitaniumGlass - id: SheetTitaniumGlass1 - name: titanium glass - suffix: Single - components: - - type: Sprite - state: titaniumglass - - type: Stack - stackType: TitaniumGlass - count: 1 - -- type: entity - parent: SheetGlassBase - id: SheetPlastitaniumGlass - name: plastitanium glass - suffix: Full - components: - - type: Material - materials: - - PlastitaniumGlass - - type: Stack - stackType: PlastitaniumGlass - - type: Sprite - state: plastitaniumglass_3 - - type: Item - HeldPrefix: plastitaniumglass - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - plastitaniumglass - - plastitaniumglass_2 - - plastitaniumglass_3 - -- type: entity - parent: SheetPlastitaniumGlass - id: SheetPlastitaniumGlass1 - name: plastitanium glass - suffix: Single - components: - - type: Sprite - state: plastitaniumglass - - type: Stack - stackType: PlastitaniumGlass - count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml index a5f37448ba..3c3ab8d2a6 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/metal.yml @@ -35,7 +35,7 @@ components: - type: Material materials: - - Steel + Steel: 100 - type: Stack stackType: Steel - type: Sprite @@ -73,7 +73,7 @@ components: - type: Material materials: - - Plasteel + Plasteel: 100 - type: Stack stackType: Plasteel - type: Sprite @@ -99,108 +99,3 @@ - type: Stack stackType: Plasteel count: 1 - -- type: entity - parent: SheetMetalBase - id: SheetTitanium - name: titanium - suffix: Full - components: - - type: Material - materials: - - Titanium - - type: Stack - stackType: Titanium - - type: Sprite - state: titanium_3 - - type: Item - HeldPrefix: titanium - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - titanium - - titanium_2 - - titanium_3 - -- type: entity - parent: SheetTitanium - id: SheetTitanium1 - name: titanium - suffix: Single - components: - - type: Sprite - state: titanium - - type: Stack - stackType: Titanium - count: 1 - -- type: entity - parent: SheetMetalBase - id: SheetPlastitanium - name: plastitanium - suffix: Full - components: - - type: Material - materials: - - Plastitanium - - type: Stack - stackType: Plastitanium - - type: Sprite - state: plastitanium_3 - - type: Item - HeldPrefix: plastitanium - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - plastitanium - - plastitanium_2 - - plastitanium_3 - -- type: entity - parent: SheetPlastitanium - id: SheetPlastitanium1 - name: plastitanium - suffix: Single - components: - - type: Sprite - state: plastitanium - - type: Stack - stackType: Plastitanium - count: 1 - -- type: entity - parent: SheetMetalBase - id: SheetBrass - name: brass - suffix: Full - components: - - type: Material - materials: - - Brass - - type: Stack - stackType: Brass - - type: Sprite - state: brass_3 - - type: Item - HeldPrefix: brass - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - brass - - brass_2 - - brass_3 - -- type: entity - parent: SheetBrass - id: SheetBrass1 - name: brass - suffix: Single - components: - - type: Sprite - state: brass - - type: Stack - stackType: Brass - count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 9debf560f8..eb5dac11ea 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -56,31 +56,6 @@ - type: Stack count: 1 -- type: entity - parent: SheetOtherBase - id: SheetPhoron - name: phoron - suffix: Full - components: - - type: Material - materials: - - Phoron - - type: Stack - stackType: Phoron - - type: Sprite - state: phoron - - type: Item - HeldPrefix: phoron - -- type: entity - parent: SheetPhoron - id: SheetPhoron1 - name: phoron - suffix: Single - components: - - type: Stack - count: 1 - - type: entity parent: SheetOtherBase id: SheetPlasma @@ -89,7 +64,7 @@ components: - type: Material materials: - - Plasma + Plasma: 500 - type: Stack stackType: Plasma - type: Sprite @@ -137,7 +112,7 @@ - Plastic - type: Material materials: - - Plastic + Plastic: 100 - type: Stack stackType: Plastic - type: Sprite @@ -169,6 +144,9 @@ name: uranium suffix: Full components: + - type: Material + materials: + Uranium: 100 - type: Stack stackType: Uranium - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml index 06dc3dd427..f4f95cb3a0 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ingots.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ingots.yml @@ -25,74 +25,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] -- type: entity - parent: IngotBase - id: IngotAdamantine - name: adamantine bar - suffix: Full - components: - - type: Material - materials: - - Adamantine - - type: Stack - stackType: Adamantine - - type: Sprite - state: adamantine_3 - - type: Item - HeldPrefix: adamantine - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - adamantine - - adamantine_2 - - adamantine_3 - -- type: entity - parent: IngotAdamantine - id: IngotAdamantine1 - name: adamantine bar - suffix: Single - components: - - type: Sprite - state: adamantine - - type: Stack - count: 1 - -- type: entity - parent: IngotBase - id: IngotCopper - name: copper bar - suffix: Full - components: - - type: Material - materials: - - Copper - - type: Stack - stackType: Copper - - type: Sprite - state: copper_3 - - type: Item - HeldPrefix: copper - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - copper - - copper_2 - - copper_3 - -- type: entity - parent: IngotCopper - id: IngotCopper1 - name: copper bar - suffix: Single - components: - - type: Sprite - state: copper - - type: Stack - count: 1 - - type: entity parent: IngotBase id: IngotGold @@ -101,7 +33,7 @@ components: - type: Material materials: - - Gold + Gold: 100 - type: Stack stackType: Gold - type: Sprite @@ -127,74 +59,6 @@ - type: Stack count: 1 -- type: entity - parent: IngotBase - id: IngotHydrogen - name: hydrogen bar - suffix: Full - components: - - type: Material - materials: - - Hydrogen - - type: Stack - stackType: Hydrogen - - type: Sprite - state: hydrogen_3 - - type: Item - HeldPrefix: hydrogen - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - hydrogen - - hydrogen_2 - - hydrogen_3 - -- type: entity - parent: IngotHydrogen - id: IngotHydrogen1 - name: hydrogen bar - suffix: Single - components: - - type: Sprite - state: hydrogen - - type: Stack - count: 1 - -- type: entity - parent: IngotBase - id: IngotIron - name: iron bar - suffix: Full - components: - - type: Material - materials: - - Iron - - type: Stack - stackType: Iron - - type: Sprite - state: iron_3 - - type: Item - HeldPrefix: iron - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - iron - - iron_2 - - iron_3 - -- type: entity - parent: IngotIron - id: IngotIron1 - name: iron bar - suffix: Single - components: - - type: Sprite - state: iron - - type: Stack - count: 1 - - type: entity parent: IngotBase id: IngotSilver @@ -203,7 +67,7 @@ components: - type: Material materials: - - Silver + Silver: 100 - type: Stack stackType: Silver - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 835522c68e..a9a4244d2a 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -12,6 +12,7 @@ - type: ItemStatus - type: Tag tags: + - RawMaterial - DroneUsable - type: Damageable damageContainer: Inorganic @@ -24,25 +25,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] -- type: entity - parent: MaterialBase - id: MaterialBananium - name: bananium - suffix: Full - components: - - type: Stack - stackType: Bananium - - type: Sprite - state: bananium - -- type: entity - parent: MaterialBananium - id: MaterialBananium1 - suffix: Single - components: - - type: Stack - count: 1 - - type: entity parent: MaterialBase id: MaterialCloth @@ -53,7 +35,7 @@ stackType: Cloth - type: Material materials: - - Cloth + Cloth: 100 - type: Extractable juiceSolution: reagents: @@ -79,55 +61,6 @@ - type: Stack count: 1 -- type: entity - parent: MaterialBase - id: MaterialCotton - name: cotton - suffix: Full - components: - - type: Stack - stackType: Cotton - - type: Sprite - state: cotton_3 - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - cotton - - cotton_2 - - cotton_3 - -- type: entity - parent: MaterialCotton - id: MaterialCotton1 - suffix: Single - components: - - type: Sprite - state: cotton - - type: Stack - count: 1 - -- type: entity - parent: MaterialBase - id: MaterialDiamond - name: refined diamond - suffix: Full - components: - - type: Stack - stackType: Diamond - - type: Sprite - state: diamond - - type: Item - HeldPrefix: diamond - -- type: entity - parent: MaterialDiamond - id: MaterialDiamond1 - suffix: Single - components: - - type: Stack - count: 1 - - type: entity parent: MaterialBase id: MaterialDurathread @@ -138,7 +71,7 @@ stackType: Durathread - type: Material materials: - - Durathread + Durathread: 100 - type: Sprite state: durathread_3 - type: Appearance @@ -162,90 +95,6 @@ - type: Stack count: 1 -- type: entity - parent: MaterialBase - id: MaterialDurathreadRaw - name: raw durathread - suffix: Full - components: - - type: Stack - stackType: RawDurathread - - type: Sprite - state: durathreadraw_3 - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - durathreadraw - - durathreadraw_2 - - durathreadraw_3 - -- type: entity - parent: MaterialDurathreadRaw - id: MaterialDurathreadRaw1 - suffix: Single - components: - - type: Sprite - state: durathreadraw - - type: Stack - count: 1 - -- type: entity - parent: MaterialBase - id: MaterialHide - name: hide - suffix: Full - components: - - type: Stack - stackType: Hide - - type: Sprite - state: hide_3 - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - hide - - hide_2 - - hide_3 - -- type: entity - parent: MaterialHide - id: MaterialHide1 - suffix: Single - components: - - type: Sprite - state: hide - - type: Stack - count: 1 - -- type: entity - parent: MaterialBase - id: MaterialLeather - name: leather - suffix: Full - components: - - type: Stack - stackType: Leather - - type: Sprite - state: leather_3 - - type: Appearance - visuals: - - type: StackVisualizer - stackLayers: - - leather - - leather_2 - - leather_3 - -- type: entity - parent: MaterialLeather - id: MaterialLeather1 - suffix: Single - components: - - type: Sprite - state: leather - - type: Stack - count: 1 - - type: entity parent: MaterialBase id: MaterialWoodPlank @@ -254,7 +103,7 @@ components: - type: Material materials: - - Wood + Wood: 100 - type: Stack stackType: WoodPlank - type: Sprite @@ -270,8 +119,7 @@ - type: Stack count: 1 -# Specific Hides - +# Following not used currently - type: entity parent: MaterialBase id: MaterialHideBear @@ -284,32 +132,53 @@ sprite: Clothing/Head/Misc/hides.rsi HeldPrefix: bear Slots: - - HEAD + - HEAD - type: entity parent: MaterialBase - id: MaterialHideCat - name: cat hide + id: MaterialDiamond + name: refined diamond + suffix: Full components: + - type: Stack + stackType: Diamond - type: Sprite - sprite: Objects/Materials/materials.rsi - state: cathide - # - type: Clothing - # sprite: Clothing/Head/Misc/hides.rsi - # HeldPrefix: cat - # Slots: - # - HEAD + state: diamond + - type: Item + HeldPrefix: diamond + +- type: entity + parent: MaterialDiamond + id: MaterialDiamond1 + suffix: Single + components: + - type: Stack + count: 1 - type: entity parent: MaterialBase - id: MaterialHideCorgi - name: corgi hide + id: MaterialCotton + name: cotton + suffix: Full + components: + - type: Stack + stackType: Cotton + - type: Sprite + state: cotton_3 + - type: Appearance + visuals: + - type: StackVisualizer + stackLayers: + - cotton + - cotton_2 + - cotton_3 + +- type: entity + parent: MaterialCotton + id: MaterialCotton1 + suffix: Single components: - type: Sprite - sprite: Objects/Materials/materials.rsi - state: corgihide - - type: Clothing - sprite: Clothing/Head/Misc/hides.rsi - HeldPrefix: corgi - Slots: - - HEAD + state: cotton + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Materials/ore.yml b/Resources/Prototypes/Entities/Objects/Materials/ore.yml index 72d7669da8..781cdb053d 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/ore.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/ore.yml @@ -25,82 +25,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] -- type: entity - parent: OreBase - id: AdamantineOre - name: adamantine ore - suffix: Full - components: - - type: Stack - stackType: AdamantineOre - - type: Sprite - state: adamantine - -- type: entity - parent: AdamantineOre - id: AdamantineOre1 - suffix: Single - components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: Ammonia - name: ammonia - suffix: Full - components: - - type: Stack - stackType: Ammonia - - type: Sprite - state: ammonia - -- type: entity - parent: Ammonia - id: Ammonia1 - suffix: Single - components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: BananiumOre - name: bananium ore - suffix: Full - components: - - type: Stack - stackType: BananiumOre - - type: Sprite - state: bananium - -- type: entity - parent: BananiumOre - id: BananiumOre1 - suffix: Single - components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: DiamondRaw - name: raw diamond - suffix: Full - components: - - type: Stack - stackType: DiamondRaw - - type: Sprite - state: diamond - -- type: entity - parent: DiamondRaw - id: DiamondRaw1 - suffix: Single - components: - - type: Stack - count: 1 - - type: entity parent: OreBase id: GoldOre @@ -111,6 +35,9 @@ stackType: GoldOre - type: Sprite state: gold + - type: Material + materials: + Gold: 500 - type: entity parent: GoldOre @@ -122,42 +49,26 @@ - type: entity parent: OreBase - id: IronOre - name: iron ore + id: SteelOre + name: steel ore suffix: Full components: - type: Stack - stackType: IronOre + stackType: SteelOre - type: Sprite state: iron + - type: Material + materials: + Steel: 500 - type: entity - id: IronOre1 - parent: IronOre + id: SteelOre1 + parent: SteelOre suffix: Single components: - type: Stack count: 1 -- type: entity - parent: OreBase - id: PhoronOre - name: phoron ore - suffix: Full - components: - - type: Stack - stackType: PhoronOre - - type: Sprite - state: phoron - -- type: entity - parent: PhoronOre - id: PhoronOre1 - suffix: Single - components: - - type: Stack - count: 1 - - type: entity parent: OreBase id: PlasmaOre @@ -168,52 +79,17 @@ stackType: PlasmaOre - type: Sprite state: plasma + - type: Material + materials: + Plasma: 500 - type: entity parent: PlasmaOre id: PlasmaOre1 suffix: Single components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: Sand - name: sand - suffix: Full - components: - - type: Stack - stackType: Sand - - type: Sprite - state: sand - -- type: entity - parent: Sand - id: Sand1 - suffix: Single - components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: SandBlack - name: black sand - suffix: Full - components: - - type: Stack - stackType: BlackSand - - type: Sprite - state: sand_black - -- type: entity - parent: SandBlack - id: SandBlack1 - suffix: Single - components: - - type: Stack - count: 1 + - type: Stack + count: 1 - type: entity parent: OreBase @@ -225,6 +101,9 @@ stackType: SilverOre - type: Sprite state: silver + - type: Material + materials: + Silver: 500 - type: entity parent: SilverOre @@ -236,37 +115,21 @@ - type: entity parent: OreBase - id: Slag - name: slag + id: SpaceQuartz + name: space Quartz suffix: Full components: - type: Stack - stackType: Slag + stackType: SpaceQuartz - type: Sprite - state: slag + state: spacequartz + - type: Material + materials: + Glass: 500 - type: entity - parent: Slag - id: Slag1 - suffix: Single - components: - - type: Stack - count: 1 - -- type: entity - parent: OreBase - id: TitaniumOre - name: titanium ore - suffix: Full - components: - - type: Stack - stackType: TitaniumOre - - type: Sprite - state: titanium - -- type: entity - parent: TitaniumOre - id: TitaniumOre1 + parent: SpaceQuartz + id: SpaceQuartz1 suffix: Single components: - type: Stack @@ -282,6 +145,9 @@ stackType: UraniumOre - type: Sprite state: uranium + - type: Material + materials: + Uranium: 500 - type: entity parent: UraniumOre @@ -289,4 +155,4 @@ suffix: Single components: - type: Stack - count: 1 + count: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml index e6508f9ff2..9f7bdef5f9 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/space_cash.yml @@ -6,7 +6,7 @@ components: - type: Material materials: - - Credit + Credit: 100 - type: Stack stackType: Credit max: 1000000 # if you somehow get this rich consider buying a second station diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml index 81fe190744..6a6993e02a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/pickaxe.yml @@ -18,8 +18,29 @@ Piercing: 10 Blunt: 4 arcCooldownTime: 3 - - type: Item size: 24 sprite: Objects/Weapons/Melee/pickaxe.rsi prefix: inhand + +- type: entity + name: mining drill + parent: BaseItem + id: MiningDrill + description: Powerful tool used to quickly drill through rocks + components: + - type: Sprite + sprite: Objects/Tools/handdrill.rsi + state: handdrill + - type: Pickaxe + damage: + types: + Piercing: 25 + timeMultiplier: 0.75 + - type: ItemCooldown + - type: MeleeWeapon + damage: + types: + Piercing: 10 + Blunt: 4 + arcCooldownTime: 3 diff --git a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml index 49320e9927..9252d97026 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/MaterialDoors/material_doors.yml @@ -164,60 +164,6 @@ graph: DoorGraph node: plasmaDoor -- type: entity - id: DiamondDoor - name: diamond door - parent: BaseMaterialDoor - description: A door, where will it lead? - components: - - type: Sprite - netsync: false - sprite: Structures/Doors/MineralDoors/diamond_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - type: Damageable - damageContainer: Inorganic - damageModifierSet: StrongMetallic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 400 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - type: Construction - graph: DoorGraph - node: diamondDoor - -- type: entity - id: UraniumDoor - name: uranium door - parent: BaseMaterialDoor - description: A door, where will it lead? - components: - - type: Sprite - netsync: false - sprite: Structures/Doors/MineralDoors/uranium_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - type: Damageable - damageContainer: Inorganic - damageModifierSet: StrongMetallic - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 300 - behaviors: - - !type:DoActsBehavior - acts: ["Destruction"] - - type: Construction - graph: DoorGraph - node: uraniumDoor - - type: entity id: GoldDoor name: gold door @@ -250,19 +196,3 @@ graph: DoorGraph node: silverDoor -- type: entity - id: SandstoneDoor - name: sandstone door - parent: BaseMaterialDoor - description: A door, where will it lead? - components: - - type: Sprite - netsync: false - sprite: Structures/Doors/MineralDoors/sandstone_door.rsi - layers: - - state: closed - map: ["enum.DoorVisualLayers.Base"] - - type: Construction - graph: DoorGraph - node: sandstoneDoor - diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index b88c4f00c6..677c28b9a0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -81,6 +81,10 @@ anchored: true - type: Pullable - type: Lathe + whitelist: + tags: + - Sheet + - RawMaterial - type: entity parent: BaseMachinePowered @@ -207,6 +211,10 @@ anchored: true - type: Pullable - type: Lathe + whitelist: + tags: + - Sheet + - RawMaterial - type: entity parent: Protolathe @@ -247,10 +255,15 @@ - CircuitImprinterMachineCircuitboard - DawInstrumentMachineCircuitboard - StasisBedMachineCircuitboard + - OreProcessorMachineCircuitboard - type: Machine board: CircuitImprinterMachineCircuitboard - type: Lathe producingSound: /Audio/Machines/circuitprinter.ogg + whitelist: + tags: + - Sheet + - RawMaterial - type: entity parent: Protolathe @@ -306,6 +319,11 @@ - TimerTrigger - Signaller - SignalTrigger + - type: Lathe + whitelist: + tags: + - Sheet + - RawMaterial - type: entity parent: Protolathe @@ -445,3 +463,47 @@ board: UniformPrinterMachineCircuitboard - type: Lathe producingSound: /Audio/Machines/uniformprinter.ogg + whitelist: + tags: + - Sheet + - RawMaterial + +- type: entity + parent: Autolathe + id: OreProcessor + name: ore processor + description: It produces sheets and ingots using ores. + components: + - type: LatheVisuals + ignoreColor: true + - type: Sprite + sprite: Structures/Machines/ore_processor.rsi + netsync: false + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: inserting + map: ["enum.LatheVisualLayers.IsInserting"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Machine + board: AutolatheMachineCircuitboard + - type: LatheDatabase + static: true + recipes: + - SheetSteel30 + - SheetGlass30 + - SheetRGlass30 + - SheetPlasma30 + - SheetPGlass30 + - SheetRPGlass30 + - SheetUranium1 + - IngotGold1 + - IngotSilver1 + - type: Lathe + whitelist: + tags: + - Ore diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 918404ef8e..f72d7756a5 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -7,6 +7,25 @@ - type: RandomAppearance key: enum.AsteroidRockVisuals.State - type: Mineable + ores: + - id: SteelOre1 + prob: 0.25 + orGroup: Asteroid + - id: GoldOre1 + prob: 0.05 + orGroup: Asteroid + - id: SpaceQuartz1 + prob: 0.20 + orGroup: Asteroid + - id: PlasmaOre1 + prob: 0.10 + orGroup: Asteroid + - id: SilverOre1 + prob: 0.025 + orGroup: Asteroid + - id: UraniumOre1 + prob: 0.025 + orGroup: Asteroid - type: Sprite sprite: Structures/Walls/asteroid_rock.rsi state: 0 diff --git a/Resources/Prototypes/Reagents/Materials/glass.yml b/Resources/Prototypes/Reagents/Materials/glass.yml index 73387a86a0..422f9a1a16 100644 --- a/Resources/Prototypes/Reagents/Materials/glass.yml +++ b/Resources/Prototypes/Reagents/Materials/glass.yml @@ -25,17 +25,3 @@ name: reinforced plasma glass icon: Objects/Materials/Sheets/glass.rsi/rpglass.png color: "#8c4069" - -- type: material - id: TitaniumGlass - stack: TitaniumGlass - name: titanium glass - icon: Objects/Materials/Sheets/glass.rsi/titaniumglass.png - color: "#333135" - -- type: material - id: PlastitaniumGlass - stack: PlastitaniumGlass - name: plastitanium glass - icon: Objects/Materials/Sheets/glass.rsi/plastitaniumglass.png - color: "#232127" diff --git a/Resources/Prototypes/Reagents/Materials/materials.yml b/Resources/Prototypes/Reagents/Materials/materials.yml index 152691d3cf..b57352c19e 100644 --- a/Resources/Prototypes/Reagents/Materials/materials.yml +++ b/Resources/Prototypes/Reagents/Materials/materials.yml @@ -20,13 +20,6 @@ icon: Objects/Materials/Sheets/other.rsi/plasma.png color: "#7e009e" -- type: material - id: Phoron - stack: Phoron - name: phoron - icon: Objects/Materials/Sheets/other.rsi/phoron.png - color: "#FF3300" - - type: material id: Plastic stack: Plastic @@ -40,3 +33,10 @@ name: wood icon: Objects/Materials/materials.rsi/wood.png color: "#966F33" + +- type: material + id: Uranium + stack: Uranium + name: uranium + icon: Objects/Materials/Sheets/other.rsi/uranium.png + color: "#32a852" diff --git a/Resources/Prototypes/Reagents/Materials/metals.yml b/Resources/Prototypes/Reagents/Materials/metals.yml index 47b0371c7e..f1a5905697 100644 --- a/Resources/Prototypes/Reagents/Materials/metals.yml +++ b/Resources/Prototypes/Reagents/Materials/metals.yml @@ -4,20 +4,6 @@ name: steel icon: Objects/Materials/Sheets/metal.rsi/steel.png -- type: material - id: Adamantine - stack: Adamantine - name: adamantine - icon: Objects/Materials/ingots.rsi/adamantine.png - color: "#7dc37f" - -- type: material - id: Copper - stack: Copper - name: copper - icon: Objects/Materials/ingots.rsi/copper.png - color: "#B87333" - - type: material id: Gold stack: Gold @@ -25,18 +11,6 @@ icon: Objects/Materials/ingots.rsi/gold.png color: "#FFD700" -- type: material - id: Hydrogen - stack: Hydrogen - name: hydrogen - icon: Objects/Materials/ingots.rsi/hydrogen.png - -- type: material - id: Iron - stack: Iron - name: iron - icon: Objects/Materials/ingots.rsi/iron.png #Do we even distinguish between steel and iron? - - type: material id: Silver stack: Silver @@ -50,24 +24,3 @@ name: plasteel icon: Objects/Materials/Sheets/metal.rsi/plasteel.png color: "#696969" #Okay, this is epic - -- type: material - id: Brass - stack: Brass - name: brass - icon: Objects/Materials/Sheets/metal.rsi/brass.png - color: "#E1C16E" - -- type: material - id: Titanium - stack: Titanium - name: titanium - icon: Objects/Materials/Sheets/metal.rsi/titanium.png - color: "#878681" - -- type: material - id: Plastitanium - stack: Plastitanium - name: plastitanium - icon: Objects/Materials/Sheets/metal.rsi/plastitanium.png - color: "#4e4e4b" diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/doors.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/doors.yml index dee7118453..74bf319274 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/doors.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/doors.yml @@ -27,20 +27,6 @@ - material: Plasma amount: 20 doAfter: 15 - - to: diamondDoor - completed: - - !type:SnapToGrid { } - steps: - - material: Diamond - amount: 20 - doAfter: 15 - - to: uraniumDoor - completed: - - !type:SnapToGrid { } - steps: - - material: Uranium - amount: 20 - doAfter: 15 - to: goldDoor completed: - !type:SnapToGrid { } @@ -55,13 +41,6 @@ - material: Silver amount: 20 doAfter: 15 - - to: sandstoneDoor - completed: - - !type:SnapToGrid { } - steps: - - material: Sand - amount: 20 - doAfter: 15 - to: paperDoor completed: - !type:SnapToGrid { } @@ -102,28 +81,6 @@ steps: - tool: Anchoring doAfter: 15 - - node: diamondDoor - entity: DiamondDoor - edges: - - to: start - completed: - - !type:SpawnPrototype - prototype: MaterialDiamond1 - amount: 20 - steps: - - tool: Anchoring - doAfter: 15 - - node: uraniumDoor - entity: UraniumDoor - edges: - - to: start - completed: - - !type:SpawnPrototype - prototype: SheetUranium1 - amount: 20 - steps: - - tool: Anchoring - doAfter: 15 - node: goldDoor entity: GoldDoor edges: @@ -146,17 +103,6 @@ steps: - tool: Anchoring doAfter: 15 - - node: sandstoneDoor - entity: SandstoneDoor - edges: - - to: start - completed: - - !type:SpawnPrototype - prototype: Sand - amount: 20 - steps: - - tool: Anchoring - doAfter: 15 - node: paperDoor entity: PaperDoor edges: diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index f6978a6359..add03bb298 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -573,40 +573,6 @@ conditions: - !type:TileNotBlocked -- type: construction - name: diamond door - id: DiamondDoor - graph: DoorGraph - startNode: start - targetNode: diamondDoor - category: Structures - description: A primitive door with manual operation like the cavemen used. - objectType: Structure - placementMode: SnapgridCenter - canBuildInImpassable: false - icon: - sprite: Structures/Doors/MineralDoors/diamond_door.rsi - state: closed - conditions: - - !type:TileNotBlocked - -- type: construction - name: uranium door - id: UraniumDoor - graph: DoorGraph - startNode: start - targetNode: uraniumDoor - category: Structures - description: A primitive door with manual operation like the cavemen used. - objectType: Structure - placementMode: SnapgridCenter - canBuildInImpassable: false - icon: - sprite: Structures/Doors/MineralDoors/uranium_door.rsi - state: closed - conditions: - - !type:TileNotBlocked - - type: construction name: gold door id: GoldDoor @@ -641,23 +607,6 @@ conditions: - !type:TileNotBlocked -- type: construction - name: sandstone door - id: SandstoneDoor - graph: DoorGraph - startNode: start - targetNode: sandstoneDoor - category: Structures - description: A primitive door with manual operation like the cavemen used. - objectType: Structure - placementMode: SnapgridCenter - canBuildInImpassable: false - icon: - sprite: Structures/Doors/MineralDoors/sandstone_door.rsi - state: closed - conditions: - - !type:TileNotBlocked - - type: construction name: paper door id: PaperDoor diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 8b4639e532..066041d4e6 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -194,6 +194,16 @@ Steel: 100 Glass: 900 Gold: 100 + +- type: latheRecipe + id: OreProcessorMachineCircuitboard + icon: Objects/Misc/module.rsi/id_mod.png + result: OreProcessorMachineCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Gold: 100 # Power - type: latheRecipe id: APCElectronics diff --git a/Resources/Prototypes/Recipes/Lathes/sheet.yml b/Resources/Prototypes/Recipes/Lathes/sheet.yml index 4cea46e015..5967a30ad7 100644 --- a/Resources/Prototypes/Recipes/Lathes/sheet.yml +++ b/Resources/Prototypes/Recipes/Lathes/sheet.yml @@ -7,6 +7,16 @@ completetime: 2 materials: Steel: 100 + +- type: latheRecipe + id: SheetSteel30 + icon: + sprite: Objects/Materials/Sheets/metal.rsi + state: steel_3 + result: SheetSteel + completetime: 2 + materials: + Steel: 3000 - type: latheRecipe id: SheetGlass1 @@ -17,6 +27,16 @@ completetime: 2 materials: Glass: 100 + +- type: latheRecipe + id: SheetGlass30 + icon: + sprite: Objects/Materials/Sheets/glass.rsi + state: glass_3 + result: SheetGlass + completetime: 2 + materials: + Glass: 3000 - type: latheRecipe id: SheetRGlass @@ -28,6 +48,80 @@ materials: Glass: 100 Steel: 50 + +- type: latheRecipe + id: SheetRGlass30 + icon: + sprite: Objects/Materials/Sheets/glass.rsi + state: rglass_3 + result: SheetRGlass + completetime: 2 + materials: + Glass: 3000 + Steel: 1500 + +- type: latheRecipe + id: SheetPGlass30 + icon: + sprite: Objects/Materials/Sheets/glass.rsi + state: pglass_3 + result: SheetPGlass + completetime: 2 + materials: + Glass: 3000 + Plasma: 3000 + +- type: latheRecipe + id: SheetRPGlass30 + icon: + sprite: Objects/Materials/Sheets/glass.rsi + state: rpglass_3 + result: SheetRPGlass + completetime: 2 + materials: + Glass: 3000 + Plasma: 3000 + Steel: 1500 + +- type: latheRecipe + id: SheetPlasma30 + icon: + sprite: Objects/Materials/Sheets/other.rsi + state: plasma_3 + result: SheetPlasma + completetime: 2 + materials: + Plasma: 3000 + +- type: latheRecipe + id: SheetUranium1 + icon: + sprite: Objects/Materials/Sheets/other.rsi + state: uranium + result: SheetUranium1 + completetime: 2 + materials: + Uranium: 500 + +- type: latheRecipe + id: IngotGold1 + icon: + sprite: Objects/Materials/ingots.rsi + state: gold + result: IngotGold1 + completetime: 2 + materials: + Gold: 500 + +- type: latheRecipe + id: IngotSilver1 + icon: + sprite: Objects/Materials/ingots.rsi + state: silver + result: IngotSilver1 + completetime: 2 + materials: + Silver: 500 - type: latheRecipe id: SheetPlastic diff --git a/Resources/Prototypes/Stacks/Materials/Sheets/glass.yml b/Resources/Prototypes/Stacks/Materials/Sheets/glass.yml index 780cfeb3c6..bfdb7f6d21 100644 --- a/Resources/Prototypes/Stacks/Materials/Sheets/glass.yml +++ b/Resources/Prototypes/Stacks/Materials/Sheets/glass.yml @@ -22,14 +22,3 @@ icon: /Textures/Objects/Materials/Sheets/glass.rsi/rpglass.png spawn: SheetRPGlass1 -- type: stack - id: TitaniumGlass - name: titanium glass - icon: /Textures/Objects/Materials/Sheets/glass.rsi/titaniumglass.png - spawn: SheetTitaniumGlass1 - -- type: stack - id: PlastitaniumGlass - name: plastitanium glass - icon: /Textures/Objects/Materials/Sheets/glass.rsi/plastitaniumglass.png - spawn: SheetPlastitaniumGlass1 diff --git a/Resources/Prototypes/Stacks/Materials/Sheets/metal.yml b/Resources/Prototypes/Stacks/Materials/Sheets/metal.yml index a4e21c0487..de5c2b4b6f 100644 --- a/Resources/Prototypes/Stacks/Materials/Sheets/metal.yml +++ b/Resources/Prototypes/Stacks/Materials/Sheets/metal.yml @@ -10,21 +10,4 @@ icon: /Textures/Objects/Materials/Sheets/metal.rsi/plasteel.png spawn: SheetPlasteel1 -- type: stack - id: Titanium - name: titanium - icon: /Textures/Objects/Materials/Sheets/metal.rsi/titanium.png - spawn: SheetTitanium1 - -- type: stack - id: Plastitanium - name: plastitanium - icon: /Textures/Objects/Materials/Sheets/metal.rsi/plastitanium.png - spawn: SheetPlastitanium1 - -- type: stack - id: Brass - name: brass - icon: /Textures/Objects/Materials/Sheets/metal.rsi/brass.png - spawn: SheetBrass1 diff --git a/Resources/Prototypes/Stacks/Materials/Sheets/other.yml b/Resources/Prototypes/Stacks/Materials/Sheets/other.yml index 9b638a0011..cea9d6c804 100644 --- a/Resources/Prototypes/Stacks/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Stacks/Materials/Sheets/other.yml @@ -4,12 +4,6 @@ icon: /Textures/Objects/Materials/Sheets/other.rsi/paper.png spawn: SheetPaper1 -- type: stack - id: Phoron - name: phoron - icon: /Textures/Objects/Materials/Sheets/other.rsi/phoron.png - spawn: SheetPhoron1 - - type: stack id: Plasma name: plasma @@ -26,4 +20,4 @@ id: Uranium name: uranium icon: /Textures/Objects/Materials/Sheets/other.rsi/uranium.png - spawn: SheetUranium1 + spawn: SheetUranium1 \ No newline at end of file diff --git a/Resources/Prototypes/Stacks/Materials/ingots.yml b/Resources/Prototypes/Stacks/Materials/ingots.yml index 87d082e604..3a26afa8cf 100644 --- a/Resources/Prototypes/Stacks/Materials/ingots.yml +++ b/Resources/Prototypes/Stacks/Materials/ingots.yml @@ -1,33 +1,9 @@ -- type: stack - id: Adamantine - name: adamantine - icon: "/Textures/Objects/Materials/ingots.rsi/adamantine.png" - spawn: IngotAdamantine1 - -- type: stack - id: Copper - name: copper - icon: "/Textures/Objects/Materials/ingots.rsi/copper.png" - spawn: IngotCopper1 - - type: stack id: Gold name: gold icon: "/Textures/Objects/Materials/ingots.rsi/gold.png" spawn: IngotGold1 -- type: stack - id: Hydrogen - name: hydrogen - icon: "/Textures/Objects/Materials/ingots.rsi/hydrogen.png" - spawn: IngotHydrogen1 - -- type: stack - id: Iron - name: iron - icon: "/Textures/Objects/Materials/ingots.rsi/iron.png" - spawn: IngotIron1 - - type: stack id: Silver name: silver diff --git a/Resources/Prototypes/Stacks/Materials/materials.yml b/Resources/Prototypes/Stacks/Materials/materials.yml index 91cda5f129..ce33f3f5e6 100644 --- a/Resources/Prototypes/Stacks/Materials/materials.yml +++ b/Resources/Prototypes/Stacks/Materials/materials.yml @@ -1,15 +1,3 @@ -- type: stack - id: Bananium - name: bananium - icon: /Textures/Objects/Materials/materials.rsi/bananium.png - spawn: MaterialBananium1 - -- type: stack - id: Diamond - name: diamond - icon: /Textures/Objects/Materials/materials.rsi/diamond.png - spawn: MaterialDiamond1 - - type: stack id: WoodPlank name: wood plank @@ -22,12 +10,6 @@ icon: /Textures/Objects/Materials/materials.rsi/cloth.png spawn: MaterialCloth1 -- type: stack - id: Cotton - name: cotton - icon: /Textures/Objects/Materials/materials.rsi/cotton.png - spawn: MaterialCotton1 - - type: stack id: Durathread name: durathread @@ -35,19 +17,13 @@ spawn: MaterialDurathread1 - type: stack - id: RawDurathread - name: raw durathread - icon: /Textures/Objects/Materials/materials.rsi/durathreadraw.png - spawn: MaterialDurathreadRaw1 - + id: Diamond + name: diamond + icon: /Textures/Objects/Materials/materials.rsi/diamond.png + spawn: MaterialDiamond1 + - type: stack - id: Hide - name: hide - icon: /Textures/Objects/Materials/materials.rsi/hide.png - spawn: MaterialHide1 - -- type: stack - id: Leather - name: leather - icon: /Textures/Objects/Materials/materials.rsi/leather.png - spawn: MaterialLeather1 + id: Cotton + name: cotton + icon: /Textures/Objects/Materials/materials.rsi/cotton.png + spawn: MaterialCotton1 diff --git a/Resources/Prototypes/Stacks/Materials/ore.yml b/Resources/Prototypes/Stacks/Materials/ore.yml index af319ee5dc..5634b1fcaf 100644 --- a/Resources/Prototypes/Stacks/Materials/ore.yml +++ b/Resources/Prototypes/Stacks/Materials/ore.yml @@ -1,27 +1,3 @@ -- type: stack - id: AdamantineOre - name: adamantine ore - icon: /Textures/Objects/Materials/ore.rsi/adamantine.png - spawn: AdamantineOre1 - -- type: stack - id: Ammonia - name: ammonia - icon: /Textures/Objects/Materials/ore.rsi/ammonia.png - spawn: Ammonia1 - -- type: stack - id: BananiumOre - name: bananium ore - icon: /Textures/Objects/Materials/ore.rsi/bananium.png - spawn: BananiumOre1 - -- type: stack - id: DiamondRaw - name: diamond ore - icon: /Textures/Objects/Materials/ore.rsi/diamond.png - spawn: DiamondRaw1 - - type: stack id: GoldOre name: gold ore @@ -29,16 +5,10 @@ spawn: GoldOre1 - type: stack - id: IronOre - name: iron ore + id: SteelOre + name: steel ore icon: /Textures/Objects/Materials/ore.rsi/iron.png - spawn: IronOre1 - -- type: stack - id: PhoronOre - name: phoron ore - icon: /Textures/Objects/Materials/ore.rsi/phoron.png - spawn: PhoronOre1 + spawn: SteelOre1 - type: stack id: PlasmaOre @@ -46,18 +16,6 @@ icon: /Textures/Objects/Materials/ore.rsi/plasma.png spawn: PlasmaOre1 -- type: stack - id: Sand - name: sand - icon: /Textures/Objects/Materials/ore.rsi/sand.png - spawn: Sand1 - -- type: stack - id: BlackSand - name: black sand - icon: /Textures/Objects/Materials/ore.rsi/sand_black.png - spawn: SandBlack1 - - type: stack id: SilverOre name: silver ore @@ -65,19 +23,13 @@ spawn: SilverOre1 - type: stack - id: Slag - name: slag - icon: /Textures/Objects/Materials/ore.rsi/slag.png - spawn: Slag1 - -- type: stack - id: TitaniumOre - name: titanium ore - icon: /Textures/Objects/Materials/ore.rsi/titanium.png - spawn: TitaniumOre1 + id: SpaceQuartz + name: space quartz + icon: /Textures/Objects/Materials/ore.rsi/spacequartz.png + spawn: SpaceQuartz1 - type: stack id: UraniumOre name: uranium ore - icon: /Textures/Objects/Materials/ore.rsi/titanium.png - spawn: UraniumOre1 + icon: /Textures/Objects/Materials/ore.rsi/uranium.png + spawn: UraniumOre1 \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index c8d98d14ee..b157a8d7b9 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -269,6 +269,9 @@ - type: Tag id: PussyWagonKeys + +- type: Tag + id: RawMaterial # Give this to something that doesn't need any special recycler behavior and just needs deleting. - type: Tag @@ -351,3 +354,4 @@ - type: Tag id: Write + diff --git a/Resources/Textures/Objects/Materials/ore.rsi/adamantine.png b/Resources/Textures/Objects/Materials/ore.rsi/adamantine.png index 72a1e938c16d1caa5acae925bc9ab9e3047ce542..1664f1a3affbe96901d7ecf32946ef26318a2edf 100644 GIT binary patch delta 175 zcmZ3(yq|G`L_G^L0|P^2NcwRgB^2Nj;_8!GXy|MaogP))Ug;I-C9kJ>a+07fP?oVI z$S;_|;n|HeASc?>#W6%E4!w!>h&!< zg5 zJP{XJN)nDnXxD21)ElipXOH~fF0ZDBzVINo76=3a!55$60}&m8p}k%SVE_OC07*qo IM6N<$f=?sF1^@s6 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/ammonia.png b/Resources/Textures/Objects/Materials/ore.rsi/ammonia.png index f7689b1e85c17ea2486922d94fb11064c85c37fc..024045a145c54a4b206eff04497d6b3016f5d424 100644 GIT binary patch delta 338 zcmV-Y0j>VO0qp{iB!3BTNLh0L01m_e01m_fl`9S#0003WNkl1&D#Xl21J%V+bPvHdjqCwJw~Wwg+;^Tt)!S z`SR3MPk|Lo`k!BcYPi|$A7IeK84{4l7(ks?T?6;ImdXeKkye`hP>q|7^%d0WRXjq| zHHcQgF+;jBzDo}D=Cj3j?f|Eto2yW$r4l8;5b8zC6tZ_?^d-}a0T_a79Y$*Y7Qic* kcNNdyu?4UI7T}Y*0_UNKa}Vd=i2wiq07*qoM6N<$f`_S*E&u=k delta 163 zcmV;U09^m=0>1%}B!7lUL_t(|ob8ld3cw%?gX7qZy#EnAQ}!~Uiks5P*h9V-e<&t2 zML-B4gb2W!$QwsQ8~}>he`dgnM{#$cbgMUx(`#U4BBPBXrIcoGObdEQ(hBE?x_Un| z5$ZrSF%o|>7dB7@?0F=<5`oLWNZhuZBv-@%#|!}N9IR%&og5v%pb$d*f(r^TL6_+* Rt_uJF002ovPDHLkV1mBSL$&|_ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/bananium.png b/Resources/Textures/Objects/Materials/ore.rsi/bananium.png deleted file mode 100644 index a8b3325f410ef86f3875cfd0bc1899dad4e459cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 286 zcmV+(0pb3MP)3Z5Qe|q=oz$7w6ymEf~5%FRV;gdWJ_sSn@XtR(5-<$I zFg}bd$z@5djZfamb**(y?9XeL^k_d5NmZFjRpl81NFOMVJVVxdS~~BM1_)L8?HqAF zBrG$_pbj_>hdmvX)vFC8J-Vw6ok!JF5d&TscdgIARF&rphsH_M>WWWC$as%rg0sU2;gFi}@~07*qoM6N<$f@a@%djJ3c diff --git a/Resources/Textures/Objects/Materials/ore.rsi/coal.png b/Resources/Textures/Objects/Materials/ore.rsi/coal.png new file mode 100644 index 0000000000000000000000000000000000000000..d89a0b4766d96af93c8f74a2087b0ddc22415f78 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{SD(y68Bw9okN{I7Jq1~5 zQ6BC?-wK<6vWz7`e!&b5&u*jvImw#Rphx6*%K~6s^x2<$v!?SyiO@O9JXINo%hNr6>``w_X_GM~b-9aqVo0lp{ uH=aDWK=kN+j@XHuVuv53AG>0Ip8G*KpPSFTo3=pf7(8A5T-G@yGywqEl0ppt literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/copper.png b/Resources/Textures/Objects/Materials/ore.rsi/copper.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee4970668ae2b7491703d102b217f842bb8cdce GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv{s5m4SD(znW?jBxRW4h7Rj=-w zC9UUH1(aee3GxeOaCmkj4akY}ba4#Pn0U7TplE{uhx2XTH9H(K#WM;R5B^R6q_Lsl z*|GY@mY{#@W;x!Tl=y{Znak`Tc@J?MIIyT9S*!8tnWyiV n7b&`0C4IjZ_G{^rpV_w4B01kYuLzn1w28sf)z4*}Q$iB}6lzKB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/diamond.png b/Resources/Textures/Objects/Materials/ore.rsi/diamond.png deleted file mode 100644 index 5a6de137f4414629aee8dd5424eb1a47b8c22c1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJR!#d8cTw50@SegFUEu8Vac?t&ugPs2=ooh>~T54|h@776Gdsc31)Dpox* z^MX-axkKjqwN0z1-;_Ue=lQhgCFi39tmXCA{}py#x8xh^z2Z>2uYsDa5o*_8@IH@f o4S5~e|83t4sp)zopr0Oh4il>h($ diff --git a/Resources/Textures/Objects/Materials/ore.rsi/gold.png b/Resources/Textures/Objects/Materials/ore.rsi/gold.png index 6ac90a19ed18b7f4549fde2a6c813584cda0a279..b841dde0742bb98dcf4bbe2f2d60666bcf267b21 100644 GIT binary patch delta 175 zcmaFFw4ZT;L_G^L0|P^2NcwRg#UJ1k;_8!G*z3*z`~CR``$JE+8>{jz4gg9qmIV0) zGdMiEkp|?%dAc};XiU7?znk}f0SD__-b3k3?W_tq3A6vEds#i!N}ZzZzg%78>H83i zvPR$U5BB7EUzqhpX2y{RQ$qODeYIbx+|5)yv8MKfkcvj4a8lq#40bx%vB<^! b|2<7w{xxUWp2++hpj8Z>u6{1-oD!Mp?(O6t zBK`s)2&JoZ6esDL!QvwM7f#NSrBEnJpi^iksfuF?MUaN3h_xWt!8@lE+HbsvP#Krhl9p2b3L~O2J^!v1Am^ z=#S@|U+xl5QsCit0=$|lo2U0&wQSPlnv;e_6wcV+ae-R^ibBv<(ytic)m&M2Yyc{S z07`YDFd+Uo;-)nvPPPHqbDk9SieIpN@nZnMa55!MQeIx)0BGNRZKwvUd?8z*QV8ge z4|)GwEaijIvrMu$W90>kqDz_pr8@Q&oE?Wm;f&r;Fc{_4D=Yv%R{-b@1s5Il*>eYE l5k=7jSX-{qXf&EX!8b4;a+QQ>ZV3PY002ovPDHLkV1iF@n0o*K diff --git a/Resources/Textures/Objects/Materials/ore.rsi/iron.png b/Resources/Textures/Objects/Materials/ore.rsi/iron.png index 2f5ad0a16ec63d96bf8df394c17bb176e4fb28a0..693963eacb32cb07763b5831a2a9a40ebb4f7e7d 100644 GIT binary patch delta 184 zcmaFHc!F_)L_G^L0|P^2NcwRgB^2Nj;_8!G=%A$+?Cu_FYMPatY$~H>c68HYpe$oa zkY6x^!?PP{Ku(IMi(`n!#H(jE3N|S4v?gl2X|-neVB&7!eBiX6>Gyi2xrxlRPs{(? zCfAw0zQZ-|^*$CI(JeO`A{`v{MK-K>;?%CeCAGl6#Bg6h`MCv&8&YgUa(pH(x_ID5 kh=Knlp))Bxsy`mc8IlF_5+*2m3kO{~ zG(CiI@RWpsW2lLVT4=&Cey5U#Xwsr=@0$vgzL&ND5fRa!D5FIgEvf(IzXSq6Q`MO= zT6TxM|0GRSXR+%|+S@W&Aj$#A0fA zsCVw;I7adv2*dr>hryj~alhW?JA&{z-1;fu$pyX@>THWuxlX!#L_|d18|Gh85XYuw Qr~m)}07*qoM6N<$g2D1$OaK4? diff --git a/Resources/Textures/Objects/Materials/ore.rsi/meta.json b/Resources/Textures/Objects/Materials/ore.rsi/meta.json index c4b3f33488..90269cd3dd 100644 --- a/Resources/Textures/Objects/Materials/ore.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/ore.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24", + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/pull/210/commits/d188de4d110a4f433ce3d30211be30d8257dc4c3 modified by HoofedEar", "size": { "x": 32, "y": 32 @@ -13,12 +13,6 @@ { "name": "ammonia" }, - { - "name": "bananium" - }, - { - "name": "diamond" - }, { "name": "gold" }, @@ -26,28 +20,22 @@ "name": "iron" }, { - "name": "phoron" + "name": "uranium" }, { "name": "plasma" }, { - "name": "sand" - }, - { - "name": "sand_black" + "name": "spacequartz" }, { "name": "silver" }, { - "name": "slag" + "name": "copper" }, { - "name": "titanium" - }, - { - "name": "uranium" + "name": "coal" } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Materials/ore.rsi/phoron.png b/Resources/Textures/Objects/Materials/ore.rsi/phoron.png deleted file mode 100644 index 3a9537c129916b87d918e27046d8e5d23a8ce92d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 551 zcmV+?0@(eDP)Nv~dj6*EDTBd#Q`|gNG;l zeurbQ%#2k9h(sbR`nbJ@eC7tBy?r1BO_;FMfTAcprHRMmsGOf7pLu0*Ho^a#41JgB zB_Q#;N=T$CzkqWQrBVslIYKI%?95O6 z%t1AH=g1WxaYa!Odw=7UEDRt$zs}csy$-+Mk6c+ZDPJ4p7LN*Zy1gtT@gtl~j-_J-t6Bux4jckBg zNJ-oR`6rxRUUOeJ8V%i?X0yrT<1*4YKq+Vgk`V0)qSb1_=kxJ>u~>xH>&3xWiGSa( zZ1R{0G3*>Lbr4DSJq8FeA@6r;q>u002ovPDHLkV1l?L{5${v diff --git a/Resources/Textures/Objects/Materials/ore.rsi/plasma.png b/Resources/Textures/Objects/Materials/ore.rsi/plasma.png index 71d824eedbbe441521a966a64544ada1d2d77cb5..7b5882364d61493d8fc1d20499e34b155542092b 100644 GIT binary patch literal 375 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvmUKs7M+SzC{oH>NSwWJ?9znhg z3{`3j3=J&|48MRv4KElNN(~qoUL`OvSj}Ky5HFasE6@fgAsXNl;tHfa7#bc#yjUS| zqCw+;0YgE7#EwrEG37uB#*!evUY)*tyVLDsUDc>21sKV#Tu#l1cR%C%gGx8GtaMjwPZ=l8kHNWuBMg@o(e~f z9yJw>RM0u9%H!H#de&5zC$d3N$Mmeo(Wq+yBE|=mm}Mh?uD4C#G4$`H=un6AuCb*t zaT3Wlg*5rSmoK?1BuSDa$$v<3V7rxf3av~g(~5g<-*2ILr+@Gb<~M4Hmq+Z$8N|yY zTkoqJew_X|KbAlzboM&M&HO9x^$Jo-EX%?XIRG|O%PbA;08p(~dvYQRXm}8+qoDw< z?U5dxVDWAofV1>fs6>ApxZkMZ+7+mGgEv#l>Og>t2Pgr{vXD~toE<6qS@?WPf+hT<_W* z2-U>&+8q0(!}j^!1%x-C;p%;ktKq{_YIv#pdM!bztd3D_{Hg)Kz;(43%`&`|&F`jW zP~e~lAf*h2hYIN0UAtn2yS9fTaz;qk+$AL15)i%&dteF-kBpi3u9p_|K+Uw5-0jA> z68ickT-!5Wei$4g>;u_s_S@#8g*p>F9~B-+ASjX^oiMvzXFAt=6nHEFfUrNCsK6vi dk|g6IFp*R%l;-6xWR>&YYHG+|Tfq=WaAHv-=pQ~V@*$NH;1ClH{G(xeqO-mfg zg$5IQ#tsViOm_))zvq451BF7NQ2a++$4XqsN;YxVcA0SF>YBY{gH1^MNI-ik;MmH|;2in+a07*qoM6N<$f{b*W`Tzg` diff --git a/Resources/Textures/Objects/Materials/ore.rsi/sand_black.png b/Resources/Textures/Objects/Materials/ore.rsi/sand_black.png deleted file mode 100644 index cb5732ce217cf885e9198785f403c3bb08860146..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 284 zcmV+%0ptFOP)If7oWft15XTMQIG?NPN;H2v<8lQswc2YB`zzRTwt`cEtq4F}*T2G-p=V*Y i1&(Cyh8l)p{3+fb`F73b%Mtzn0000nO^n6%2^K}&V%@%4q7!CY*Z z+_}{*00001bW%=J06^y0W&i*HYDq*vR49?v&cO|UAPhj!CS5>BkT3uV$^cRrKwty9 z{|eTFMK{oY>r2`c;P=haYc|p}X524`12zF`2Ow9XOzaeDYC2L@2(=x?EOZ0*R4q{~ vy3x5)YehF;<<2j_ASa7|Jc{0X2jA`l>){j=nm_yJ00000NkvXXu0mjfGFeR6 delta 381 zcmV-@0fPR~0gMBX7=H)`0001UdV2H#00C1;L_t(|ob8e^Pr^_Xg+CL20R}NhI*10? zaAoM+t&6)$M`L1KHDRiWqk~g_fTPC6=wNiHBi+D=4x}OlNsKh9lXZY%i2^N-zHjNv z>wWK>bMFIzKp+tOcjo?bSXE@d)$X#ixIpkdySR;Y=gbCFMSu2lS&638A+x%UU9XT% zCAoiWjMPmtG?Rg_c+d3!$YrHpYfnzEXgoV(bz&J%71^OigoOjbZ4Xl@mZ(}Lg<=W2Ug6=X z-x1II;O*Uw-*$mu&KsNCBoYZ=kam!+P%NQo+V}o|>&x>IVPN7Lm^y-dK2NPy;=L=Wbvs6#vv`I{7L_#iVFk+ bfdJqO*3hK5Go_pA00000NkvXXu0mjfs4%uy diff --git a/Resources/Textures/Objects/Materials/ore.rsi/slag.png b/Resources/Textures/Objects/Materials/ore.rsi/slag.png deleted file mode 100644 index 18f3a8e4da6d0059f9795ff66bc65fd890e50723..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJd`}n0kcv5PryS%xpuofI8=mxE z&?xxV%WkC(=fKdb-(C6)6}c2z1RkZHa$0NuaH?hz!-}&DRc$p3_wL`-Ex3=pu>M6+ z*lCs+K$0YTNZ;CSM8%@1to9X45Y)awVUdaJOYMWAx1pP8=VN{pPgr2=+cv R%>Y`>;OXk;vd$@?2>@3GJ|O@A diff --git a/Resources/Textures/Objects/Materials/ore.rsi/spacequartz.png b/Resources/Textures/Objects/Materials/ore.rsi/spacequartz.png new file mode 100644 index 0000000000000000000000000000000000000000..c615636f9f2de70900cf5c859dc10173f02c1ade GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{SD(zn%$(+cki2K_J}y0c zs(<0uDTx8sfU=AwL4Lsu4$p3+0XgNKE{-7@6VINz%X?UXhvk8{+5#cCRdHx9! zVht7lLvJllGCQ&N=VZV12Nw%(G@SkW-gejaW`E&hk&nH1HNLvJnNc@=4L8rnO-`DT z>JKLG-Y{$G63=2j;k;MPzgYs51C7?dcTe1<(^F=C`A6xx#mSxv8r+|9GanLm>9T&F Q33LL3r>mdKI;Vst01FFM^#A|> literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Materials/ore.rsi/titanium.png b/Resources/Textures/Objects/Materials/ore.rsi/titanium.png deleted file mode 100644 index bb9de5bda372aa462163dff90bf670f7080bee26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 338 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFiLv5IEGZrNluVpU7R4&(-deR z;*b}6|Nn*)kNz8cYp{55;AZvz;@7|a-LL#7`c5L}m51r6ZSJ>g5di&M+Pv)$%AATV8TPV?*1PX)jAl~$ZqSf_RN01y;>y~5X4Yh5Oo zYIc#&fqlb|d3QpNbi8q3V`FPG*T1*GV!|tiX%hT%_O=^4UXp2X75ndgPWH(x=MX&y z_9`~F|2J7~Jly&C)k@hXxBTZZgKVC6*Zwfjbl#Jq7g{{|6s#9oRPOkjp0L2VNg5Ii biTn(5=NmTW>Px$9Z5t%R9J=Wlrd_KmGp^ zSS%Kc<<_|ydoYasQr5fAZ1g?%W0SwVM*uuHPe4+R6&Z9uUVlBE&#Jw{eha{(=aR0! z`TE!my0dq182hE;PjHn-VRBsMUBrk4&|9QeP`%&hs3-uy=(JIp)gl4@ZcFD3)Duh3 z>ui=9qf=BAFrCk;b_l;hN!cZFRUnN0Qbhqqr+^Gw6Or01bz{FUIVuV`?6*>(t3%pq zCNG!rcJci3%0g<9;P?}O*4Zdb4!|ipUPyEb)R6>jNzNteoU&uJ?p=W{k)izOld@PW bmfPS5^*UwAaU|hE00000NkvXXu0mjfM(dpM delta 326 zcmV-M0lEI;0^kCWBYy!WNklzTz|dqz1J2T4u`|>ACQUC zGEsVwvnz`V0kZ3KNhV5f@5IfLnYWE)y|FDG$0-1H5ple+XMfhqr)OTLQ!}&+O)DRmJ6;0x|LF1=hpWo;eVLa|{-0Vsa? zLJ+yqXH3OjidcW|d3DsY9}lM!>Te)^3(y{DRXwNM@cc~@?^Edpz6V?(J(gOIYfm_9 zT~;K-!*nGcKb;*=~VSSI&H&l?|&=-kD=UVO}E zwWl$*V3dJ+G&NZVBLGWFSxF9$+*B_fM@5uoe63NOy+OM(F@|e{LuhI7gH@oXF%I7d zgLw27h^hqDXX;1T!jYL)4d;%VzTq+@QJEGU~oqL+t%%OO- zN{T&G*8?mUlb8AjRC%ot_of$dru~qNvmueJ>Q}|xO)gZ{zsekzn){fT7Jn5-=v+tx znQ_yw+cqJ~(|Pi&Zm5}=c?-f@H(vNz7V)kVK3+xX0iKYjesDi3F+~Z%3b7%rNA?l` zLv5@|s2lUsYDMRGD=1!B&BJ}rg_V3!KQx|@qTGjq2Rt5$H;dMq0Bm=MnPVkZ@)<2O zXXOHWJCORZ0OTQmLH?{LUMplLXbWIxo58XuZke+IvNiut0Cw6O00+PUZ~%54;1_Ns VO)VHSi8%lO002ovPDHLkV1jsmFK7S& literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json new file mode 100644 index 0000000000..d31b77623a --- /dev/null +++ b/Resources/Textures/Objects/Tools/handdrill.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from goonstation at commit https://github.com/goonstation/goonstation/commit/2ce04dea2495ed19aeca4b6b42bf59fef2b4dd37", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "handdrill" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/building.png b/Resources/Textures/Structures/Machines/ore_processor.rsi/building.png new file mode 100644 index 0000000000000000000000000000000000000000..66c255a5f4efca4331439b28217f78ea902001a8 GIT binary patch literal 1176 zcmZuxeK6a182^S2m5bKQ#zsTwsIyS9VS4dSIPWi8H#b7h+i6OcZRoNjUaIP-mv*CG za9p43BRBHdbhjXZvEqVK6lUa$MgAop68yM;h_N- z{de^N0GL3cZzO`GSD~ka!@ivtIeY3yFL%-xVAI6T@L5=~9Om(=(UF@??rbD?D?B@?dmbRFYh==KgK%A^~se z-rW|k_gvE3%faa7S#(i!z~q)S-MVZ z>1WqB9kwVjbp`8XfOS?Y;#hD|C+3%TdKeieBz_6Q)Hf#p(>cWEKCS=rKQ`uqayvUm zuCO^FMewXWQ8X^dy0CZ7GJeS1Sc6-hjCbhG#;4ttew3;HZksV;9UimNl)b&!9>ol) zNQ`O?O%(UohlX{l|Q*!ZlYdMy+A$8m0C z5Mz9mJ-fRm#Urp`)#Y|*GB&;>W7swXKr_(6*5DT7_c(zWO6tU0!RK>Cbd<^fyfkzz zEPL{&j9bRBQP1Ra&(F2&FunkIG||Z;>VnXy{;qT(*^KOwq_lYyr79J!@fx3t80G>h z-5G6rfA?^L??q9_S9wuGrxCmFB++$9FOHjo(yb{aJ<}9Qf``*U>{z0ql|%7x&Oqs> zDf`#T;bB9TPTa{)d@b6-$*3#3%VCz@e$GR<_bfFBXh%oCAB$N1zkcIsusKWhizs1F z`4_=MASm6wu=8m(0fXU9ZrB|hzun2jW6bl4-pBAR@1B8fFQc7geH}jKo%(4t1`WF8 zf^`m>H1tSARB*SuyDjy8CQMbez%}8}?JzHD3Th;W1AoRx0Txb*Td5L2c@}zS5_ZZ? zEjg$`GFPHq4b9a&{`V$Y!88$7T|ooA@q4Ig`lPPo;W_N+W))K4x?sh<9wNm=n4HhA z>Knx1OgIa-+N-WIM##u+RSKb!JLvw*IF@mA2R=$p=}BkME4SFSw9&1kK@To}r+6kq z$Vex!)KuF6Sk+#&3)86J-s<=Byv$TW(?Y|JFk{L_aSQAN)n*xY*ldUI5=R9;^>tt? z!%}sfX&SP+V3`Jz#sf90Li)AEoCkX-X`j4UqP<-7Ken$cWK28g<%tcIu5sgf;Le^r99WD8X-G6DkYQkDSNEa@y#kIO1uLcDAh5E9+NqK(*^_59t literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/icon.png b/Resources/Textures/Structures/Machines/ore_processor.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..96c40606427117fe4d7868de5af4df83fb823b39 GIT binary patch literal 490 zcmVAk2mM1<2c@** zjD|NZ4HQsIsduM!cfcX)makUH_D2gste4h~Y*>u*9HxghgGf2;9 z%hSUndHZ-DSsRmMxZfvekH_ZUGjcru;=Y?NCvlYA%^GPGAOzoO<9sg!a>z>ik~p5Ol2VdnS&k!E zdqlLH{R+6skDHaQP_2OJba2QXe0{MD`T|b0z&r$7wNmcPz^Bp`@WmPl0L7V0b$fUK zTrCKWB?baQfaMKn!5jpg1*WH=Er6pI&W(_f?gYSBip!DFzpp1>3jnyvg_l3P1#_n$ g6tmBQG$xDU7x+rnFiJ^PwEzGB07*qoM6N<$f_`1iR{#J2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/inserting.png b/Resources/Textures/Structures/Machines/ore_processor.rsi/inserting.png new file mode 100644 index 0000000000000000000000000000000000000000..4f60c78da12cccd71f4066894360337a82e1b0e3 GIT binary patch literal 1859 zcmY*ac{rQ-7XCg#q9)R6tsM<&>?-$it!;u@qPFT-nxYgXXf0)IAxZVNYAG(-W-QeX zwM1yEou=(*f-t-tZ0YFjc>FOMiS+iX0O#C`f zv!5OL_MBdiDZZ)fMPw19FfH|%iiy0MY93;v{GFcAJnv0wX8D26eV0{t>8E+2UUsV= zGgf-7dOv?K&Ir%fSCZGa^S`RBSfzP~wNu^sav&x>J?7!Vy1^VAJ|<>!8JZ?dlagXG z*f_3-oS7;RV*m^+0F@qww^FWh-}HS;7#|1k?@}n1*Wv!F&$ZZTFmGCi>jprSpE419-#dP!0bf;iQUQ7m4^PzEW+z?Fj*U!8^H|} zmY(SEF!!@s66X&3C6~M9>QJxDHD|=~S+H}BGh>_%a)jc9Fq=4Yp{0Sz;czbYE64X* zyO?5aY(CT~*FB7Q_I=w<&Y;1YB!zqy+p>HC{ZzRFn_d^n_$hKee(TZU=bvefsqAmh z#)hDAI+;s&ts2f#!sg@D1QbyWk@mS&lJ%ksCPE~hNs?hUDH@X&GL4!{a^kk$bu+b} zKb}kK_2=n{pKViFrV7GR`7Q)gu7}8QI5N0gKLht`F8Ks^_JA54ccmFMM_C`>8c*`4 ztFqlU1ryd;E#CL;9U4XWEcB0p6SmHHFEkBHHPk$n$=JT&3d=tWi4poGqoP5vhaARV zd+d5wP%tao&f@nyM82=n9OXHt9bNZ5ZeFoZL*AQ-@(6DjyQjXuuR}hQG|yb4HW!6e zVx4&5_Dnaa#_*`6wQt}Fo$$I5O14cybLqyClbOXj*hUAp_(lQs1nEhm)Hq`*)YMw05WVjc&?CtjL{e%L2x@VV{S0w{ees z(hDQcspW=db+m0HB*I&YyeBRXxne(-9BjunQlx@hdhiY6e0<3jctMaM3ul~SCpY$* z9rS=-#F?|co0bpXY*~M$Mdy0aU5Cu}2jjM|xBJAz(^Qi!!4M~YIiuhHEhQA*rTq55 z@7u~}#g44IMXgCZ$q}EAQ3=Lht-J5kqctn}YO~PxGqVB9Z(y~YU@lX482$e0Zdq!45&qVuAD+BsL#f4RZ7p*zi&YG4` zM(TNaG>1<9K>%A{FZ_qX*sQ@~zu5d2MqEmh?$p2ErB*b5hbcB+B!L)0WSenF{%=vs zjk+VjB4nXYkTA;9*;63*Y|!(KA5@#H=f|kAmQH|Ol|9wF5Bbtr(QcT7V1zpa8f*iq z6lx3J9|C7lzi9q-_5K75h-Xm|Z#5{uL)I3ICfqB5LDQ*K6|{i!73#EfGWnzqRCAI- zeW~J}XX+rGx+z$Ij@yRSrbRNCeyeM96^jS$w|;IUg`ywE5iOcv(}xk%QJ)v+h{Y&} zu<@cH#apHIbrWc+Ik5tbv+_HAtMg^ahPJ8|4qJfLPS7rJ(ETP185-C zp{x2hi4u;aR!ySUZZtiDl*ry8*BUAI-h*ghBzYP6WZ^@VUh)({BjB<7V8fENfz)#|hJaOk)cRD2R}e*?A!Gqk)m z_FmzYm97tk3i{F#)NC!;9iPgsz;6=gZQp-LYE7V4(6J6^F(&F=_9eADYp!vYPo&OD zQY9S;%-a{c!TaFjX%1Fqld+gA(cpoL>r$}Y5+Hg_bP;c#6F}e@(W(QE{ohMa&a|;G zOFo;2BGzgdZ37syNYF0?x6ry7myL| za$Uvpe>uBXaa1iC_@Jyv1{`=m#@$vMUJ}5QM^**!tvKOP6+;{=WSiQM_QQ07ssz@9 zSjwT0bC?k5xe&k}H&}xk+|dw;;ubcmN+7UpEvzcm<&;R2!grM=H{diVlV&iWZm0l} zow_$255cZtaR1A2yfQ~&?~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/meta.json b/Resources/Textures/Structures/Machines/ore_processor.rsi/meta.json new file mode 100644 index 0000000000..c821ed3075 --- /dev/null +++ b/Resources/Textures/Structures/Machines/ore_processor.rsi/meta.json @@ -0,0 +1,50 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2b7f2c42f1bd57497052e8ef593d5e05ea45208e and edited by HoofedEar", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inserting", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 5 + ] + ] + }, + { + "name": "building", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "icon" + }, + { + "name": "panel" + }, + { + "name": "unlit" + }, + ] +} \ No newline at end of file diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/panel.png b/Resources/Textures/Structures/Machines/ore_processor.rsi/panel.png new file mode 100644 index 0000000000000000000000000000000000000000..bcade0fb5426398e441f430b1e0cce6a52f302aa GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}i#%N%Ln2y} z6C_v{Cy4Yk1sZU<9rR%D*5|5)85vI*#N^7_{+utDT*m#{$N&gz zxF07~h#fn6;Lu?|d3KPgTe~DWM4f4fj)_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/Structures/Machines/ore_processor.rsi/unlit.png b/Resources/Textures/Structures/Machines/ore_processor.rsi/unlit.png new file mode 100644 index 0000000000000000000000000000000000000000..7e824815e146b3b35666c2e7a23402f38b117d5b GIT binary patch literal 194 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}HJ&bxArY-_ zFBo#Q7zngJynj@wG3J2U17025LvlBjb6)Z?Wfn0yTCe3<{kP%4?^%foDff6fIyz3= zHVu>Ke_YO9V7Fnd_gaR}`KyZU!x$NU>1|qjdg;BHtOa%xyx0_`##BE){4_RO^ufMD rt(p6}O{Y{g6u)@+Ur9;nlLouvZuM%-NzcQ9?qKkA^>bP0l+XkKi@`}I literal 0 HcmV?d00001