Make item size scale with stack size (#17623)

* Make stack count affect item size

* and the test, too

* readd this check

* vwoom

* huh

* if you ever read this commit message ping me on discord in #contributors

* changerinos
This commit is contained in:
Nemanja
2023-06-25 11:44:37 -04:00
committed by GitHub
parent 0d086df2e5
commit 5c60a27c7c
39 changed files with 399 additions and 81 deletions

View File

@@ -1928,7 +1928,7 @@ entities:
type: Transform
- canCollide: False
type: Physics
- proto: MedkitCombatFilled
- proto: MedkitCombat
entities:
- uid: 172
components:

View File

@@ -191,6 +191,8 @@
id: BoxHugHealing
description: A special box for sensitive people.
components:
- type: Storage
capacity: 30
- type: Sprite
layers:
- state: box_hug
@@ -200,7 +202,7 @@
- type: StorageFill
contents:
- id: Brutepack
amount: 6
amount: 3
- type: Tag
tags:
- BoxHug

View File

@@ -75,9 +75,9 @@
- id: Brutepack
amount: 2
- id: Ointment
amount: 2
amount: 1
- id: Bloodpack
amount: 2
amount: 1
- id: Gauze
- id: EmergencyMedipen #You never know what people are going to latejoin into

View File

@@ -30,14 +30,14 @@
- id: Screwdriver
- id: Crowbar
- id: Wirecutter
- id: CableApcStack
- id: CableMVStack
- id: CableApcStack10
- id: CableMVStack10
- id: trayScanner
prob: 0.9
- id: ClothingHandsGlovesColorYellow
prob: 0.05
orGroup: GlovesOrWires
- id: CableHVStack
- id: CableHVStack10
orGroup: GlovesOrWires
- type: entity

View File

@@ -238,6 +238,7 @@
- type: Clothing
sprite: Clothing/Belt/medical.rsi
- type: Storage
capacity: 60
whitelist:
tags:
- Wrench

View File

@@ -9,11 +9,11 @@
tags:
- RollingPaper
- CigFilter
capacity: 16
capacity: 20
- type: StorageFill
contents:
- id: PaperRolling
amount: 8
amount: 4
- type: Sprite
sprite: Objects/Consumable/Smokeables/Cigarettes/paper.rsi
state: cigpapers
@@ -35,9 +35,9 @@
- type: StorageFill
contents:
- id: PaperRolling
amount: 8
amount: 2
- id: CigaretteFilter
amount: 8
amount: 2
- type: entity
id: PaperRolling
@@ -54,7 +54,7 @@
state: cigpaper
- type: Item
sprite: Objects/Consumable/Smokeables/Cigarettes/paper.rsi
size: 2
size: 5
- type: Tag
tags:
- RollingPaper
@@ -68,6 +68,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
id: CigaretteFilter
@@ -84,7 +86,7 @@
state: cigfilter
- type: Item
sprite: Objects/Consumable/Smokeables/Cigarettes/paper.rsi
size: 2
size: 10
- type: Tag
tags:
- CigFilter
@@ -97,3 +99,5 @@
components:
- type: Stack
count: 1
- type: Item
size: 2

View File

@@ -9,6 +9,7 @@
sprite: Objects/Materials/Sheets/glass.rsi
- type: Item
sprite: Objects/Materials/Sheets/glass.rsi
size: 30
- type: StaticPrice
price: 0
- type: ItemStatus
@@ -83,6 +84,8 @@
- type: Stack
stackType: Glass
count: 1
- type: Item
size: 1
- type: entity
parent: SheetGlassBase
@@ -148,6 +151,8 @@
- type: Stack
stackType: ReinforcedGlass
count: 1
- type: Item
size: 1
- type: entity
parent: SheetGlassBase
@@ -173,6 +178,7 @@
map: ["base"]
- type: Item
heldPrefix: pglass
size: 30
- type: Construction
graph: Glass
node: SheetPGlass
@@ -210,6 +216,8 @@
- type: Stack
stackType: PlasmaGlass
count: 1
- type: Item
size: 1
- type: entity
parent: SheetPGlass
@@ -250,6 +258,8 @@
- type: Stack
stackType: ReinforcedPlasmaGlass
count: 1
- type: Item
size: 1
- type: entity
parent: SheetGlassBase
@@ -312,6 +322,8 @@
- type: Stack
stackType: UraniumGlass
count: 1
- type: Item
size: 1
- type: entity
parent: SheetUGlass
@@ -351,3 +363,5 @@
- type: Stack
stackType: ReinforcedUraniumGlass
count: 1
- type: Item
size: 1

View File

@@ -8,6 +8,7 @@
sprite: Objects/Materials/Sheets/metal.rsi
- type: Item
sprite: Objects/Materials/Sheets/metal.rsi
size: 30
- type: StaticPrice
price: 0
- type: ItemStatus
@@ -63,6 +64,8 @@
name: steel
suffix: Single
components:
- type: Item
size: 1
- type: Sprite
state: steel
- type: Stack
@@ -106,3 +109,5 @@
- type: Stack
stackType: Plasteel
count: 1
- type: Item
size: 1

View File

@@ -8,6 +8,7 @@
sprite: Objects/Materials/Sheets/other.rsi
- type: Item
sprite: Objects/Materials/Sheets/other.rsi
size: 30
- type: ItemStatus
- type: Tag
tags:
@@ -56,6 +57,8 @@
state: paper
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: SheetOtherBase
@@ -104,6 +107,8 @@
state: plasma
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: SheetOtherBase
@@ -134,6 +139,7 @@
map: ["base"]
- type: Item
heldPrefix: plastic
size: 30
- type: Appearance
- type: entity
@@ -144,6 +150,8 @@
components:
- type: Sprite
state: plastic
- type: Item
size: 1
- type: Stack
count: 1
@@ -192,6 +200,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: SheetOtherBase
@@ -233,3 +243,5 @@
state: meat
- type: Stack
count: 1
- type: Item
size: 1

View File

@@ -8,6 +8,7 @@
sprite: Objects/Materials/ingots.rsi
- type: Item
sprite: Objects/Materials/ingots.rsi
size: 30
- type: StaticPrice
price: 0
- type: ItemStatus
@@ -62,6 +63,8 @@
state: gold
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: IngotBase
@@ -99,3 +102,5 @@
state: silver
- type: Stack
count: 1
- type: Item
size: 1

View File

@@ -8,6 +8,7 @@
sprite: Objects/Materials/materials.rsi
- type: Item
sprite: Objects/Materials/materials.rsi
size: 30
- type: ItemStatus
- type: Tag
tags:
@@ -47,6 +48,8 @@
- state: cardboard_3
map: ["base"]
- type: Appearance
- type: Item
size: 30
- type: entity
parent: MaterialCardboard
@@ -57,6 +60,8 @@
state: cardboard
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: MaterialBase
@@ -103,6 +108,8 @@
- state: cloth_3
map: ["base"]
- type: Appearance
- type: Item
size: 30
- type: entity
parent: MaterialCloth
@@ -113,6 +120,8 @@
state: cloth
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: MaterialBase
@@ -150,6 +159,8 @@
state: durathread
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: MaterialBase
@@ -184,6 +195,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: MaterialBase
@@ -205,6 +218,8 @@
- type: GuideHelp
guides:
- Cloning
- type: Item
size: 100
- type: entity
parent: MaterialBiomass
@@ -213,6 +228,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 1
# Following not used currently
- type: entity
@@ -255,6 +272,7 @@
state: diamond
- type: Item
heldPrefix: diamond
size: 60
- type: entity
parent: MaterialDiamond
@@ -263,6 +281,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: MaterialBase
@@ -283,6 +303,9 @@
- state: cotton_3
map: ["base"]
- type: Appearance
- type: Item
size: 30
- type: entity
parent: MaterialCotton
@@ -293,6 +316,8 @@
state: cotton
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: MaterialBase
@@ -343,6 +368,8 @@
- ReagentId: Honk
Quantity: 5
- type: Appearance
- type: Item
size: 20
- type: entity
parent: MaterialBananium
@@ -353,3 +380,5 @@
state: bananium
- type: Stack
count: 1
- type: Item
size: 2

View File

@@ -8,7 +8,7 @@
sprite: Objects/Materials/ore.rsi
- type: Item
sprite: Objects/Materials/ore.rsi
size: 30
size: 60
- type: ItemStatus
- type: Tag
tags:
@@ -58,6 +58,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: OreBase
@@ -81,6 +83,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: OreBase
@@ -104,6 +108,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: OreBase
@@ -127,6 +133,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: OreBase
@@ -150,6 +158,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
parent: OreBase
@@ -173,6 +183,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 2
- type: entity
@@ -197,3 +209,5 @@
components:
- type: Stack
count: 1
- type: Item
size: 2

View File

@@ -44,7 +44,8 @@
layers:
- state: rods_5
map: ["base"]
# - type: Item
- type: Item
size: 30
# heldPrefix: rods
- type: Construction
graph: MetalRod
@@ -73,3 +74,5 @@
state: rods
- type: Stack
count: 1
- type: Item
size: 1

View File

@@ -10,7 +10,6 @@
size: 30
- type: Storage
capacity: 30
size: 10
- type: ContainerContainer
containers:
storagebase: !type:Container

View File

@@ -62,6 +62,8 @@
- type: Tag
tags:
- Smokable
- type: Item
size: 1
- type: entity
name: tobacco leaves
@@ -118,3 +120,5 @@
- type: Tag
tags:
- Smokable
- type: Item
size: 1

View File

@@ -6,6 +6,7 @@
- type: Sprite
sprite: Objects/Specific/Medical/medical.rsi
- type: Item
size: 10
sprite: Objects/Specific/Medical/medical.rsi
heldPrefix: ointment
# Inherited
@@ -17,6 +18,7 @@
description: Used to treat those nasty burns. Less effective on caustic burns.
parent: BaseHealingItem
id: Ointment
suffix: Full
components:
- type: Tag
tags:
@@ -47,16 +49,20 @@
- type: entity
id: Ointment1
parent: Ointment
suffix: Single
components:
- type: Stack
stackType: Ointment
count: 1
- type: Item
size: 1
- type: entity
name: bruise pack
description: A therapeutic gel pack and bandages designed to treat blunt-force trauma.
parent: BaseHealingItem
id: Brutepack
suffix: Full
components:
- type: Tag
tags:
@@ -82,16 +88,20 @@
- type: entity
id: Brutepack1
parent: Brutepack
suffix: Single
components:
- type: Stack
stackType: Brutepack
count: 1
- type: Item
size: 1
- type: entity
name: blood pack
description: Contains a groundbreaking universal blood replacement created by Nanotrasen's advanced medical science.
parent: BaseHealingItem
id: Bloodpack
suffix: Full
components:
- type: Tag
tags:
@@ -120,6 +130,7 @@
description: Some sterile gauze to wrap around bloody stumps.
parent: BaseHealingItem
id: Gauze
suffix: Full
components:
- type: Tag
tags:
@@ -150,9 +161,12 @@
- type: entity
id: Gauze1
parent: Gauze
suffix: Single
components:
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
name: aloe cream
@@ -284,7 +298,7 @@
reagents:
- ReagentId: Bicaridine
Quantity: 10
- type: entity
name: romerol pill
parent: Pill
@@ -362,8 +376,8 @@
maxVol: 15
reagents:
- ReagentId: Bicaridine
Quantity: 15
Quantity: 15
- type: entity
name: ipecac syringe
parent: BaseSyringe

View File

@@ -8,9 +8,9 @@
sprite: Objects/Specific/Medical/firstaidkits.rsi
state: firstaid
- type: Storage
capacity: 35
capacity: 60
- type: Item
size: 35
size: 60
sprite: Objects/Specific/Medical/firstaidkits.rsi
heldPrefix: firstaid
- type: Tag
@@ -92,8 +92,8 @@
- type: Sprite
state: blackkit
- type: Item
heldPrefix: blackkit
heldPrefix: blackkit
size: 50
- type: Storage
capacity: 50

View File

@@ -10,6 +10,7 @@
state: telecrystal
- type: Item
sprite: Objects/Specific/Syndicate/telecrystal.rsi
size: 20
- type: Stack
count: 20
stackType: Telecrystal
@@ -28,6 +29,8 @@
components:
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: Telecrystal
@@ -36,6 +39,8 @@
components:
- type: Stack
count: 5
- type: Item
size: 5
- type: entity
parent: Telecrystal
@@ -44,6 +49,8 @@
components:
- type: Stack
count: 10
- type: Item
size: 10
# Uplinks
- type: entity

View File

@@ -19,7 +19,7 @@
sprite: Objects/Tools/cable-coils.rsi
- type: Item
sprite: Objects/Tools/cable-coils.rsi
size: 10
size: 30
- type: CablePlacer
- type: Clickable
- type: StaticPrice
@@ -53,6 +53,18 @@
blockingWireType: HighVoltage
- type: Appearance
- type: entity
parent: CableHVStack
id: CableHVStack10
suffix: 10
components:
- type: Sprite
state: coilhv-10
- type: Stack
count: 10
- type: Item
size: 10
- type: entity
parent: CableHVStack
id: CableHVStack1
@@ -62,6 +74,8 @@
state: coilhv-10
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: CableStack
@@ -89,6 +103,18 @@
blockingWireType: MediumVoltage
- type: Appearance
- type: entity
parent: CableMVStack
id: CableMVStack10
suffix: 10
components:
- type: Sprite
state: coilmv-10
- type: Stack
count: 10
- type: Item
size: 10
- type: entity
parent: CableMVStack
id: CableMVStack1
@@ -98,6 +124,8 @@
state: coilmv-10
- type: Stack
count: 1
- type: Item
size: 1
- type: entity
parent: CableStack
@@ -124,6 +152,18 @@
blockingWireType: Apc
- type: Appearance
- type: entity
parent: CableApcStack
id: CableApcStack10
suffix: 10
components:
- type: Sprite
state: coillv-10
- type: Stack
count: 10
- type: Item
size: 10
- type: entity
parent: CableApcStack
id: CableApcStack1
@@ -133,3 +173,5 @@
state: coillv-10
- type: Stack
count: 1
- type: Item
size: 1

View File

@@ -13,7 +13,7 @@
state: item_wall
- type: Item
sprite: Objects/Misc/inflatable_wall.rsi
size: 5
size: 10
- type: SpawnAfterInteract
prototype: InflatableWall
doAfter: 1
@@ -39,7 +39,7 @@
state: item_door
- type: Item
sprite: Objects/Misc/inflatable_door.rsi
size: 5
size: 4
- type: SpawnAfterInteract
prototype: InflatableDoor
doAfter: 1
@@ -58,7 +58,7 @@
- type: Sprite
state: item_wall
- type: Item
size: 5
size: 1
- type: Stack
count: 1
@@ -70,6 +70,6 @@
- type: Sprite
state: item_door
- type: Item
size: 5
size: 1
- type: Stack
count: 1

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -4,6 +4,7 @@
icon: { sprite: /Textures/Objects/Misc/monkeycube.rsi, state: cube }
spawn: MaterialBiomass1
maxCount: 100
itemSize: 1
- type: stack
id: WoodPlank
@@ -11,6 +12,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: wood }
spawn: MaterialWoodPlank1
maxCount: 30
itemSize: 1
- type: stack
id: Cardboard
@@ -18,6 +20,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cardboard }
spawn: MaterialCardboard1
maxCount: 30
itemSize: 1
- type: stack
id: Cloth
@@ -25,6 +28,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cloth }
spawn: MaterialCloth1
maxCount: 30
itemSize: 1
- type: stack
id: Durathread
@@ -32,6 +36,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: durathread }
spawn: MaterialDurathread1
maxCount: 30
itemSize: 1
- type: stack
id: Diamond
@@ -39,6 +44,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: diamond }
spawn: MaterialDiamond1
maxCount: 30
itemSize: 2
- type: stack
id: Cotton
@@ -46,6 +52,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: cotton }
spawn: MaterialCotton1
maxCount: 30
itemSize: 1
- type: stack
id: Bananium
@@ -53,6 +60,7 @@
icon: { sprite: /Textures/Objects/Materials/materials.rsi, state: bananium }
spawn: MaterialBananium1
maxCount: 10
itemSize: 2
- type: stack
id: MeatSheets
@@ -60,3 +68,4 @@
icon: { sprite: /Textures/Objects/Materials/Sheets/meaterial.rsi, state: meat }
spawn: MaterialSheetMeat1
maxCount: 30
itemSize: 1

