Makes machine parts stackable, removes unused field in stack prototypes (#28434)

* Makes machine parts stacks, removes unused field in stack prototypes

* forgor

* Fix tests

* Fixes lathe construction. Yes. This sucks but there's no better way that doesnt involve refactoring machine parts completely

* detail

* a
This commit is contained in:
AJCM-git
2024-06-01 13:49:28 -04:00
committed by GitHub
parent a29b6a6894
commit 09256cfaa5
22 changed files with 88 additions and 168 deletions

View File

@@ -103,7 +103,7 @@ public sealed class MaterialArbitrageTest
continue; continue;
var stackProto = protoManager.Index<StackPrototype>(materialStep.MaterialPrototypeId); var stackProto = protoManager.Index<StackPrototype>(materialStep.MaterialPrototypeId);
var spawnProto = protoManager.Index<EntityPrototype>(stackProto.Spawn); var spawnProto = protoManager.Index(stackProto.Spawn);
if (!spawnProto.Components.ContainsKey(materialName) || if (!spawnProto.Components.ContainsKey(materialName) ||
!spawnProto.Components.TryGetValue(compositionName, out var compositionReg)) !spawnProto.Components.TryGetValue(compositionName, out var compositionReg))

View File

@@ -59,23 +59,27 @@ public sealed class MachineFrameSystem : EntitySystem
return; return;
} }
// Machine parts cannot currently satisfy stack/component/tag restrictions. Similarly stacks cannot satisfy // If this changes in the future, then RegenerateProgress() also needs to be updated.
// component/tag restrictions. However, there is no reason this cannot be supported in the future. If this
// changes, then RegenerateProgress() also needs to be updated.
//
// Note that one entity is ALLOWED to satisfy more than one kind of component or tag requirements. This is // Note that one entity is ALLOWED to satisfy more than one kind of component or tag requirements. This is
// necessary in order to avoid weird entity-ordering shenanigans in RegenerateProgress(). // necessary in order to avoid weird entity-ordering shenanigans in RegenerateProgress().
var stack = CompOrNull<StackComponent>(args.Used);
var machinePart = CompOrNull<MachinePartComponent>(args.Used);
if (stack != null && machinePart != null)
{
if (TryInsertPartStack(uid, args.Used, component, machinePart, stack))
args.Handled = true;
return;
}
// Handle parts // Handle parts
if (TryComp<MachinePartComponent>(args.Used, out var machinePart)) if (machinePart != null)
{ {
if (TryInsertPart(uid, args.Used, component, machinePart)) if (TryInsertPart(uid, args.Used, component, machinePart))
args.Handled = true; args.Handled = true;
return; return;
} }
// Handle stacks if (stack != null)
if (TryComp<StackComponent>(args.Used, out var stack))
{ {
if (TryInsertStack(uid, args.Used, component, stack)) if (TryInsertStack(uid, args.Used, component, stack))
args.Handled = true; args.Handled = true;
@@ -191,6 +195,44 @@ public sealed class MachineFrameSystem : EntitySystem
return true; return true;
} }
/// <returns>Whether or not the function had any effect. Does not indicate success.</returns>
private bool TryInsertPartStack(EntityUid uid, EntityUid used, MachineFrameComponent component, MachinePartComponent machinePart, StackComponent stack)
{
if (!component.Requirements.ContainsKey(machinePart.PartType))
return false;
var progress = component.Progress[machinePart.PartType];
var requirement = component.Requirements[machinePart.PartType];
var needed = requirement - progress;
if (needed <= 0)
return false;
var count = stack.Count;
if (count < needed)
{
if (!_container.Insert(used, component.PartContainer))
return true;
component.Progress[machinePart.PartType] += count;
return true;
}
var splitStack = _stack.Split(used, needed, Transform(uid).Coordinates, stack);
if (splitStack == null)
return false;
if (!_container.Insert(splitStack.Value, component.PartContainer))
return true;
component.Progress[machinePart.PartType] += needed;
if (IsComplete(component))
_popupSystem.PopupEntity(Loc.GetString("machine-frame-component-on-complete"), uid);
return true;
}
/// <returns>Whether or not the function had any effect. Does not indicate success.</returns> /// <returns>Whether or not the function had any effect. Does not indicate success.</returns>
private bool TryInsertStack(EntityUid uid, EntityUid used, MachineFrameComponent component, StackComponent stack) private bool TryInsertStack(EntityUid uid, EntityUid used, MachineFrameComponent component, StackComponent stack)
{ {
@@ -328,8 +370,6 @@ public sealed class MachineFrameSystem : EntitySystem
{ {
if (TryComp<MachinePartComponent>(part, out var machinePart)) if (TryComp<MachinePartComponent>(part, out var machinePart))
{ {
DebugTools.Assert(!HasComp<StackComponent>(part));
// Check this is part of the requirements... // Check this is part of the requirements...
if (!component.Requirements.ContainsKey(machinePart.PartType)) if (!component.Requirements.ContainsKey(machinePart.PartType))
continue; continue;
@@ -338,7 +378,6 @@ public sealed class MachineFrameSystem : EntitySystem
component.Progress[machinePart.PartType] = 1; component.Progress[machinePart.PartType] = 1;
else else
component.Progress[machinePart.PartType]++; component.Progress[machinePart.PartType]++;
continue; continue;
} }

View File

@@ -51,7 +51,7 @@ namespace Content.Server.Stack
// Get a prototype ID to spawn the new entity. Null is also valid, although it should rarely be picked... // Get a prototype ID to spawn the new entity. Null is also valid, although it should rarely be picked...
var prototype = _prototypeManager.TryIndex<StackPrototype>(stack.StackTypeId, out var stackType) var prototype = _prototypeManager.TryIndex<StackPrototype>(stack.StackTypeId, out var stackType)
? stackType.Spawn ? stackType.Spawn.ToString()
: Prototype(uid)?.ID; : Prototype(uid)?.ID;
// Set the output parameter in the event instance to the newly split stack. // Set the output parameter in the event instance to the newly split stack.

View File

@@ -87,9 +87,9 @@ namespace Content.Shared.Construction
foreach (var (stackId, amount) in comp.MaterialIdRequirements) foreach (var (stackId, amount) in comp.MaterialIdRequirements)
{ {
var stackProto = _prototype.Index<StackPrototype>(stackId); var stackProto = _prototype.Index<StackPrototype>(stackId);
var defaultProto = _prototype.Index(stackProto.Spawn);
if (_prototype.TryIndex(stackProto.Spawn, out var defaultProto) && if (defaultProto.TryGetComponent<PhysicalCompositionComponent>(out var physComp))
defaultProto.TryGetComponent<PhysicalCompositionComponent>(out var physComp))
{ {
foreach (var (mat, matAmount) in physComp.MaterialComposition) foreach (var (mat, matAmount) in physComp.MaterialComposition)
{ {

View File

@@ -29,7 +29,7 @@ namespace Content.Shared.Materials
/// include which stack we should spawn by default. /// include which stack we should spawn by default.
/// </summary> /// </summary>
[DataField] [DataField]
public ProtoId<EntityPrototype>? StackEntity; public EntProtoId? StackEntity;
[DataField] [DataField]
public string Name = string.Empty; public string Name = string.Empty;

View File

@@ -4,7 +4,7 @@ using Robust.Shared.Utility;
namespace Content.Shared.Stacks; namespace Content.Shared.Stacks;
[Prototype("stack")] [Prototype]
public sealed partial class StackPrototype : IPrototype public sealed partial class StackPrototype : IPrototype
{ {
[ViewVariables] [ViewVariables]
@@ -15,33 +15,26 @@ public sealed partial class StackPrototype : IPrototype
/// Human-readable name for this stack type e.g. "Steel" /// Human-readable name for this stack type e.g. "Steel"
/// </summary> /// </summary>
/// <remarks>This is a localization string ID.</remarks> /// <remarks>This is a localization string ID.</remarks>
[DataField("name")] [DataField]
public string Name { get; private set; } = string.Empty; public string Name { get; private set; } = string.Empty;
/// <summary> /// <summary>
/// An icon that will be used to represent this stack type. /// An icon that will be used to represent this stack type.
/// </summary> /// </summary>
[DataField("icon")] [DataField]
public SpriteSpecifier? Icon { get; private set; } public SpriteSpecifier? Icon { get; private set; }
/// <summary> /// <summary>
/// The entity id that will be spawned by default from this stack. /// The entity id that will be spawned by default from this stack.
/// </summary> /// </summary>
[DataField("spawn", required: true, customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))] [DataField(required: true)]
public string Spawn { get; private set; } = string.Empty; public EntProtoId Spawn { get; private set; } = string.Empty;
/// <summary> /// <summary>
/// The maximum amount of things that can be in a stack. /// The maximum amount of things that can be in a stack.
/// Can be overriden on <see cref="StackComponent"/> /// Can be overriden on <see cref="StackComponent"/>
/// if null, simply has unlimited max count. /// if null, simply has unlimited max count.
/// </summary> /// </summary>
[DataField("maxCount")] [DataField]
public int? MaxCount { get; private set; } public int? MaxCount { get; private set; }
/// <summary>
/// The size of an individual unit of this stack.
/// </summary>
[DataField("itemSize")]
public int? ItemSize;
} }

View File

@@ -9,6 +9,8 @@
sprite: Objects/Misc/stock_parts.rsi sprite: Objects/Misc/stock_parts.rsi
- type: Item - type: Item
size: Tiny size: Tiny
- type: Stack
count: 1
- type: entity - type: entity
id: CapacitorStockPart id: CapacitorStockPart
@@ -25,6 +27,8 @@
- type: Tag - type: Tag
tags: tags:
- CapacitorStockPart - CapacitorStockPart
- type: Stack
stackType: Capacitor
- type: entity - type: entity
id: MicroManipulatorStockPart id: MicroManipulatorStockPart
@@ -38,6 +42,8 @@
- type: MachinePart - type: MachinePart
part: Manipulator part: Manipulator
rating: 1 rating: 1
- type: Stack
stackType: MicroManipulator
- type: entity - type: entity
id: MatterBinStockPart id: MatterBinStockPart
@@ -51,3 +57,5 @@
- type: MachinePart - type: MachinePart
part: MatterBin part: MatterBin
rating: 1 rating: 1
- type: Stack
stackType: MatterBin

View File

@@ -7,7 +7,6 @@
state: extraction_pack state: extraction_pack
spawn: Fulton1 spawn: Fulton1
maxCount: 10 maxCount: 10
itemSize: 2
# Entities # Entities
- type: entity - type: entity

View File

@@ -4,7 +4,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: glass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: glass }
spawn: SheetGlass1 spawn: SheetGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: ReinforcedGlass id: ReinforcedGlass
@@ -12,7 +11,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rglass }
spawn: SheetRGlass1 spawn: SheetRGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: PlasmaGlass id: PlasmaGlass
@@ -20,7 +18,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: pglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: pglass }
spawn: SheetPGlass1 spawn: SheetPGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: ReinforcedPlasmaGlass id: ReinforcedPlasmaGlass
@@ -28,7 +25,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rpglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: rpglass }
spawn: SheetRPGlass1 spawn: SheetRPGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: UraniumGlass id: UraniumGlass
@@ -36,7 +32,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: uglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: uglass }
spawn: SheetUGlass1 spawn: SheetUGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: ReinforcedUraniumGlass id: ReinforcedUraniumGlass
@@ -44,7 +39,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: ruglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: ruglass }
spawn: SheetRUGlass1 spawn: SheetRUGlass1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: ClockworkGlass id: ClockworkGlass
@@ -52,4 +46,3 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: cglass } icon: { sprite: /Textures/Objects/Materials/Sheets/glass.rsi, state: cglass }
spawn: SheetClockworkGlass1 spawn: SheetClockworkGlass1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: steel } icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: steel }
spawn: SheetSteel1 spawn: SheetSteel1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Plasteel id: Plasteel
@@ -12,7 +11,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: plasteel } icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: plasteel }
spawn: SheetPlasteel1 spawn: SheetPlasteel1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Brass id: Brass
@@ -20,4 +18,3 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: brass } icon: { sprite: /Textures/Objects/Materials/Sheets/metal.rsi, state: brass }
spawn: SheetBrass1 spawn: SheetBrass1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: paper } icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: paper }
spawn: SheetPaper1 spawn: SheetPaper1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Plasma id: Plasma
@@ -12,7 +11,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plasma } icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plasma }
spawn: SheetPlasma1 spawn: SheetPlasma1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Plastic id: Plastic
@@ -20,7 +18,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plastic } icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: plastic }
spawn: SheetPlastic1 spawn: SheetPlastic1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Uranium id: Uranium
@@ -28,4 +25,3 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: uranium } icon: { sprite: /Textures/Objects/Materials/Sheets/other.rsi, state: uranium }
spawn: SheetUranium1 spawn: SheetUranium1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -3,4 +3,3 @@
name: telecrystal name: telecrystal
icon: Objects/Specific/Syndicate/telecrystal.rsi icon: Objects/Specific/Syndicate/telecrystal.rsi
spawn: Telecrystal1 spawn: Telecrystal1
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: gold } icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: gold }
spawn: IngotGold1 spawn: IngotGold1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Silver id: Silver
@@ -12,4 +11,3 @@
icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: silver } icon: { sprite: "/Textures/Objects/Materials/ingots.rsi", state: silver }
spawn: IngotSilver1 spawn: IngotSilver1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube } icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube }
spawn: MaterialBiomass1 spawn: MaterialBiomass1
maxCount: 100 maxCount: 100
itemSize: 1
- type: stack - type: stack
id: WoodPlank id: WoodPlank
@@ -12,7 +11,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: wood } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: wood }
spawn: MaterialWoodPlank1 spawn: MaterialWoodPlank1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Cardboard id: Cardboard
@@ -20,7 +18,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cardboard } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cardboard }
spawn: MaterialCardboard1 spawn: MaterialCardboard1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Cloth id: Cloth
@@ -28,7 +25,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth }
spawn: MaterialCloth1 spawn: MaterialCloth1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Durathread id: Durathread
@@ -36,7 +32,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread }
spawn: MaterialDurathread1 spawn: MaterialDurathread1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Diamond id: Diamond
@@ -44,7 +39,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: diamond } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: diamond }
spawn: MaterialDiamond1 spawn: MaterialDiamond1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: Cotton id: Cotton
@@ -52,7 +46,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cotton } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cotton }
spawn: MaterialCotton1 spawn: MaterialCotton1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Pyrotton id: Pyrotton
@@ -60,7 +53,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: pyrotton } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: pyrotton }
spawn: MaterialPyrotton1 spawn: MaterialPyrotton1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Bananium id: Bananium
@@ -68,7 +60,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium } icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium }
spawn: MaterialBananium1 spawn: MaterialBananium1
maxCount: 10 maxCount: 10
itemSize: 2
- type: stack - type: stack
id: MeatSheets id: MeatSheets
@@ -76,7 +67,6 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/meaterial.rsi, state: meat } icon: { sprite: /Textures/Objects/Materials/Sheets/meaterial.rsi, state: meat }
spawn: MaterialSheetMeat1 spawn: MaterialSheetMeat1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: WebSilk id: WebSilk
@@ -84,7 +74,6 @@
icon: { sprite: /Textures/Objects/Materials/silk.rsi, state: icon } icon: { sprite: /Textures/Objects/Materials/silk.rsi, state: icon }
spawn: MaterialWebSilk1 spawn: MaterialWebSilk1
maxCount: 50 maxCount: 50
itemSize: 1
- type: stack - type: stack
id: Bones id: Bones
@@ -92,7 +81,6 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bones} icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bones}
spawn: MaterialBones1 spawn: MaterialBones1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: Gunpowder id: Gunpowder
@@ -100,4 +88,3 @@
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile } icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
spawn: MaterialGunpowder spawn: MaterialGunpowder
maxCount: 60 maxCount: 60
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: gold } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: gold }
spawn: GoldOre1 spawn: GoldOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: SteelOre id: SteelOre
@@ -12,7 +11,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: iron } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: iron }
spawn: SteelOre1 spawn: SteelOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: PlasmaOre id: PlasmaOre
@@ -20,7 +18,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: plasma } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: plasma }
spawn: PlasmaOre1 spawn: PlasmaOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: SilverOre id: SilverOre
@@ -28,7 +25,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: silver } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: silver }
spawn: SilverOre1 spawn: SilverOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: SpaceQuartz id: SpaceQuartz
@@ -36,7 +32,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: spacequartz } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: spacequartz }
spawn: SpaceQuartz1 spawn: SpaceQuartz1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: UraniumOre id: UraniumOre
@@ -44,7 +39,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: uranium } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: uranium }
spawn: UraniumOre1 spawn: UraniumOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
@@ -53,7 +47,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: bananium } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: bananium }
spawn: BananiumOre1 spawn: BananiumOre1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: Coal id: Coal
@@ -61,7 +54,6 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: coal } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: coal }
spawn: Coal1 spawn: Coal1
maxCount: 30 maxCount: 30
itemSize: 2
- type: stack - type: stack
id: SaltOre id: SaltOre
@@ -69,4 +61,3 @@
icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: salt } icon: { sprite: /Textures/Objects/Materials/ore.rsi, state: salt }
spawn: Salt1 spawn: Salt1
maxCount: 30 maxCount: 30
itemSize: 2

