Add trash carts and janitorial trash carts (#18996)

* everything

* half loot
This commit is contained in:
potato1234_x
2023-08-13 05:05:32 +10:00
committed by GitHub
parent bbd608dd87
commit f4bbe3603d
22 changed files with 244 additions and 1 deletions

View File

@@ -164,3 +164,91 @@
amount: 2
- id: ClothingMaskSterile
amount: 2
- type: entity
id: CrateTrashCartFilled
suffix: Filled
parent: CrateTrashCart
components:
- type: StorageFill
contents:
# Food Packaging
- id: FoodPacketBoritosTrash
prob: 0.1
- id: FoodPacketCheesieTrash
prob: 0.1
- id: FoodPacketChipsTrash
prob: 0.1
- id: FoodPacketChocolateTrash
prob: 0.1
- id: FoodPacketEnergyTrash
prob: 0.1
- id: FoodPacketPopcornTrash
prob: 0.1
- id: FoodPacketSusTrash
prob: 0.1
- id: FoodPacketSyndiTrash
prob: 0.1
- id: FoodPacketChowMeinTrash
prob: 0.1
- id: FoodPacketDanDanTrash
prob: 0.1
- id: FoodPacketMRETrash
prob: 0.1
- id: FoodPacketPistachioTrash
prob: 0.1
- id: FoodPacketSemkiTrash
prob: 0.1
- id: FoodPacketRaisinsTrash
prob: 0.1
# Cans
- id: FoodTinBeansTrash
prob: 0.15
- id: FoodTinPeachesTrash
prob: 0.15
- id: FoodTinMRETrash
prob: 0.15
# Cigarette Stuff
- id: Ash
prob: 0.15
- id: CigarSpent
prob: 0.15
- id: CigaretteSpent
prob: 0.15
# Bacteria
- id: FoodBreadMoldySlice
prob: 0.15
- id: FoodPizzaMoldySlice
prob: 0.15
# Botanical Waste
- id: TrashBananaPeel
prob: 0.15
- id: FoodCornTrash
prob: 0.15
# Misc
- id: ShardGlass
prob: 0.1
- id: DrinkGlass
prob: 0.15
- id: BrokenBottle
prob: 0.15
- id: LightTubeBroken
prob: 0.15
- id: LightBulbBroken
prob: 0.15
- id: MousetrapArmed
prob: 0.15
- id: CableApcStack10
prob: 0.15
- id: MobMouseDead
prob: 0.1
- id: RagItem
prob: 0.1
- id: Flare
prob: 0.1
- id: FoodKebabSkewer
prob: 0.1
- id: Syringe
prob: 0.1
- id: ShardGlassPlasma
prob: 0.1

View File

@@ -1009,6 +1009,22 @@
- type: Puller
needsHands: true
- type: entity
parent: MobMouse
suffix: Dead
save: false
id: MobMouseDead
name: mouse
description: Squeak!
components:
- type: Damageable
damage:
types:
Bloodloss: 6
Asphyxiation: 4
Slash: 7
Blunt: 3
- type: entity
parent: MobMouse
id: MobMouseAdmeme

View File

@@ -57,3 +57,13 @@
- type: Tag
tags:
- DroneUsable
- type: entity
name: mousetrap
suffix: Armed
parent: Mousetrap
id: MousetrapArmed
description: Useful for catching rodents sneaking into your kitchen.
components:
- type: Mousetrap
isActive: true

View File

@@ -90,6 +90,17 @@
lightRadius: 6
lightSoftness: 1.1
- type: entity
suffix: Broken
parent: BaseLightbulb
name: incandescent light bulb
id: LightBulbBroken
description: A light bulb.
components:
- type: LightBulb
startingState: Broken
bulb: Bulb
- type: entity
parent: BaseLightTube
name: fluorescent light tube
@@ -103,6 +114,16 @@
lightSoftness: 1
PowerUse: 25
- type: entity
suffix: Broken
parent: BaseLightTube
name: fluorescent light tube
id: LightTubeBroken
description: A light fixture.
components:
- type: LightBulb
startingState: Broken
- type: entity
parent: BaseLightTube
name: led light tube

View File

@@ -496,3 +496,26 @@
sprite: Structures/Storage/Crates/syndicate.rsi
- type: Sprite
sprite: Structures/Storage/Crates/syndicate.rsi
- type: entity
parent: CrateBaseWeldable
id: CrateTrashCart
name: trash cart
components:
- type: Icon
sprite: Structures/Storage/Crates/trashcart.rsi
- type: Sprite
sprite: Structures/Storage/Crates/trashcart.rsi
- type: entity
parent: CrateBaseSecure
id: CrateTrashCartJani
name: janitorial trash cart
components:
- type: Icon
sprite: Structures/Storage/Crates/trashcart_jani.rsi
- type: Sprite
sprite: Structures/Storage/Crates/trashcart_jani.rsi
- type: AccessReader
access: [["Janitor"]]