View File

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

View File

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

View File

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

View File

@@ -1,11 +1,14 @@
# they're uninflated by default so they're tiny
- type: stack
id: InflatableWall
name: inflatable wall
spawn: InflatableWallStack1
maxCount: 10
itemSize: 1
- type: stack
id: InflatableDoor
name: inflatable door
spawn: InflatableDoorStack1
maxCount: 4
itemSize: 1

View File

@@ -3,315 +3,368 @@
name: steel tile
spawn: FloorTileItemSteel
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileMetalDiamond
name: steel tile
spawn: FloorTileItemMetalDiamond
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileWood
name: wood floor
spawn: FloorTileItemWood
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileWhite
name: white tile
spawn: FloorTileItemWhite
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileDark
name: dark tile
spawn: FloorTileItemDark
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileTechmaint
name: techmaint floor
spawn: FloorTileItemTechmaint
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileFreezer
name: freezer tile
spawn: FloorTileItemFreezer
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileShowroom
name: showroom tile
spawn: FloorTileItemShowroom
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileGCircuit
name: green-circuit floor
spawn: FloorTileItemGCircuit
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileGold
name: gold floor
spawn: FloorTileItemGold
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileReinforced
name: reinforced tile
spawn: FloorTileItemReinforced
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileMono
name: mono tile
spawn: FloorTileItemMono
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileLino
name: linoleum floor
spawn: FloorTileItemLino
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileHydro
name: hydro tile
spawn: FloorTileItemHydro
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileDirty
name: dirty tile
spawn: FloorTileItemDirty
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackShuttleWhite
name: white shuttle tile
spawn: FloorTileItemShuttleWhite
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackShuttleBlue
name: blue shuttle tile
spawn: FloorTileItemShuttleBlue
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackShuttleOrange
name: orange shuttle tile
spawn: FloorTileItemShuttleOrange
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackShuttlePurple
name: purple shuttle tile
spawn: FloorTileItemShuttlePurple
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackShuttleRed
name: red shuttle tile
spawn: FloorTileItemShuttleRed
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackEighties
name: eighties floor tile
spawn: FloorTileItemEighties
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackArcadeBlue
name: blue arcade tile
spawn: FloorTileItemArcadeBlue
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackArcadeBlue2
name: blue arcade tile
spawn: FloorTileItemArcadeBlue2
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackArcadeRed
name: red arcade tile
spawn: FloorTileItemArcadeRed
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetRed
name: red carpet tile
spawn: FloorCarpetItemRed
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetBlack
name: block carpet tile
spawn: FloorCarpetItemBlack
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetBlue
name: blue carpet tile
spawn: FloorCarpetItemBlue
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetGreen
name: green carpet tile
spawn: FloorCarpetItemGreen
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetOrange
name: orange carpet tile
spawn: FloorCarpetItemOrange
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetSkyBlue
name: skyblue carpet tile
spawn: FloorCarpetItemSkyBlue
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetPurple
name: purple carpet tile
spawn: FloorCarpetItemPurple
maxCount: 30
itemSize: 5
- type: stack
id: FloorCarpetPink
name: pink carpet tile
spawn: FloorCarpetItemPink
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackCarpetClown
name: clown carpet tile
spawn: FloorTileItemCarpetClown
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackCarpetOffice
name: office carpet tile
spawn: FloorTileItemCarpetOffice
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackBoxing
name: boxing ring tile
spawn: FloorTileItemBoxing
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileStackGym
name: gym floor tile
spawn: FloorTileItemGym
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileElevatorShaft
name: elevator shaft tile
spawn: FloorTileItemElevatorShaft
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileRockVault
name: rock vault tile
spawn: FloorTileItemRockVault
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileBlue
name: blue floor tile
spawn: FloorTileItemBlue
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileBar
name: item bar floor tile
spawn: FloorTileItemBar
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileClown
name: clown floor tile
spawn: FloorTileItemClown
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileMime
name: mime floor tile
spawn: FloorTileItemMime
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileKitchen
name: kitchen floor tile
spawn: FloorTileItemKitchen
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileLaundry
name: laundry floor tile
spawn: FloorTileItemLaundry
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileSilver
name: silver floor tile
spawn: FloorTileItemSilver
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileBCircuit
name: bcircuit floor tile
spawn: FloorTileItemBCircuit
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileGrass
name: grass floor tile
spawn: FloorTileItemGrass
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileGrassJungle
name: grass jungle floor tile
spawn: FloorTileItemGrassJungle
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileSnow
name: snow floor tile
spawn: FloorTileItemSnow
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileWoodPattern
name: wood pattern floor
spawn: FloorTileItemWoodPattern
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileFlesh
name: flesh floor
spawn: FloorTileItemFlesh
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileSteelMaint
name: steel maint floor
spawn: FloorTileItemSteelMaint
maxCount: 30
itemSize: 5
- type: stack
id: FloorTileGratingMaint
name: grating maint floor
spawn: FloorTileItemGratingMaint
maxCount: 30
itemSize: 5

View File

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

View File

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