View File

@@ -4,4 +4,3 @@
icon: { sprite: /Textures/Objects/Materials/parts.rsi, state: rods } icon: { sprite: /Textures/Objects/Materials/parts.rsi, state: rods }
spawn: PartRodMetal1 spawn: PartRodMetal1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -5,7 +5,6 @@
name: pancake name: pancake
spawn: FoodBakedPancake spawn: FoodBakedPancake
maxCount: 3 maxCount: 3
itemSize: 1
# Food Containers # Food Containers
@@ -15,7 +14,6 @@
icon: { sprite: Objects/Consumable/Food/Baked/pizza.rsi, state: box } icon: { sprite: Objects/Consumable/Food/Baked/pizza.rsi, state: box }
spawn: FoodBoxPizza spawn: FoodBoxPizza
maxCount: 30 maxCount: 30
itemSize: 10
# Smokeables # Smokeables
@@ -25,7 +23,6 @@
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigpaper } icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigpaper }
spawn: PaperRolling spawn: PaperRolling
maxCount: 5 maxCount: 5
itemSize: 1
- type: stack - type: stack
id: CigaretteFilter id: CigaretteFilter
@@ -33,7 +30,6 @@
icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigfilter } icon: { sprite: /Textures/Objects/Consumable/Smokeables/Cigarettes/paper.rsi, state: cigfilter }
spawn: CigaretteFilter spawn: CigaretteFilter
maxCount: 5 maxCount: 5
itemSize: 2
- type: stack - type: stack
id: GroundTobacco id: GroundTobacco
@@ -41,7 +37,6 @@
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile } icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
spawn: GroundTobacco spawn: GroundTobacco
maxCount: 5 maxCount: 5
itemSize: 1
- type: stack - type: stack
id: GroundCannabis id: GroundCannabis
@@ -49,7 +44,6 @@
icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile } icon: { sprite: /Textures/Objects/Misc/reagent_fillings.rsi, state: powderpile }
spawn: GroundCannabis spawn: GroundCannabis
maxCount: maxCount:
itemSize: 1
- type: stack - type: stack
id: GroundCannabisRainbow id: GroundCannabisRainbow
@@ -57,7 +51,6 @@
icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: powderpile_rainbow } icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: powderpile_rainbow }
spawn: GroundCannabisRainbow spawn: GroundCannabisRainbow
maxCount: maxCount:
itemSize: 1
- type: stack - type: stack
id: LeavesTobaccoDried id: LeavesTobaccoDried
@@ -65,7 +58,6 @@
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried } icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
spawn: LeavesTobaccoDried spawn: LeavesTobaccoDried
maxCount: 5 maxCount: 5
itemSize: 5
- type: stack - type: stack
id: LeavesCannabisDried id: LeavesCannabisDried
@@ -73,12 +65,9 @@
icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried } icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried }
spawn: LeavesCannabisDried spawn: LeavesCannabisDried
maxCount: 5 maxCount: 5
itemSize: 5
- type: stack - type: stack
id: LeavesCannabisRainbowDried id: LeavesCannabisRainbowDried
name: dried rainbow cannabis leaves name: dried rainbow cannabis leaves
icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: dried } icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: dried }
spawn: LeavesCannabisRainbowDried spawn: LeavesCannabisRainbowDried
maxCount: 5
itemSize: 5

View File

@@ -4,11 +4,9 @@
name: inflatable wall name: inflatable wall
spawn: InflatableWallStack1 spawn: InflatableWallStack1
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: InflatableDoor id: InflatableDoor
name: inflatable door name: inflatable door
spawn: InflatableDoorStack1 spawn: InflatableDoorStack1
maxCount: 4 maxCount: 4
itemSize: 1

View File

@@ -3,469 +3,402 @@
name: steel tile name: steel tile
spawn: FloorTileItemSteel spawn: FloorTileItemSteel
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMetalDiamond id: FloorTileMetalDiamond
name: steel tile name: steel tile
spawn: FloorTileItemMetalDiamond spawn: FloorTileItemMetalDiamond
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileWood id: FloorTileWood
name: wood floor name: wood floor
spawn: FloorTileItemWood spawn: FloorTileItemWood
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileWhite id: FloorTileWhite
name: white tile name: white tile
spawn: FloorTileItemWhite spawn: FloorTileItemWhite
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileDark id: FloorTileDark
name: dark tile name: dark tile
spawn: FloorTileItemDark spawn: FloorTileItemDark
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileTechmaint id: FloorTileTechmaint
name: techmaint floor name: techmaint floor
spawn: FloorTileItemTechmaint spawn: FloorTileItemTechmaint
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileFreezer id: FloorTileFreezer
name: freezer tile name: freezer tile
spawn: FloorTileItemFreezer spawn: FloorTileItemFreezer
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileShowroom id: FloorTileShowroom
name: showroom tile name: showroom tile
spawn: FloorTileItemShowroom spawn: FloorTileItemShowroom
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGCircuit id: FloorTileGCircuit
name: green-circuit floor name: green-circuit floor
spawn: FloorTileItemGCircuit spawn: FloorTileItemGCircuit
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGold id: FloorTileGold
name: gold floor name: gold floor
spawn: FloorTileItemGold spawn: FloorTileItemGold
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileReinforced id: FloorTileReinforced
name: reinforced tile name: reinforced tile
spawn: FloorTileItemReinforced spawn: FloorTileItemReinforced
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMono id: FloorTileMono
name: mono tile name: mono tile
spawn: FloorTileItemMono spawn: FloorTileItemMono
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileBrassFilled id: FloorTileBrassFilled
name: filled brass plate name: filled brass plate
spawn: FloorTileItemBrassFilled spawn: FloorTileItemBrassFilled
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileBrassReebe id: FloorTileBrassReebe
name: smooth brass plate name: smooth brass plate
spawn: FloorTileItemBrassReebe spawn: FloorTileItemBrassReebe
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileLino id: FloorTileLino
name: linoleum floor name: linoleum floor
spawn: FloorTileItemLino spawn: FloorTileItemLino
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileHydro id: FloorTileHydro
name: hydro tile name: hydro tile
spawn: FloorTileItemHydro spawn: FloorTileItemHydro
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileLime id: FloorTileLime
name: lime tile name: lime tile
spawn: FloorTileItemLime spawn: FloorTileItemLime
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileDirty id: FloorTileDirty
name: dirty tile name: dirty tile
spawn: FloorTileItemDirty spawn: FloorTileItemDirty
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleWhite id: FloorTileStackShuttleWhite
name: white shuttle tile name: white shuttle tile
spawn: FloorTileItemShuttleWhite spawn: FloorTileItemShuttleWhite
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleBlue id: FloorTileStackShuttleBlue
name: blue shuttle tile name: blue shuttle tile
spawn: FloorTileItemShuttleBlue spawn: FloorTileItemShuttleBlue
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleOrange id: FloorTileStackShuttleOrange
name: orange shuttle tile name: orange shuttle tile
spawn: FloorTileItemShuttleOrange spawn: FloorTileItemShuttleOrange
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttlePurple id: FloorTileStackShuttlePurple
name: purple shuttle tile name: purple shuttle tile
spawn: FloorTileItemShuttlePurple spawn: FloorTileItemShuttlePurple
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleRed id: FloorTileStackShuttleRed
name: red shuttle tile name: red shuttle tile
spawn: FloorTileItemShuttleRed spawn: FloorTileItemShuttleRed
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleGrey id: FloorTileStackShuttleGrey
name: grey shuttle tile name: grey shuttle tile
spawn: FloorTileItemShuttleGrey spawn: FloorTileItemShuttleGrey
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackShuttleBlack id: FloorTileStackShuttleBlack
name: black shuttle tile name: black shuttle tile
spawn: FloorTileItemShuttleBlack spawn: FloorTileItemShuttleBlack
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackEighties id: FloorTileStackEighties
name: eighties floor tile name: eighties floor tile
spawn: FloorTileItemEighties spawn: FloorTileItemEighties
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackArcadeBlue id: FloorTileStackArcadeBlue
name: blue arcade tile name: blue arcade tile
spawn: FloorTileItemArcadeBlue spawn: FloorTileItemArcadeBlue
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackArcadeBlue2 id: FloorTileStackArcadeBlue2
name: blue arcade tile name: blue arcade tile
spawn: FloorTileItemArcadeBlue2 spawn: FloorTileItemArcadeBlue2
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackArcadeRed id: FloorTileStackArcadeRed
name: red arcade tile name: red arcade tile
spawn: FloorTileItemArcadeRed spawn: FloorTileItemArcadeRed
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetRed id: FloorCarpetRed
name: red carpet tile name: red carpet tile
spawn: FloorCarpetItemRed spawn: FloorCarpetItemRed
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetBlack id: FloorCarpetBlack
name: block carpet tile name: block carpet tile
spawn: FloorCarpetItemBlack spawn: FloorCarpetItemBlack
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetBlue id: FloorCarpetBlue
name: blue carpet tile name: blue carpet tile
spawn: FloorCarpetItemBlue spawn: FloorCarpetItemBlue
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetGreen id: FloorCarpetGreen
name: green carpet tile name: green carpet tile
spawn: FloorCarpetItemGreen spawn: FloorCarpetItemGreen
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetOrange id: FloorCarpetOrange
name: orange carpet tile name: orange carpet tile
spawn: FloorCarpetItemOrange spawn: FloorCarpetItemOrange
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetSkyBlue id: FloorCarpetSkyBlue
name: skyblue carpet tile name: skyblue carpet tile
spawn: FloorCarpetItemSkyBlue spawn: FloorCarpetItemSkyBlue
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetPurple id: FloorCarpetPurple
name: purple carpet tile name: purple carpet tile
spawn: FloorCarpetItemPurple spawn: FloorCarpetItemPurple
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetPink id: FloorCarpetPink
name: pink carpet tile name: pink carpet tile
spawn: FloorCarpetItemPink spawn: FloorCarpetItemPink
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetCyan id: FloorCarpetCyan
name: cyan carpet tile name: cyan carpet tile
spawn: FloorCarpetItemCyan spawn: FloorCarpetItemCyan
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorCarpetWhite id: FloorCarpetWhite
name: white carpet tile name: white carpet tile
spawn: FloorCarpetItemWhite spawn: FloorCarpetItemWhite
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackCarpetClown id: FloorTileStackCarpetClown
name: clown carpet tile name: clown carpet tile
spawn: FloorTileItemCarpetClown spawn: FloorTileItemCarpetClown
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackCarpetOffice id: FloorTileStackCarpetOffice
name: office carpet tile name: office carpet tile
spawn: FloorTileItemCarpetOffice spawn: FloorTileItemCarpetOffice
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackBoxing id: FloorTileStackBoxing
name: boxing ring tile name: boxing ring tile
spawn: FloorTileItemBoxing spawn: FloorTileItemBoxing
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileStackGym id: FloorTileStackGym
name: gym floor tile name: gym floor tile
spawn: FloorTileItemGym spawn: FloorTileItemGym
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileElevatorShaft id: FloorTileElevatorShaft
name: elevator shaft tile name: elevator shaft tile
spawn: FloorTileItemElevatorShaft spawn: FloorTileItemElevatorShaft
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileRockVault id: FloorTileRockVault
name: rock vault tile name: rock vault tile
spawn: FloorTileItemRockVault spawn: FloorTileItemRockVault
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileBlue id: FloorTileBlue
name: blue floor tile name: blue floor tile
spawn: FloorTileItemBlue spawn: FloorTileItemBlue
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMining id: FloorTileMining
name: mining floor tile name: mining floor tile
spawn: FloorTileItemMining spawn: FloorTileItemMining
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMiningDark id: FloorTileMiningDark
name: dark mining floor tile name: dark mining floor tile
spawn: FloorTileItemMiningDark spawn: FloorTileItemMiningDark
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMiningLight id: FloorTileMiningLight
name: light mining floor tile name: light mining floor tile
spawn: FloorTileItemMiningLight spawn: FloorTileItemMiningLight
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileBar id: FloorTileBar
name: item bar floor tile name: item bar floor tile
spawn: FloorTileItemBar spawn: FloorTileItemBar
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileClown id: FloorTileClown
name: clown floor tile name: clown floor tile
spawn: FloorTileItemClown spawn: FloorTileItemClown
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMime id: FloorTileMime
name: mime floor tile name: mime floor tile
spawn: FloorTileItemMime spawn: FloorTileItemMime
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileKitchen id: FloorTileKitchen
name: kitchen floor tile name: kitchen floor tile
spawn: FloorTileItemKitchen spawn: FloorTileItemKitchen
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileLaundry id: FloorTileLaundry
name: laundry floor tile name: laundry floor tile
spawn: FloorTileItemLaundry spawn: FloorTileItemLaundry
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileConcrete id: FloorTileConcrete
name: concrete tile name: concrete tile
spawn: FloorTileItemGrayConcrete spawn: FloorTileItemGrayConcrete
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGrayConcrete id: FloorTileGrayConcrete
name: gray concrete tile name: gray concrete tile
spawn: FloorTileItemLaundry spawn: FloorTileItemLaundry
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileOldConcrete id: FloorTileOldConcrete
name: old concrete tile name: old concrete tile
spawn: FloorTileItemOldConcrete spawn: FloorTileItemOldConcrete
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileSilver id: FloorTileSilver
name: silver floor tile name: silver floor tile
spawn: FloorTileItemSilver spawn: FloorTileItemSilver
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileBCircuit id: FloorTileBCircuit
name: bcircuit floor tile name: bcircuit floor tile
spawn: FloorTileItemBCircuit spawn: FloorTileItemBCircuit
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGrass id: FloorTileGrass
name: grass floor tile name: grass floor tile
spawn: FloorTileItemGrass spawn: FloorTileItemGrass
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGrassJungle id: FloorTileGrassJungle
name: grass jungle floor tile name: grass jungle floor tile
spawn: FloorTileItemGrassJungle spawn: FloorTileItemGrassJungle
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileSnow id: FloorTileSnow
name: snow floor tile name: snow floor tile
spawn: FloorTileItemSnow spawn: FloorTileItemSnow
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileWoodPattern id: FloorTileWoodPattern
name: wood pattern floor name: wood pattern floor
spawn: FloorTileItemWoodPattern spawn: FloorTileItemWoodPattern
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileFlesh id: FloorTileFlesh
name: flesh floor name: flesh floor
spawn: FloorTileItemFlesh spawn: FloorTileItemFlesh
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileSteelMaint id: FloorTileSteelMaint
name: steel maint floor name: steel maint floor
spawn: FloorTileItemSteelMaint spawn: FloorTileItemSteelMaint
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileGratingMaint id: FloorTileGratingMaint
name: grating maint floor name: grating maint floor
spawn: FloorTileItemGratingMaint spawn: FloorTileItemGratingMaint
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileWeb id: FloorTileWeb
name: web tile name: web tile
spawn: FloorTileItemWeb spawn: FloorTileItemWeb
maxCount: 30 maxCount: 30
itemSize: 5
# Faux science tiles # Faux science tiles
- type: stack - type: stack
@@ -473,35 +406,30 @@
name: astro-grass floor name: astro-grass floor
spawn: FloorTileItemAstroGrass spawn: FloorTileItemAstroGrass
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileMowedAstroGrass id: FloorTileMowedAstroGrass
name: mowed astro-grass floor name: mowed astro-grass floor
spawn: FloorTileItemMowedAstroGrass spawn: FloorTileItemMowedAstroGrass
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileJungleAstroGrass id: FloorTileJungleAstroGrass
name: jungle astro-grass floor name: jungle astro-grass floor
spawn: FloorTileItemJungleAstroGrass spawn: FloorTileItemJungleAstroGrass
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileAstroIce id: FloorTileAstroIce
name: astro-ice floor name: astro-ice floor
spawn: FloorTileItemAstroIce spawn: FloorTileItemAstroIce
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileAstroSnow id: FloorTileAstroSnow
name: astro-snow floor name: astro-snow floor
spawn: FloorTileItemAstroSnow spawn: FloorTileItemAstroSnow
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack - type: stack
id: FloorTileWoodLarge id: FloorTileWoodLarge

View File

@@ -4,7 +4,6 @@
icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: ointment } icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: ointment }
spawn: Ointment spawn: Ointment
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: AloeCream id: AloeCream
@@ -12,7 +11,6 @@
icon: { sprite: "/Textures/Objects/Specific/Hydroponics/aloe.rsi", state: cream } icon: { sprite: "/Textures/Objects/Specific/Hydroponics/aloe.rsi", state: cream }
spawn: AloeCream spawn: AloeCream
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: Gauze id: Gauze
@@ -20,7 +18,6 @@
icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: gauze } icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: gauze }
spawn: Gauze spawn: Gauze
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: Brutepack id: Brutepack
@@ -28,7 +25,6 @@
icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: gauze } icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: gauze }
spawn: Brutepack spawn: Brutepack
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: Bloodpack id: Bloodpack
@@ -36,7 +32,6 @@
icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: bloodpack } icon: { sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: bloodpack }
spawn: Bloodpack spawn: Bloodpack
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: MedicatedSuture id: MedicatedSuture
@@ -44,7 +39,6 @@
icon: {sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: medicated-suture } icon: {sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: medicated-suture }
spawn: MedicatedSuture spawn: MedicatedSuture
maxCount: 10 maxCount: 10
itemSize: 1
- type: stack - type: stack
id: RegenerativeMesh id: RegenerativeMesh
@@ -52,6 +46,4 @@
icon: {sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: regenerative-mesh} icon: {sprite: "/Textures/Objects/Specific/Medical/medical.rsi", state: regenerative-mesh}
spawn: RegenerativeMesh spawn: RegenerativeMesh
maxCount: 10 maxCount: 10
itemSize: 1

View File

@@ -4,7 +4,6 @@
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coil-30 } icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coil-30 }
spawn: CableApcStack1 spawn: CableApcStack1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: CableMV id: CableMV
@@ -12,7 +11,6 @@
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilmv-30 } icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilmv-30 }
spawn: CableMVStack1 spawn: CableMVStack1
maxCount: 30 maxCount: 30
itemSize: 1
- type: stack - type: stack
id: CableHV id: CableHV
@@ -20,4 +18,3 @@
icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilhv-30 } icon: { sprite: "/Textures/Objects/Tools/cable-coils.rsi", state: coilhv-30 }
spawn: CableHVStack1 spawn: CableHVStack1
maxCount: 30 maxCount: 30
itemSize: 1

View File

@@ -3,4 +3,21 @@
name: artifact fragment name: artifact fragment
spawn: ArtifactFragment1 spawn: ArtifactFragment1
maxCount: 30 maxCount: 30
itemSize: 5
- type: stack
id: Capacitor
name: capacitor
spawn: CapacitorStockPart
maxCount: 10
- type: stack
id: MicroManipulator
name: micro manipulator
spawn: MicroManipulatorStockPart
maxCount: 10
- type: stack
id: MatterBin
name: matter bin
spawn: MatterBinStockPart
maxCount: 10