Making improper nouns lower case. (#1020)
Co-authored-by: Hugo Laloge <hugo.laloge@gmail.com>
This commit is contained in:
@@ -8,7 +8,7 @@ namespace Content.Shared.GameObjects.Components.Sound
|
||||
{
|
||||
public class SharedLoopingSoundComponent : Component
|
||||
{
|
||||
public override string Name => "Sound";
|
||||
public override string Name => "LoopingSound";
|
||||
public override uint? NetID => ContentNetIDs.SOUND;
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Content.Shared
|
||||
// See ideally these would be pulled from the job definition or something.
|
||||
// But this is easier, and at least it isn't hardcoded.
|
||||
public const string OverflowJob = "Assistant";
|
||||
public const string OverflowJobName = "Assistant";
|
||||
public const string OverflowJobName = "assistant";
|
||||
|
||||
protected class MsgTickerJoinLobby : NetMessage
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: bodyTemplate
|
||||
id: bodyTemplate.Quadrupedal
|
||||
name: "Quadrupedal"
|
||||
name: "quadrupedal"
|
||||
centerSlot: "torso"
|
||||
slots:
|
||||
head: Head
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: mechanism
|
||||
id: mechanism.Brain.BasicHuman
|
||||
name: "Human Brain"
|
||||
name: "human brain"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "brain_human"
|
||||
description: "The source of incredible, unending intelligence. Honk."
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.Eyes.BasicHuman
|
||||
name: "Human Eyes"
|
||||
name: "human eyes"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "eyes_human"
|
||||
description: "Ocular organ capable of turning light into a colorful visual."
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.Heart.BasicHuman
|
||||
name: "Human Heart"
|
||||
name: "human heart"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "heart_human"
|
||||
description: "Pumps blood throughout a body. Essential for any entity with blood."
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.Lungs.BasicHuman
|
||||
name: "Human Lungs"
|
||||
name: "human lungs"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "lungs_human"
|
||||
description: "Filters oxygen from an atmosphere, which is then sent into the bloodstream to be used as an electron carrier."
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.Liver.BasicHuman
|
||||
name: "Human Liver"
|
||||
name: "human liver"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "liver_human"
|
||||
description: "Filters impurities out of a bloodstream and provides other important functionality to a human."
|
||||
@@ -50,7 +50,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.Kidneys.BasicHuman
|
||||
name: "Human Kidneys"
|
||||
name: "human kidneys"
|
||||
rsiPath: Objects/BodySystem/Organs/basic_human.rsi
|
||||
rsiState: "kidneys_human"
|
||||
description: "Filters toxins out of a bloodstream."
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: mechanism
|
||||
id: mechanism.EMPStriker
|
||||
name: "EMP Striker"
|
||||
name: "EMP striker"
|
||||
description: "When activated, this arm implant will apply a small EMP on the target of a physical strike for 10 watts per use."
|
||||
durability: 80
|
||||
size: 4
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
- type: mechanism
|
||||
id: mechanism.HonkModule
|
||||
name: "HONK Module 3000"
|
||||
name: "HONK module 3000"
|
||||
description: "Mandatory implant for all clowns after the Genevo Convention of 2459."
|
||||
durability: 50
|
||||
size: 3
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Scalpel
|
||||
name: scalpel
|
||||
parent: BaseItem
|
||||
id: scalpel
|
||||
desc: A surgical tool used to make incisions into flesh.
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Retractor
|
||||
name: retractor
|
||||
parent: BaseItem
|
||||
id: retractor
|
||||
desc: A surgical tool used to hold open incisions.
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Cautery
|
||||
name: cautery
|
||||
parent: BaseItem
|
||||
id: cautery
|
||||
desc: A surgical tool used to cauterize open wounds.
|
||||
@@ -65,7 +65,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Drill
|
||||
name: drill
|
||||
parent: BaseItem
|
||||
id: drill
|
||||
desc: A surgical drill for making holes into hard material.
|
||||
@@ -87,7 +87,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Bone Saw
|
||||
name: bone saw
|
||||
parent: BaseItem
|
||||
id: bone_saw
|
||||
desc: A surgical tool used to cauterize open wounds.
|
||||
@@ -107,7 +107,7 @@
|
||||
- type: MeleeWeapon
|
||||
|
||||
- type: entity
|
||||
name: Hemostat
|
||||
name: hemostat
|
||||
parent: BaseItem
|
||||
id: hemostat
|
||||
desc: A surgical tool used to compress blood vessels to prevent bleeding.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: "BaseDroppedBodyPart"
|
||||
name: "basedroppedbodypart"
|
||||
parent: BaseItem
|
||||
id: BaseDroppedBodyPart
|
||||
components:
|
||||
@@ -9,7 +9,7 @@
|
||||
- type: Icon
|
||||
|
||||
- type: entity
|
||||
name: "BaseDroppedMechanism"
|
||||
name: "basedroppedmechanism"
|
||||
parent: BaseItem
|
||||
id: BaseDroppedMechanism
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: cargoProduct
|
||||
name: "Dice"
|
||||
- type: cargoProduct
|
||||
name: "dice"
|
||||
id: cargo.dice
|
||||
description: "Some dice"
|
||||
icon:
|
||||
@@ -11,7 +11,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Medkit"
|
||||
name: "medkit"
|
||||
id: cargo.Medkit
|
||||
description: "Everything you need to patch someone up."
|
||||
icon: Objects/Medical/medkit_r.png
|
||||
@@ -21,7 +21,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Flashlight"
|
||||
name: "flashlight"
|
||||
id: cargo.flashlight
|
||||
description: "Shine a light in the dark."
|
||||
icon:
|
||||
@@ -33,7 +33,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Light Bulb"
|
||||
name: "light bulb"
|
||||
id: cargo.lightbulb
|
||||
description: "Light up a room, anywhere, anytime. Electricity not included."
|
||||
icon:
|
||||
@@ -45,7 +45,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Fire Extinguisher"
|
||||
name: "fire extinguisher"
|
||||
id: cargo.fireextinguisher
|
||||
description: "Puts out fires. Or propels you in space."
|
||||
icon: Objects/Misc/fire_extinguisher.png
|
||||
@@ -55,7 +55,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Pen"
|
||||
name: "pen"
|
||||
id: cargo.pen
|
||||
description: "Expels ink. Use it to write, or stab someone."
|
||||
icon:
|
||||
@@ -67,7 +67,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Bike Horn"
|
||||
name: "bike horn"
|
||||
id: cargo.bikehorn
|
||||
description: "HONK!"
|
||||
icon:
|
||||
@@ -79,7 +79,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Cleaver"
|
||||
name: "cleaver"
|
||||
id: cargo.cleaver
|
||||
description: "That's not a knife, THAT'S a knife."
|
||||
icon:
|
||||
@@ -91,7 +91,7 @@
|
||||
group: blackmarket
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Fuel Tank"
|
||||
name: "fuel tank"
|
||||
id: cargo.fueltank
|
||||
description: "Movable fuel tank for welders. No boom boom."
|
||||
icon: Buildings/weldtank.png
|
||||
@@ -101,7 +101,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Medical Scanner"
|
||||
name: "medical scanner"
|
||||
id: cargo.medscanner
|
||||
description: "Scans patients. First we stick this probe..."
|
||||
icon:
|
||||
@@ -113,7 +113,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Glass Crate"
|
||||
name: "glass crate"
|
||||
id: cargo.glass
|
||||
description: "50 sheets of glass."
|
||||
icon: Objects/Materials/sheet_glass.png
|
||||
@@ -123,7 +123,7 @@
|
||||
group: market
|
||||
|
||||
- type: cargoProduct
|
||||
name: "Cable Crate"
|
||||
name: "cable crate"
|
||||
id: cargo.cable
|
||||
description: "50 coils of cable."
|
||||
icon: Objects/Tools/cable_coil.png
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: construction
|
||||
name: Wall Light
|
||||
name: wall light
|
||||
id: WallLight
|
||||
keywords: [fixture, lamp]
|
||||
category: Machines
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: construction
|
||||
name: Skub
|
||||
name: skub
|
||||
id: skub
|
||||
category: Items/Misc
|
||||
keywords: [misc]
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
amount: 2
|
||||
|
||||
- type: construction
|
||||
name: Generator
|
||||
name: generator
|
||||
id: generator
|
||||
category: Machines/Power
|
||||
placementmode: SnapgridCenter
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
- type: construction
|
||||
name: APC
|
||||
id: apc
|
||||
id: APC
|
||||
category: Machines/Power
|
||||
placementmode: SnapgridCenter
|
||||
description: Provides power from the grid wirelessly to other machines in the area.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: construction
|
||||
name: Wall
|
||||
name: wall
|
||||
id: wall
|
||||
category: Structures
|
||||
description: Keeps the air in and the greytide out.
|
||||
@@ -22,7 +22,7 @@
|
||||
tool: Anchoring
|
||||
|
||||
- type: construction
|
||||
name: Table
|
||||
name: table
|
||||
id: Table
|
||||
category: Structures
|
||||
icon:
|
||||
@@ -35,7 +35,7 @@
|
||||
amount: 2
|
||||
|
||||
- type: construction
|
||||
name: Window
|
||||
name: window
|
||||
id: Window
|
||||
category: Structures
|
||||
description: Clear.
|
||||
@@ -50,7 +50,7 @@
|
||||
amount: 2
|
||||
|
||||
- type: construction
|
||||
name: Low Wall
|
||||
name: low wall
|
||||
id: LowWall
|
||||
category: Structures
|
||||
description: A low wall used for mounting windows.
|
||||
@@ -73,7 +73,7 @@
|
||||
tool: Anchoring
|
||||
|
||||
- type: construction
|
||||
name: Rein Window
|
||||
name: rein window
|
||||
id: ReinforcedWindow
|
||||
category: Structures
|
||||
description: Clear but tough.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: construction
|
||||
name: Crude Spear
|
||||
name: crude spear
|
||||
id: spear
|
||||
category: Items/Weapons
|
||||
keywords: [melee]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: StorageTank
|
||||
id: WeldingFuelTank
|
||||
name: Fueltank
|
||||
name: fuel tank
|
||||
description: A storage tank containing welding fuel.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: StorageTank
|
||||
name: Storage Tank
|
||||
name: storage tank
|
||||
description: "A liquids storage tank"
|
||||
abstract: true
|
||||
components:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: StorageTank
|
||||
id: WaterTank
|
||||
name: Water Tank
|
||||
name: water tank
|
||||
suffix: Empty
|
||||
description: "A water tank. It is used to store high amounts of water."
|
||||
components:
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
- type: StorageVisualizer2D
|
||||
state_open: generic_open
|
||||
state_closed: generic_door
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
placement:
|
||||
snap:
|
||||
- Wall
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: CrateGeneric
|
||||
name: Crate
|
||||
name: crate
|
||||
description: A large container for items.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -46,4 +46,4 @@
|
||||
- type: StorageVisualizer2D
|
||||
state_open: crate_open
|
||||
state_closed: crate_door
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: CratePlastic
|
||||
name: Plastic Crate
|
||||
name: plastic crate
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateFreezer
|
||||
name: Freezer
|
||||
name: freezer
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateHydroponics
|
||||
name: Hydroponics Crate
|
||||
name: hydroponics crate
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -54,7 +54,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateMedical
|
||||
name: Medical Crate
|
||||
name: medical crate
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -72,7 +72,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateRadiation
|
||||
name: Radiation Gear Crate
|
||||
name: radiation gear crate
|
||||
description: Is not actually lead lined. Do not store your plutonium in this.
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
@@ -91,7 +91,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateInternals
|
||||
name: Internals Crate
|
||||
name: internals crate
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -109,7 +109,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateFlashlights
|
||||
name: Flashlight Crate (x5)
|
||||
name: flashlight crate (x5)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -122,7 +122,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateLightBulb
|
||||
name: Light Bulb Crate (x10)
|
||||
name: light bulb crate (x10)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -140,7 +140,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateFireExtinguisher
|
||||
name: Fire Extinguisher Crate (x3)
|
||||
name: fire extinguisher crate (x3)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -151,7 +151,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CratePen
|
||||
name: Pen Crate (x10)
|
||||
name: pen crate (x10)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -169,7 +169,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateBikeHorn
|
||||
name: Bike Horn Crate (x5)
|
||||
name: bike horn crate (x5)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -182,7 +182,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateCleaver
|
||||
name: Cleaver Crate (x5)
|
||||
name: cleaver crate (x5)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -195,7 +195,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateFuelTank
|
||||
name: Fuel Tank
|
||||
name: fuel tank
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -204,7 +204,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateMedicalScanner
|
||||
name: Medical Scanner
|
||||
name: medical scanner
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -213,7 +213,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateGlass
|
||||
name: Glass Sheet Crate (x50)
|
||||
name: glass sheet crate (x50)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
@@ -222,7 +222,7 @@
|
||||
|
||||
- type: entity
|
||||
id: CrateCable
|
||||
name: Cable Coil Crate (x50)
|
||||
name: cable coil crate (x50)
|
||||
parent: CrateGeneric
|
||||
components:
|
||||
- type: StorageFill
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: AsteroidRock
|
||||
name: Asteroid Rock
|
||||
name: asteroid rock
|
||||
components:
|
||||
- type: AsteroidRock
|
||||
- type: Clickable
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: BoozeDispenser
|
||||
name: Booze Dispenser
|
||||
name: booze dispenser
|
||||
description: A booze dispenser with a single slot for a container to be filled.
|
||||
parent: ReagentDispenserBase
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Catwalk
|
||||
name: Catwalk
|
||||
name: catwalk
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: chem_dispenser
|
||||
name: Chemical Dispenser
|
||||
name: chemical dispenser
|
||||
parent: ReagentDispenserBase
|
||||
description: An industrial grade chemical dispenser with a sizeable chemical supply.
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: ComputerBase
|
||||
name: Computer
|
||||
name: computer
|
||||
abstract: true
|
||||
components:
|
||||
- type: Physics
|
||||
@@ -50,7 +50,7 @@
|
||||
- type: entity
|
||||
id: ComputerAlert
|
||||
parent: ComputerBase
|
||||
name: Alerts Computer
|
||||
name: alerts computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -62,7 +62,7 @@
|
||||
- type: entity
|
||||
id: ComputerPowerMonitoring
|
||||
parent: ComputerBase
|
||||
name: Power Monitoring Computer
|
||||
name: power monitoring computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -74,7 +74,7 @@
|
||||
- type: entity
|
||||
id: ComputerSupplyOrdering
|
||||
parent: ComputerBase
|
||||
name: Cargo Ordering Computer
|
||||
name: cargo ordering computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -106,7 +106,7 @@
|
||||
- type: entity
|
||||
id: ComputerSupplyRequest
|
||||
parent: ComputerSupplyOrdering
|
||||
name: Cargo Request Computer
|
||||
name: cargo request computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -119,7 +119,7 @@
|
||||
- type: entity
|
||||
id: ComputerMedicalRecords
|
||||
parent: ComputerBase
|
||||
name: Medical Records Computer
|
||||
name: medical records computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -131,7 +131,7 @@
|
||||
- type: entity
|
||||
id: ComputerResearchAndDevelopment
|
||||
parent: ComputerBase
|
||||
name: R&D Computer
|
||||
name: R&D computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
@@ -155,7 +155,7 @@
|
||||
- type: entity
|
||||
id: ComputerId
|
||||
parent: ComputerBase
|
||||
name: ID Card Computer
|
||||
name: ID card computer
|
||||
components:
|
||||
- type: AccessReader
|
||||
access: [["HeadOfPersonnel"]]
|
||||
@@ -173,7 +173,7 @@
|
||||
- type: entity
|
||||
id: computerBodyScanner
|
||||
parent: ComputerBase
|
||||
name: Body Scanner Computer
|
||||
name: body scanner computer
|
||||
components:
|
||||
- type: BodyScanner
|
||||
- type: UserInterface
|
||||
@@ -189,7 +189,7 @@
|
||||
- type: entity
|
||||
id: ComputerComms
|
||||
parent: ComputerBase
|
||||
name: Communications Computer
|
||||
name: communications computer
|
||||
components:
|
||||
- type: Appearance
|
||||
visuals:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: EmergencyLight
|
||||
name: "Emergency Light"
|
||||
name: "emergency light"
|
||||
parent: WallLight
|
||||
components:
|
||||
- type: PointLight
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Stool
|
||||
name: stool
|
||||
id: Stool
|
||||
components:
|
||||
- type: Clickable
|
||||
@@ -25,7 +25,7 @@
|
||||
state: bar_stool
|
||||
|
||||
- type: entity
|
||||
name: White Office Chair
|
||||
name: white office chair
|
||||
id: ChairOfficeLight
|
||||
components:
|
||||
- type: Rotatable
|
||||
@@ -40,7 +40,7 @@
|
||||
state: officechair_white
|
||||
|
||||
- type: entity
|
||||
name: Dark Office Chair
|
||||
name: dark office chair
|
||||
id: ChairOfficeDark
|
||||
components:
|
||||
- type: Rotatable
|
||||
@@ -55,7 +55,7 @@
|
||||
state: officechair_dark
|
||||
|
||||
- type: entity
|
||||
name: Chair
|
||||
name: chair
|
||||
id: Chair
|
||||
components:
|
||||
- type: Clickable
|
||||
@@ -71,7 +71,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Wooden Chair
|
||||
name: wooden chair
|
||||
id: ChairWood
|
||||
parent: Chair
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Girder
|
||||
name: Girder
|
||||
name: girder
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: GravityGenerator
|
||||
name: Gravity Generator
|
||||
name: gravity generator
|
||||
description: It's what keeps you to the floor.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: BaseInstrument
|
||||
name: baseinstrument
|
||||
id: BaseInstrument
|
||||
abstract: true
|
||||
components:
|
||||
@@ -27,7 +27,7 @@
|
||||
type: InstrumentBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
name: Piano
|
||||
name: piano
|
||||
parent: BaseInstrument
|
||||
id: PianoInstrument
|
||||
description: Play Needles Piano Now.
|
||||
@@ -42,7 +42,7 @@
|
||||
state: piano
|
||||
|
||||
- type: entity
|
||||
name: Minimoog
|
||||
name: minimoog
|
||||
parent: BaseInstrument
|
||||
id: MinimoogInstrument
|
||||
components:
|
||||
@@ -56,7 +56,7 @@
|
||||
state: minimoog
|
||||
|
||||
- type: entity
|
||||
name: Xylophone
|
||||
name: xylophone
|
||||
parent: BaseInstrument
|
||||
id: XylophoneInstrument
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: BaseLathe
|
||||
name: "Lathe"
|
||||
name: "lathe"
|
||||
abstract: true
|
||||
components:
|
||||
- type: Clickable
|
||||
@@ -19,7 +19,7 @@
|
||||
- type: entity
|
||||
parent: BaseLathe
|
||||
id: Autolathe
|
||||
name: "Autolathe"
|
||||
name: "autolathe"
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Buildings/autolathe.rsi
|
||||
@@ -66,7 +66,7 @@
|
||||
- type: entity
|
||||
parent: BaseLathe
|
||||
id: Protolathe
|
||||
name: "Protolathe"
|
||||
name: "protolathe"
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Buildings/research.rsi
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
- type: entity
|
||||
id: WallLight
|
||||
name: "Unpowered Light"
|
||||
name: "unpowered light"
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
- type: Collidable
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: Sprite
|
||||
sprite: Buildings/light_tube.rsi
|
||||
state: on
|
||||
@@ -22,7 +22,7 @@
|
||||
- Wallmount
|
||||
|
||||
- type: entity
|
||||
name: Light
|
||||
name: light
|
||||
id: Poweredlight
|
||||
parent: WallLight
|
||||
components:
|
||||
@@ -43,7 +43,7 @@
|
||||
bulb: Tube
|
||||
|
||||
- type: entity
|
||||
name: Small Light
|
||||
name: small light
|
||||
id: PoweredSmallLight
|
||||
parent: WallLight
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: LowWall
|
||||
name: Low Wall
|
||||
name: low wall
|
||||
description: Goes up to about your waist.
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
- type: entity
|
||||
id: LowWallOverlay
|
||||
name: Low Wall Overlay
|
||||
name: low wall overlay
|
||||
abstract: true
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: MedicalScanner
|
||||
name: Medical Scanner
|
||||
name: medical scanner
|
||||
description: A bulky medical scanner.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Mirror
|
||||
name: Mirror
|
||||
name: mirror
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Buildings/mirror.rsi
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Wire
|
||||
name: Wire
|
||||
name: wire
|
||||
description: Transfers power, avoid letting things come down it
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -34,7 +34,7 @@
|
||||
- type: entity
|
||||
parent: Wire
|
||||
id: BlueWire
|
||||
name: BlueWire
|
||||
name: bluewire
|
||||
description: Transfers power, and puts on a good show of it
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
- type: entity
|
||||
id: Generator
|
||||
name: Generator
|
||||
name: generator
|
||||
description: A portal to hell which summons power from the nether
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -64,7 +64,7 @@
|
||||
|
||||
- type: entity
|
||||
id: SolarPanel
|
||||
name: Solar Panel
|
||||
name: solar panel
|
||||
description: Generates power from sunlight. Usually used to power replacements for sunlight. Fragile.
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
- type: entity
|
||||
id: WPPnobattery
|
||||
name: WPPnobattery
|
||||
name: wppnobattery
|
||||
description: Supplies power directly to nearby objects
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -149,11 +149,11 @@
|
||||
shapes:
|
||||
- !type:PhysShapeAabb
|
||||
bounds: "-0.25, -0.25, 0.25, 0.3"
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
- type: entity
|
||||
id: SMES
|
||||
name: Smes
|
||||
name: smes
|
||||
description: Stores power in its super-magnetic cells
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -197,7 +197,7 @@
|
||||
|
||||
- type: entity
|
||||
id: WiredMachine
|
||||
name: WiredMachine
|
||||
name: wiredmachine
|
||||
description: A monstrosity that does nothing but suck up power from the nearby wires
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -222,7 +222,7 @@
|
||||
|
||||
- type: entity
|
||||
id: WirelessMachine
|
||||
name: WirelessMachine
|
||||
name: wirelessmachine
|
||||
description: A terrifying monstrosity that sucks up power from the wireless transmitters, Tesla would be proud
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
|
||||
@@ -25,5 +25,5 @@
|
||||
interfaces:
|
||||
- key: enum.ReagentDispenserUiKey.Key
|
||||
type: ReagentDispenserBoundUserInterface
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Pilot Chair
|
||||
name: pilot chair
|
||||
description: The driver seat of a prestigious battle cruiser.
|
||||
id: PilotSeatChair
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: soda_dispenser
|
||||
name: Soda Dispenser
|
||||
name: soda dispenser
|
||||
parent: ReagentDispenserBase
|
||||
description: A beverage dispenser with a selection of soda and several other common beverages. Has a single fill slot for containers.
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Table
|
||||
name: "Table"
|
||||
name: "table"
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: TurretBase
|
||||
name: Turret Base
|
||||
name: turret base
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
- type: entity
|
||||
id: TurretTopGun
|
||||
name: Turret (Gun)
|
||||
name: turret (gun)
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
- type: entity
|
||||
id: TurretTopLight
|
||||
name: Turret (Light)
|
||||
name: turret (light)
|
||||
components:
|
||||
- type: Clickable
|
||||
- type: InteractionOutline
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: base_wall
|
||||
name: BaseWall
|
||||
name: basewall
|
||||
description: Keeps the air in and the greytide out.
|
||||
abstract: true
|
||||
placement:
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
- type: entity
|
||||
id: brick_wall
|
||||
name: Brick wall
|
||||
name: brick wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -59,7 +59,7 @@
|
||||
|
||||
- type: entity
|
||||
id: clock_wall
|
||||
name: Clock wall
|
||||
name: clock wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -75,7 +75,7 @@
|
||||
|
||||
- type: entity
|
||||
id: clown_wall
|
||||
name: Clown wall
|
||||
name: clown wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
- type: entity
|
||||
id: cult_wall
|
||||
name: Cult wall
|
||||
name: cult wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -108,7 +108,7 @@
|
||||
|
||||
- type: entity
|
||||
id: debug_wall
|
||||
name: Debug wall
|
||||
name: debug wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
- type: entity
|
||||
id: diamond_wall
|
||||
name: Diamond wall
|
||||
name: diamond wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -141,7 +141,7 @@
|
||||
|
||||
- type: entity
|
||||
id: gold_wall
|
||||
name: Gold wall
|
||||
name: gold wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -157,7 +157,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ice_wall
|
||||
name: Ice wall
|
||||
name: ice wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -173,7 +173,7 @@
|
||||
|
||||
- type: entity
|
||||
id: metal_wall
|
||||
name: Metal wall
|
||||
name: metal wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -189,7 +189,7 @@
|
||||
|
||||
- type: entity
|
||||
id: plasma_wall
|
||||
name: Plasma wall
|
||||
name: plasma wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -205,7 +205,7 @@
|
||||
|
||||
- type: entity
|
||||
id: plastic_wall
|
||||
name: Plastic wall
|
||||
name: plastic wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -221,7 +221,7 @@
|
||||
|
||||
- type: entity
|
||||
id: reinforced_wall
|
||||
name: Reinforced wall
|
||||
name: reinforced wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -241,7 +241,7 @@
|
||||
# Riveting
|
||||
- type: entity
|
||||
id: riveted_wall
|
||||
name: Riveted wall
|
||||
name: riveted wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -257,7 +257,7 @@
|
||||
|
||||
- type: entity
|
||||
id: sandstone_wall
|
||||
name: Sandstone wall
|
||||
name: sandstone wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -273,7 +273,7 @@
|
||||
|
||||
- type: entity
|
||||
id: silver_wall
|
||||
name: Silver wall
|
||||
name: silver wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -289,7 +289,7 @@
|
||||
|
||||
- type: entity
|
||||
id: solid_wall
|
||||
name: Solid wall
|
||||
name: solid wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -307,7 +307,7 @@
|
||||
|
||||
- type: entity
|
||||
id: uranium_wall
|
||||
name: Uranium wall
|
||||
name: uranium wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -323,7 +323,7 @@
|
||||
|
||||
- type: entity
|
||||
id: wood_wall
|
||||
name: Wood wall
|
||||
name: wood wall
|
||||
parent: base_wall
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: Window
|
||||
name: Window
|
||||
name: window
|
||||
description: Don't smudge up the glass down there.
|
||||
placement:
|
||||
mode: SnapgridCenter
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ReinforcedWindow
|
||||
name: Reinforced Window
|
||||
name: reinforced window
|
||||
parent: Window
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
- type: Puddle
|
||||
spill_sound: /Audio/effects/Fluids/splat.ogg
|
||||
recolor: true
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: InteractionOutline
|
||||
- type: Clickable
|
||||
- type: Collidable
|
||||
@@ -22,12 +22,12 @@
|
||||
hard: false
|
||||
|
||||
- type: entity
|
||||
name: Puddle
|
||||
name: puddle
|
||||
id: PuddleGeneric
|
||||
parent: PuddleSmear
|
||||
|
||||
- type: entity
|
||||
name: Gibblets
|
||||
name: gibblets
|
||||
id: PuddleGibblet
|
||||
parent: PuddleBase
|
||||
description: Holds spilt milk
|
||||
@@ -42,7 +42,7 @@
|
||||
variants: 5
|
||||
|
||||
- type: entity
|
||||
name: Smear
|
||||
name: smear
|
||||
id: PuddleSmear
|
||||
parent: PuddleBase
|
||||
description: Holds spilt milk
|
||||
@@ -57,7 +57,7 @@
|
||||
variants: 7
|
||||
|
||||
- type: entity
|
||||
name: Splatter
|
||||
name: splatter
|
||||
id: PuddleSplatter
|
||||
parent: PuddleBase
|
||||
description: Holds spilt milk
|
||||
@@ -72,7 +72,7 @@
|
||||
variants: 6
|
||||
|
||||
- type: entity
|
||||
name: Vomit
|
||||
name: vomit
|
||||
id: PuddleVomit
|
||||
parent: PuddleBase
|
||||
description:
|
||||
@@ -88,7 +88,7 @@
|
||||
recolor: false
|
||||
|
||||
- type: entity
|
||||
name: Toxins vomit
|
||||
name: toxins vomit
|
||||
id: PuddleVomitToxin
|
||||
parent: PuddleBase
|
||||
description: You probably don't want to get too close to this
|
||||
@@ -104,7 +104,7 @@
|
||||
recolor: false
|
||||
|
||||
- type: entity
|
||||
name: Writing
|
||||
name: writing
|
||||
id: PuddleWriting
|
||||
parent: PuddleBase
|
||||
description: Holds spilt milk
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: Clothing
|
||||
id: BackpackClothing
|
||||
name: Backpack
|
||||
name: backpack
|
||||
description: A convenient storage pack
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -23,7 +23,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: ClownPack
|
||||
name: Giggles Von Honkerton
|
||||
name: giggles von honkerton
|
||||
description: It's a backpack made by Honk! Co.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -38,7 +38,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SecPack
|
||||
name: Security Backpack
|
||||
name: security backpack
|
||||
description: It's a very robust backpack.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -54,7 +54,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: BackpackEngineering
|
||||
name: Engineering Backpack
|
||||
name: engineering backpack
|
||||
components:
|
||||
- type: Sprite
|
||||
state: engineering
|
||||
@@ -69,7 +69,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: BackpackMedical
|
||||
name: Medical Backpack
|
||||
name: medical backpack
|
||||
components:
|
||||
- type: Sprite
|
||||
state: medical
|
||||
@@ -84,7 +84,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: BackpackCaptain
|
||||
name: Captain's Backpack
|
||||
name: captain's backpack
|
||||
components:
|
||||
- type: Sprite
|
||||
state: captain
|
||||
@@ -99,7 +99,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: BackpackHolding
|
||||
name: Bag of Holding
|
||||
name: bag of holding
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -117,7 +117,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: Satchel
|
||||
name: Satchel
|
||||
name: satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel
|
||||
@@ -135,7 +135,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelEngineering
|
||||
name: Engineering Satchel
|
||||
name: engineering satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-engineering
|
||||
@@ -151,7 +151,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelMedical
|
||||
name: Medical Satchel
|
||||
name: medical satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-medical
|
||||
@@ -167,7 +167,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelChemistry
|
||||
name: Chemistry Satchel
|
||||
name: chemistry satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-chemistry
|
||||
@@ -183,7 +183,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelGenetics
|
||||
name: Genetics Satchel
|
||||
name: genetics satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-genetics
|
||||
@@ -199,7 +199,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelVirology
|
||||
name: Virology Satchel
|
||||
name: virology satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-virology
|
||||
@@ -215,7 +215,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelScience
|
||||
name: Science Satchel
|
||||
name: science satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-science
|
||||
@@ -230,7 +230,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelSecurity
|
||||
name: Security Satchel
|
||||
name: security satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-security
|
||||
@@ -246,7 +246,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelCaptain
|
||||
name: Captain's Satchel
|
||||
name: captain's satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-captain
|
||||
@@ -262,7 +262,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: SatchelHydroponics
|
||||
name: Hydroponics Satchel
|
||||
name: hydroponics satchel
|
||||
components:
|
||||
- type: Sprite
|
||||
state: satchel-hydroponics
|
||||
@@ -277,7 +277,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBag
|
||||
name: Messenger Bag
|
||||
name: messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier
|
||||
@@ -292,7 +292,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagChemistry
|
||||
name: Chemistry Messenger Bag
|
||||
name: chemistry messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-chemistry
|
||||
@@ -308,7 +308,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagMedical
|
||||
name: Medical Messenger Bag
|
||||
name: medical messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-medical
|
||||
@@ -324,7 +324,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagVirology
|
||||
name: Virology Messenger Bag
|
||||
name: virology messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-virology
|
||||
@@ -340,7 +340,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagEngineering
|
||||
name: Engineering Messenger Bag
|
||||
name: engineering messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-engineering
|
||||
@@ -356,7 +356,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagScience
|
||||
name: Science Messenger Bag
|
||||
name: science messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-science
|
||||
@@ -371,7 +371,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagCaptain
|
||||
name: Captain's Messenger Bag
|
||||
name: captain's messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-captain
|
||||
@@ -387,7 +387,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagHydroponics
|
||||
name: Hydroponics Messenger Bag
|
||||
name: hydroponics messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-hydroponics
|
||||
@@ -402,7 +402,7 @@
|
||||
- type: entity
|
||||
parent: BackpackClothing
|
||||
id: MessengerBagSecurity
|
||||
name: Security Messenger Bag
|
||||
name: security messenger bag
|
||||
components:
|
||||
- type: Sprite
|
||||
state: courier-security
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
- type: entity
|
||||
parent: BeltBase
|
||||
id: UtilityBeltClothing
|
||||
name: Utility Belt
|
||||
name: utility belt
|
||||
description: Belt for holding all your usual tools
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -35,7 +35,7 @@
|
||||
- type: entity
|
||||
parent: BeltBase
|
||||
id: SuspendersClothing
|
||||
name: Suspenders
|
||||
name: suspenders
|
||||
description: For holding your pants up.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: "Clothing"
|
||||
name: "clothing"
|
||||
id: Clothing
|
||||
parent: BaseItem
|
||||
abstract: true
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: Clothing
|
||||
id: RadioHeadsetEars
|
||||
name: Headset Radio
|
||||
name: headset radio
|
||||
description: The radio to keep up to date in real time with fun onboard station activities
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
- type: entity
|
||||
parent: GlassesBase
|
||||
id: MesonGlasses
|
||||
name: Optical Meson Scanners
|
||||
name: optical meson scanners
|
||||
description: The pinnacle of modern science, wallhacks in real life
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -26,7 +26,7 @@
|
||||
- type: entity
|
||||
parent: GlassesBase
|
||||
id: SunGlasses
|
||||
name: Sun Glasses
|
||||
name: sun glasses
|
||||
description: Useful both for security and cargonia
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -41,7 +41,7 @@
|
||||
- type: entity
|
||||
parent: GlassesBase
|
||||
id: SecGlasses
|
||||
name: Security Sunglasses
|
||||
name: security sunglasses
|
||||
description: Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes. Often worn by budget security officers.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesAssetProtectionRig
|
||||
name: Asset Protection Rig gloves
|
||||
name: asset protection rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -27,7 +27,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesAssetProtectionRigSealed
|
||||
name: Asset Protection Rig Sealed gloves
|
||||
name: asset protection rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -40,7 +40,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBlack
|
||||
name: Black gloves
|
||||
name: black gloves
|
||||
description: Regular gloves that do not keep you from frying
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -53,7 +53,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBlue
|
||||
name: Blue gloves
|
||||
name: blue gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -66,7 +66,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBoxingRed
|
||||
name: Boxing gloves (red)
|
||||
name: boxing gloves (red)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -79,7 +79,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBoxingBlue
|
||||
name: Boxing gloves (blue)
|
||||
name: boxing gloves (blue)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -92,7 +92,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBoxingGreen
|
||||
name: Boxing gloves (green)
|
||||
name: boxing gloves (green)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -105,7 +105,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBoxingYellow
|
||||
name: Boxing gloves (yellow)
|
||||
name: boxing gloves (yellow)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -118,7 +118,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesBrown
|
||||
name: Brown gloves
|
||||
name: brown gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -131,7 +131,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesCaptain
|
||||
name: Captain gloves
|
||||
name: captain gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -144,7 +144,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesCeRig
|
||||
name: CE Rig gloves
|
||||
name: ce rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -157,7 +157,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesCeRigSealed
|
||||
name: CE Rig Sealed gloves
|
||||
name: ce rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -170,7 +170,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesEngineeringRig
|
||||
name: Engineering Rig gloves
|
||||
name: engineering rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -183,7 +183,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesEngineeringRigSealed
|
||||
name: Engineering Rig Sealed gloves
|
||||
name: engineering rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -196,7 +196,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtCommanderRig
|
||||
name: ERT Commander Rig gloves
|
||||
name: ert commander rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -209,7 +209,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtCommanderRigSealed
|
||||
name: ERT Commander Rig Sealed gloves
|
||||
name: ert commander rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -222,7 +222,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtEngineerRig
|
||||
name: ERT Engineer Rig gloves
|
||||
name: ert engineer rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -235,7 +235,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtEngineerRigSealed
|
||||
name: ERT Engineer Rig Sealed gloves
|
||||
name: ert engineer rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -248,7 +248,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtMedicalRig
|
||||
name: ERT Medical Rig gloves
|
||||
name: ert medical rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -261,7 +261,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtMedicalRigSealed
|
||||
name: ERT Medical Rig Sealed gloves
|
||||
name: ert medical rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -274,7 +274,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtSecurityRig
|
||||
name: ERT Security Rig gloves
|
||||
name: ert security rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -287,7 +287,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesErtSecurityRigSealed
|
||||
name: ERT Security Rig Sealed gloves
|
||||
name: ert security rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -300,7 +300,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesEvaRig
|
||||
name: Eva Rig gloves
|
||||
name: EVA rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -313,7 +313,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesEvaRigSealed
|
||||
name: Eva Rig Sealed gloves
|
||||
name: EVA rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -326,7 +326,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesGray
|
||||
name: Gray gloves
|
||||
name: gray gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -339,7 +339,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesGreen
|
||||
name: Green gloves
|
||||
name: green gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -352,7 +352,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesHackerRig
|
||||
name: Hacker Rig gloves
|
||||
name: hacker rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -365,7 +365,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesHackerRigSealed
|
||||
name: Hacker Rig Sealed gloves
|
||||
name: hacker rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -378,7 +378,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesHazardRig
|
||||
name: Hazard Rig gloves
|
||||
name: hazard rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -391,7 +391,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesHazardRigSealed
|
||||
name: Hazard Rig Sealed gloves
|
||||
name: hazard rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -417,7 +417,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesIhsRig
|
||||
name: IHS Rig gloves
|
||||
name: IHS rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -430,7 +430,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesIhsRigSealed
|
||||
name: IHS Rig Sealed gloves
|
||||
name: IHS rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -443,7 +443,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesLatex
|
||||
name: Latex gloves
|
||||
name: latex gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -456,7 +456,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesLeather
|
||||
name: 'Botanist''s leather gloves'
|
||||
name: 'botanist''s leather gloves'
|
||||
description: 'These leather gloves protect against thorns, barbs, prickles, spikes and other harmful objects of floral origin. They''re also quite warm.'
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -470,7 +470,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesLightBrown
|
||||
name: Light brown gloves
|
||||
name: light brown gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -483,7 +483,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesMedicalRig
|
||||
name: Medical Rig gloves
|
||||
name: medical rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -496,7 +496,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesMedicalRigSealed
|
||||
name: Medical Rig Sealed gloves
|
||||
name: medical rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -509,7 +509,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesMercRig
|
||||
name: Merc Rig gloves
|
||||
name: merc rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -522,7 +522,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesMercRigSealed
|
||||
name: Merc Rig Sealed gloves
|
||||
name: merc rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -535,7 +535,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesNinjaRig
|
||||
name: Ninja Rig gloves
|
||||
name: ninja rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -548,7 +548,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesNinjaRigSealed
|
||||
name: Ninja Rig Sealed gloves
|
||||
name: ninja rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -561,7 +561,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesOrange
|
||||
name: Orange gloves
|
||||
name: orange gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -574,7 +574,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesPowerglove
|
||||
name: Power gloves
|
||||
name: power gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -587,7 +587,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesPowergloveActive
|
||||
name: Powergloves (Active)
|
||||
name: powergloves (active)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -600,7 +600,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesPurple
|
||||
name: Purple gloves
|
||||
name: purple gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -613,7 +613,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesRainbow
|
||||
name: Rainbow gloves
|
||||
name: rainbow gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -626,7 +626,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesRed
|
||||
name: Red gloves
|
||||
name: red gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -639,7 +639,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesRobohands
|
||||
name: Robohands gloves
|
||||
name: robohands gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -652,7 +652,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesScienceRig
|
||||
name: Science Rig gloves
|
||||
name: science rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -665,7 +665,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesScienceRigSealed
|
||||
name: Science Rig Sealed gloves
|
||||
name: science rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -678,7 +678,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesSecurityRig
|
||||
name: Security Rig gloves
|
||||
name: security rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -691,7 +691,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesSecurityRigSealed
|
||||
name: Security Rig Sealed gloves
|
||||
name: security rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -704,7 +704,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesStealthRig
|
||||
name: Stealth Rig gloves
|
||||
name: stealth rig gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -717,7 +717,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesStealthRigSealed
|
||||
name: Stealth Rig Sealed gloves
|
||||
name: stealth rig sealed gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -730,7 +730,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesSNinja
|
||||
name: S Ninja gloves
|
||||
name: S ninja gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -743,7 +743,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesSNinjak
|
||||
name: S Ninjak gloves
|
||||
name: S ninjak gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -756,7 +756,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesSNinjan
|
||||
name: S Ninjan gloves
|
||||
name: S ninjan gloves
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -769,7 +769,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesWhite
|
||||
name: White Gloves
|
||||
name: white gloves
|
||||
description:
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -782,7 +782,7 @@
|
||||
- type: entity
|
||||
parent: GlovesBase
|
||||
id: GlovesYellow
|
||||
name: Insulated gloves
|
||||
name: insulated gloves
|
||||
description: Electrical gloves that keep you from frying
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: Clothing
|
||||
id: IDCardStandard
|
||||
name: Identification Card
|
||||
name: identification card
|
||||
description: A card necessary to access various areas aboard the station
|
||||
abstract: true
|
||||
components:
|
||||
@@ -20,7 +20,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: AssistantIDCard
|
||||
name: Assistant ID Card
|
||||
name: assistant ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -37,7 +37,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: CaptainIDCard
|
||||
name: Captain ID Card
|
||||
name: captain ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -56,7 +56,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: SecurityIDCard
|
||||
name: Security ID Card
|
||||
name: security ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -73,7 +73,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: EngineeringIDCard
|
||||
name: Engineer ID Card
|
||||
name: engineer ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -90,7 +90,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: MedicalIDCard
|
||||
name: Medical ID Card
|
||||
name: medical ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -107,7 +107,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: CargoIDCard
|
||||
name: Cargo ID Card
|
||||
name: cargo ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -124,7 +124,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: ResearchIDCard
|
||||
name: Research ID Card
|
||||
name: research ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -141,7 +141,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: ClownIDCard
|
||||
name: Clown ID Card
|
||||
name: clown ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -158,7 +158,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: JanitorIDCard
|
||||
name: Janitor ID Card
|
||||
name: janitor ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -175,7 +175,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: BartenderIDCard
|
||||
name: Bartender ID Card
|
||||
name: bartender ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -192,7 +192,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: ChefIDCard
|
||||
name: Chef ID Card
|
||||
name: chef ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -209,7 +209,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: HoPIDCard
|
||||
name: Head of Personnel ID Card
|
||||
name: head of personnel ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -228,7 +228,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: CEIDCard
|
||||
name: Chief Engineer ID Card
|
||||
name: chief engineer ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -247,7 +247,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: CMOIDCard
|
||||
name: Chief Medical Officer ID Card
|
||||
name: chief medical officer ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -266,7 +266,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: RDIDCard
|
||||
name: Research Director ID Card
|
||||
name: research director ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -285,7 +285,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: HoSIDCard
|
||||
name: Head of Security ID Card
|
||||
name: head of security ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
@@ -304,7 +304,7 @@
|
||||
- type: entity
|
||||
parent: IDCardStandard
|
||||
id: CentcomIDCard
|
||||
name: Command Officer ID Card
|
||||
name: command officer ID card
|
||||
components:
|
||||
- type: Sprite
|
||||
layers:
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: OldGasMaskClothing
|
||||
name: Old Gas Mask
|
||||
name: old gas mask
|
||||
description: An old, dusty mask. Yet still dutifully functional.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -24,7 +24,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: GasMaskClothing
|
||||
name: Gas Mask
|
||||
name: gas mask
|
||||
description: Regulations require these to be stocked after the fourth coolant leak
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -39,7 +39,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: BreathMaskClothing
|
||||
name: Breath Mask
|
||||
name: breath mask
|
||||
description: Might as well keep this on 24/7
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -54,7 +54,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: MaskClown
|
||||
name: Clown Wig and Mask
|
||||
name: clown wig and mask
|
||||
description: A true prankster's facial attire. A clown is incomplete without his wig and mask.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -69,7 +69,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: MaskJoy
|
||||
name: Joy Mask
|
||||
name: joy mask
|
||||
description:
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -84,7 +84,7 @@
|
||||
- type: entity
|
||||
parent: MasksBase
|
||||
id: MaskMime
|
||||
name: Mime Mask
|
||||
name: mime mask
|
||||
description:
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesAssetProtectionRig
|
||||
name: Asset Protection Rig shoes
|
||||
name: asset protection rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -27,7 +27,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesAssetProtectionRigSealed
|
||||
name: Asset Protection Rig Sealed shoes
|
||||
name: asset protection rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -40,7 +40,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesAtmosMagboots0
|
||||
name: Atmos magboots (off)
|
||||
name: atmos magboots (off)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -53,7 +53,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesAtmosMagboots1
|
||||
name: Atmos magboots (on)
|
||||
name: atmos magboots (on)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -66,7 +66,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesBlack
|
||||
name: Black shoes
|
||||
name: black shoes
|
||||
description: Don't take them off at your office Christmas party
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -79,7 +79,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesBlue
|
||||
name: Blue shoes
|
||||
name: blue shoes
|
||||
description: Don't take them off at your office Christmas party
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -92,7 +92,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesBoots
|
||||
name: Boots
|
||||
name: boots
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -105,7 +105,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesBrown
|
||||
name: Brown shoes
|
||||
name: brown shoes
|
||||
description: A pair of brown shoes.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -118,7 +118,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesCeRig
|
||||
name: CE Rig shoes
|
||||
name: ce rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -131,7 +131,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesCeRigSealed
|
||||
name: CE Rig Sealed shoes
|
||||
name: ce rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -144,7 +144,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesChef
|
||||
name: Chef shoes
|
||||
name: chef shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -157,7 +157,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesCowboy
|
||||
name: Cowboy shoes
|
||||
name: cowboy shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -170,7 +170,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesCult
|
||||
name: Cult shoes
|
||||
name: cult shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -183,7 +183,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesDetective
|
||||
name: Detective shoes
|
||||
name: detective shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -196,7 +196,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesDigiboots
|
||||
name: Digiboots
|
||||
name: digiboots
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -209,7 +209,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesEngineeringRig
|
||||
name: Engineering Rig shoes
|
||||
name: engineering rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -222,7 +222,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesEngineeringRigSealed
|
||||
name: Engineering Rig Sealed shoes
|
||||
name: engineering rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -235,7 +235,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtCommanderRig
|
||||
name: ERT Commander Rig shoes
|
||||
name: ert commander rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -248,7 +248,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtCommanderRigSealed
|
||||
name: ERT Commander Rig Sealed shoes
|
||||
name: ert commander rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -261,7 +261,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtEngineerRig
|
||||
name: ERT Engineer Rig shoes
|
||||
name: ert engineer rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -274,7 +274,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtEngineerRigSealed
|
||||
name: ERT Engineer Rig Sealed shoes
|
||||
name: ert engineer rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -287,7 +287,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtMedicalRig
|
||||
name: ERT Medical Rig shoes
|
||||
name: ert medical rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -300,7 +300,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtMedicalRigSealed
|
||||
name: ERT Medical Rig Sealed shoes
|
||||
name: ert medical rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -313,7 +313,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtSecurityRig
|
||||
name: ERT Security Rig shoes
|
||||
name: ert security rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -326,7 +326,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesErtSecurityRigSealed
|
||||
name: ERT Security Rig Sealed shoes
|
||||
name: ert security rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -339,7 +339,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesEvaRig
|
||||
name: EVA Rig shoes
|
||||
name: EVA rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -352,7 +352,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesEvaRigSealed
|
||||
name: EVA Rig Sealed shoes
|
||||
name: EVA rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -365,7 +365,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesFlippers
|
||||
name: Flippers
|
||||
name: flippers
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -378,7 +378,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesGaloshes
|
||||
name: Galoshes shoes
|
||||
name: galoshes shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -391,7 +391,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesGreen
|
||||
name: Green shoes
|
||||
name: green shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -404,7 +404,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesHackerRig
|
||||
name: Hacker Rig shoes
|
||||
name: hacker rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -417,7 +417,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesHackerRigSealed
|
||||
name: Hacker Rig Sealed shoes
|
||||
name: hacker rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -430,7 +430,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesHazardRig
|
||||
name: Hazard Rig shoes
|
||||
name: hazard rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -443,7 +443,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesHazardRigSealed
|
||||
name: Hazard Rig Sealed shoes
|
||||
name: hazard rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -456,7 +456,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesIhsRig
|
||||
name: IHS Rig shoes
|
||||
name: IHS rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -469,7 +469,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesIhsRigOld
|
||||
name: IHS Rig Old shoes
|
||||
name: IHS rig old shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -482,7 +482,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesIhsRigSealed
|
||||
name: IHS Rig Sealed shoes
|
||||
name: IHS rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -495,7 +495,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesIhsRigSealedOld
|
||||
name: IHS Rig Sealed Old shoes
|
||||
name: IHS rig sealed old shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -508,7 +508,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesLeather
|
||||
name: Leather shoes
|
||||
name: leather shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -521,7 +521,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMagboots0
|
||||
name: Magboots (off)
|
||||
name: magboots (off)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -534,7 +534,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMagboots1
|
||||
name: Magboots (on)
|
||||
name: magboots (on)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -547,7 +547,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMedicalRig
|
||||
name: Medical Rig shoes
|
||||
name: medical rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -560,7 +560,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMedicalRigSealed
|
||||
name: Medical Rig Sealed shoes
|
||||
name: medical rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -573,7 +573,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMercboots0
|
||||
name: Merc boots
|
||||
name: merc boots
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -586,7 +586,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMercboots1
|
||||
name: Merc boots
|
||||
name: merc boots
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -599,7 +599,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMercRig
|
||||
name: Merc Rig shoes
|
||||
name: merc rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -612,7 +612,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMercRigSealed
|
||||
name: Merc Rig Sealed shoes
|
||||
name: merc rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -625,7 +625,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesMime
|
||||
name: Mime shoes
|
||||
name: mime shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -638,7 +638,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesNinjaRig
|
||||
name: Ninja Rig shoes
|
||||
name: ninja rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -651,7 +651,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesNinjaRigSealed
|
||||
name: Ninja Rig Sealed shoes
|
||||
name: ninja rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -664,7 +664,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesOrange
|
||||
name: Orange shoes
|
||||
name: orange shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -677,7 +677,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesOrange1
|
||||
name: Orange shoes
|
||||
name: orange shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -690,7 +690,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesPurple
|
||||
name: Purple shoes
|
||||
name: purple shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -703,7 +703,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesRainbow
|
||||
name: Rainbow shoes
|
||||
name: rainbow shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -716,7 +716,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesRed
|
||||
name: Red shoes
|
||||
name: red shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -729,7 +729,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesReinforced
|
||||
name: Reinforced shoes
|
||||
name: reinforced shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -742,7 +742,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesScienceRig
|
||||
name: Science Rig shoes
|
||||
name: science rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -755,7 +755,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesScienceRigSealed
|
||||
name: Science Rig Sealed shoes
|
||||
name: science rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -768,7 +768,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSecurityRig
|
||||
name: Security Rig shoes
|
||||
name: security rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -781,7 +781,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSecurityRigSealed
|
||||
name: Security Rig Sealed shoes
|
||||
name: security rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -794,7 +794,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSlippers
|
||||
name: Slippers
|
||||
name: slippers
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -807,7 +807,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSlippersWorn
|
||||
name: Slippers (Worn)
|
||||
name: slippers (worn)
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -820,7 +820,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSpringjacks
|
||||
name: Springjacks
|
||||
name: springjacks
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -833,7 +833,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesStealthRig
|
||||
name: Stealth Rig shoes
|
||||
name: stealth rig shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -846,7 +846,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesStealthRigSealed
|
||||
name: Stealth Rig Sealed shoes
|
||||
name: stealth rig sealed shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -859,7 +859,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSwat
|
||||
name: Swat shoes
|
||||
name: swat shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -872,7 +872,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesSNinja
|
||||
name: S Ninja shoes
|
||||
name: S ninja shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -885,7 +885,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesTourist
|
||||
name: Tourist shoes
|
||||
name: tourist shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -898,7 +898,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesWhite
|
||||
name: White shoes
|
||||
name: white shoes
|
||||
description: Don't take them off at your office Christmas party
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -911,7 +911,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesWizard
|
||||
name: Wizard shoes
|
||||
name: wizard shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -924,7 +924,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesWorkboots
|
||||
name: Workboots shoes
|
||||
name: workboots shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -937,7 +937,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesYellow
|
||||
name: Yellow shoes
|
||||
name: yellow shoes
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesClown
|
||||
name: Clown shoes
|
||||
name: clown shoes
|
||||
description: The prankster's standard-issue clowning shoes. Damn they're huge!
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -10,6 +10,6 @@
|
||||
sprite: Clothing/Shoes/clown.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Shoes/clown.rsi
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: FootstepModifier
|
||||
footstepSoundCollection: footstep_clown
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: ShoesBase
|
||||
id: ShoesJackboots
|
||||
name: Jackboots
|
||||
name: jackboots
|
||||
description: Nanotrasen-issue Security combat boots for combat scenarios or combat situations. All combat, all the time.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -10,7 +10,7 @@
|
||||
sprite: Clothing/Shoes/jackboots.rsi
|
||||
- type: Clothing
|
||||
sprite: Clothing/Shoes/jackboots.rsi
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: FootstepModifier
|
||||
footstepSoundCollection: footstep_heavy
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: JanitorUniform
|
||||
name: Janitor Jumpsuit
|
||||
name: janitor jumpsuit
|
||||
description: The jumpsuit for the poor sop with a mop
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -27,7 +27,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformEngineering
|
||||
name: Engineering Jumpsuit
|
||||
name: engineering jumpsuit
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Uniforms/uniform_engineering.rsi
|
||||
@@ -44,7 +44,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformAssistant
|
||||
name: Assistant Jumpsuit
|
||||
name: assistant jumpsuit
|
||||
components:
|
||||
- type: Sprite
|
||||
sprite: Clothing/Uniforms/uniform_assistant.rsi
|
||||
@@ -60,7 +60,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformClown
|
||||
name: Clown Suit
|
||||
name: clown suit
|
||||
description: HONK!
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -78,7 +78,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformSec
|
||||
name: Security Jumpsuit
|
||||
name: security jumpsuit
|
||||
description: A jumpsuit made of strong material, providing robust protection.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -95,7 +95,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformCargoTech
|
||||
name: Cargo Technician Jumpsuit
|
||||
name: cargo technician jumpsuit
|
||||
description: Shooooorts! They're comfy and easy to wear!
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -112,7 +112,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformChef
|
||||
name: Chef's Uniform
|
||||
name: chef's uniform
|
||||
description: Can't cook without this.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -129,7 +129,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformCaptain
|
||||
name: Captain's Jumpsuit
|
||||
name: captain's jumpsuit
|
||||
description: It's a blue jumpsuit with some gold markings denoting the rank of "Captain".
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -146,7 +146,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformHoP
|
||||
name: Head of Personnel Jumpsuit
|
||||
name: head of personnel jumpsuit
|
||||
description: It's a jumpsuit worn by someone who works in the position of Head of Personnel.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -163,7 +163,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformChiefEngineer
|
||||
name: Chief Engineer Jumpsuit
|
||||
name: chief engineer jumpsuit
|
||||
description: It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of Chief Engineer. It has minor radiation shielding.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -180,7 +180,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformCMO
|
||||
name: Chief Medical Officer Jumpsuit
|
||||
name: chief medical officer jumpsuit
|
||||
description: It's a jumpsuit worn by those with the experience to be Chief Medical Officer. It provides minor biological protection.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -197,7 +197,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformMedicalDoctor
|
||||
name: Medical Doctor Jumpsuit
|
||||
name: medical doctor jumpsuit
|
||||
description: It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -214,7 +214,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformScientist
|
||||
name: Scientist Jumpsuit
|
||||
name: scientist jumpsuit
|
||||
description: It's made of a special fiber that provides minor protection against explosives. It has markings that denote the wearer as a scientist.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -231,7 +231,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformResearchDirector
|
||||
name: Research Director Vest Suit
|
||||
name: research director vest suit
|
||||
description: It's a suit worn by those with the know-how to achieve the position of Research Director. Its fabric provides minor protection from biological contaminants.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -248,7 +248,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformMime
|
||||
name: Mime's Clothes
|
||||
name: mime's clothes
|
||||
description: ...
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -265,7 +265,7 @@
|
||||
- type: entity
|
||||
parent: UniformBase
|
||||
id: UniformHoS
|
||||
name: Head of Security Jumpsuit
|
||||
name: head of security jumpsuit
|
||||
description: A security jumpsuit decorated for those few with the dedication to achieve the position of Head of Security.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -16,7 +16,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkAbsintheBottleFull
|
||||
name: Jailbreaker Verte
|
||||
name: jailbreaker verte
|
||||
description: One sip of this and you just know you're gonna have a good time.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -28,7 +28,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkAlcoGreenFull
|
||||
name: Emeraldine Melon Liquor
|
||||
name: emeraldine melon liquor
|
||||
description: A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -40,7 +40,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkAleBottleFull
|
||||
name: Magm-Ale
|
||||
name: magm-ale
|
||||
description: A true dorf's drink of choice.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -57,7 +57,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkBottleOfNothingFull
|
||||
name: Bottle of nothing
|
||||
name: bottle of nothing
|
||||
description: A bottle filled with nothing
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -69,7 +69,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkCognacBottleFull
|
||||
name: Cognac bottle
|
||||
name: cognac bottle
|
||||
description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -86,7 +86,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkGinBottleFull
|
||||
name: Griffeater gin bottle
|
||||
name: griffeater gin bottle
|
||||
description: A bottle of high quality gin, produced in the New London Space Station.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -98,7 +98,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkGoldschlagerBottleFull
|
||||
name: Goldschlager bottle
|
||||
name: goldschlager bottle
|
||||
description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -110,7 +110,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkKahluaBottleFull
|
||||
name: Kahlua bottle
|
||||
name: kahlua bottle
|
||||
description: A widely known, Mexican coffee-flavoured liqueur. In production since 1936, HONK
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -127,7 +127,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkPatronBottleFull
|
||||
name: Wrapp artiste patron bottle
|
||||
name: wrapp artiste patron bottle
|
||||
description: Silver laced tequilla, served in space night clubs across the galaxy.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -139,7 +139,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkPoisonWinebottleFull
|
||||
name: Warlock's velvet bottle
|
||||
name: warlock's velvet bottle
|
||||
description: What a delightful packaging for a surely high quality wine! The vintage must be amazing!
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -151,7 +151,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkRumbottleFull
|
||||
name: Captain Pete's cuban spiced rum
|
||||
name: captain pete's cuban spiced rum
|
||||
description: This isn't just rum, oh no. It's practically GRIFF in a bottle.
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -163,7 +163,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkTequilabottleFull
|
||||
name: Caccavo guaranteed quality tequila bottle
|
||||
name: caccavo guaranteed quality tequila bottle
|
||||
description: Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients!
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -175,7 +175,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkVermouthBottleFull
|
||||
name: Goldeneye vermouth bottle
|
||||
name: goldeneye vermouth bottle
|
||||
description: Sweet, sweet dryness~
|
||||
components:
|
||||
- type: Drink
|
||||
@@ -187,7 +187,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkVodkaBottleFull
|
||||
name: Vodka bottle
|
||||
name: vodka bottle
|
||||
description: Aah, vodka. Prime choice of drink AND fuel by Russians worldwide.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -204,7 +204,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkWhiskeyBottleFull
|
||||
name: Uncle Git's special reserve
|
||||
name: uncle git's special reserve
|
||||
description: A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -221,7 +221,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBottleBaseFull
|
||||
id: DrinkWineBottleFull
|
||||
name: Doublebearded bearded special wine bottle
|
||||
name: doublebearded bearded special wine bottle
|
||||
description: A faint aura of unease and asspainery surrounds the bottle.
|
||||
components:
|
||||
- type: Solution
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkColaCan
|
||||
name: Space cola
|
||||
name: space cola
|
||||
description: A refreshing beverage.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -33,7 +33,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkIceTeaCan
|
||||
name: Ice tea can
|
||||
name: ice tea can
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -44,7 +44,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkLemonLimeCan
|
||||
name: Lemon-lime can
|
||||
name: lemon-lime can
|
||||
description: You wanted ORANGE. It gave you Lemon Lime.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -55,7 +55,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkPurpleCan
|
||||
name: Purple Can
|
||||
name: purple can
|
||||
description: ''
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -66,7 +66,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkSpaceMountainWindCan
|
||||
name: Space mountain wind can
|
||||
name: space mountain wind can
|
||||
description: Blows right through you like a space wind.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -77,7 +77,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkSpaceUpCan
|
||||
name: Space-up can
|
||||
name: space-up can
|
||||
description: Tastes like a hull breach in your mouth.
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -88,7 +88,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkStarkistCan
|
||||
name: Starkist can
|
||||
name: starkist can
|
||||
description: The taste of a star in liquid form. And, a bit of tuna...?
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -99,7 +99,7 @@
|
||||
- type: entity
|
||||
parent: DrinkCanBaseFull
|
||||
id: DrinkThirteenLokoCan
|
||||
name: Thirteen loko can
|
||||
name: thirteen loko can
|
||||
description: The MBO has advised crew members that consumption of Thirteen Loko may result in seizures, blindness, drunkeness, or even death. Please Drink Responsibly.
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
- type: entity
|
||||
parent: BaseItem
|
||||
id: DrinkBaseCup
|
||||
name: Base cup
|
||||
name: base cup
|
||||
abstract: true
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -19,7 +19,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkGoldenCup
|
||||
name: Golden cup
|
||||
name: golden cup
|
||||
description: A golden cup
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -32,7 +32,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkPitcher
|
||||
name: Insulated pitcher
|
||||
name: insulated pitcher
|
||||
description: A stainless steel insulated pitcher. Everyone's best friend in the morning.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -51,7 +51,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMug
|
||||
name: Mug
|
||||
name: mug
|
||||
description: A plain white mug.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -70,7 +70,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugBlack
|
||||
name: Mug Black
|
||||
name: mug black
|
||||
description: A sleek black mug.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -89,7 +89,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugBlue
|
||||
name: Mug Blue
|
||||
name: mug blue
|
||||
description: A blue and black mug.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -108,7 +108,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugGreen
|
||||
name: Mug Green
|
||||
name: mug green
|
||||
description: A pale green and pink mug.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -127,7 +127,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugHeart
|
||||
name: Mug Heart
|
||||
name: mug heart
|
||||
description: A white mug, it prominently features a red heart.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -146,7 +146,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugMetal
|
||||
name: Mug Metal
|
||||
name: mug metal
|
||||
description: A metal mug. You're not sure which metal.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -165,7 +165,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugMoebius
|
||||
name: Mug Moebius
|
||||
name: mug moebius
|
||||
description: A mug with a Moebius Laboratories logo on it. Not even your morning coffee is safe from corporate advertising.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -203,7 +203,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugRainbow
|
||||
name: Mug Rainbow
|
||||
name: mug rainbow
|
||||
description: A rainbow mug. The colors are almost as blinding as a welder.
|
||||
components:
|
||||
- type: Solution
|
||||
@@ -222,7 +222,7 @@
|
||||
- type: entity
|
||||
parent: DrinkBaseCup
|
||||
id: DrinkMugRed
|
||||
name: Mug Red
|
||||
name: mug red
|
||||
description: A red and black mug.
|
||||
components:
|
||||
- type: Solution
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -13,7 +13,7 @@
|
||||
# Containers
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Apple cake
|
||||
name: apple cake
|
||||
id: FoodContainerAppleCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Banana bread
|
||||
name: banana bread
|
||||
id: FoodContainerBananaBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Birthday cake
|
||||
name: birthday cake
|
||||
id: FoodContainerBirthdayCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -53,7 +53,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Brain cake
|
||||
name: brain cake
|
||||
id: FoodContainerBrainCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -66,7 +66,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Bread
|
||||
name: bread
|
||||
id: FoodContainerBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -79,7 +79,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Carrot cake
|
||||
name: carrot cake
|
||||
id: FoodContainerCarrotCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -92,7 +92,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Cheesecake
|
||||
name: cheesecake
|
||||
id: FoodContainerCheeseCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -105,7 +105,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Cheese wheel
|
||||
name: cheese wheel
|
||||
id: FoodContainerCheeseWheel
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -118,7 +118,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Chocolate cake
|
||||
name: chocolate cake
|
||||
id: FoodContainerChocolateCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -131,7 +131,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Cream cheese bread
|
||||
name: cream cheese bread
|
||||
id: FoodContainerCreamCheeseBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -144,7 +144,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Donut box
|
||||
name: donut box
|
||||
id: FoodContainerDonutBox
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -165,7 +165,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Egg box (shut)
|
||||
name: egg box (shut)
|
||||
id: FoodContainerEggBoxShut
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -179,7 +179,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Egg box
|
||||
name: egg box
|
||||
id: FoodContainerEggBox
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -201,7 +201,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Lemon cake
|
||||
name: lemon cake
|
||||
id: FoodContainerLemonCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -214,7 +214,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Lime cake
|
||||
name: lime cake
|
||||
id: FoodContainerLimeCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -227,7 +227,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Meat bread
|
||||
name: meat bread
|
||||
id: FoodContainerMeatBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -240,7 +240,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Meat pizza
|
||||
name: meat pizza
|
||||
id: FoodContainerMeatPizza
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -255,7 +255,7 @@
|
||||
# These two will probably get moved one day
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Monkey cube box
|
||||
name: monkey cube box
|
||||
id: FoodContainerMonkeyCubeBox
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -268,7 +268,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Monkey cube wrap
|
||||
name: monkey cube wrap
|
||||
id: FoodContainerMonkeyCubeWrap
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -281,7 +281,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Mushroom pizza
|
||||
name: mushroom pizza
|
||||
id: FoodContainerMushroomPizza
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -295,7 +295,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Orange cake
|
||||
name: orange cake
|
||||
id: FoodContainerOrangeCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -309,7 +309,7 @@
|
||||
# TODO: Probably replace it with a stacking thing
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Pizza box stack
|
||||
name: pizza box stack
|
||||
id: FoodContainerPizzaBoxStack
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -328,7 +328,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Pizza box
|
||||
name: pizza box
|
||||
id: FoodContainerPizzaBox
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -345,7 +345,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Margherita pizza
|
||||
name: margherita pizza
|
||||
id: FoodContainerMargheritaPizza
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -359,7 +359,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Plain cake
|
||||
name: plain cake
|
||||
id: FoodContainerPlainCake
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -373,7 +373,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Pumpkin pie
|
||||
name: pumpkin pie
|
||||
id: FoodContainerPumpkinPie
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -386,7 +386,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Tofu bread
|
||||
name: tofu bread
|
||||
id: FoodContainerTofuBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -399,7 +399,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Vegetable pizza
|
||||
name: vegetable pizza
|
||||
id: FoodContainerVegetablePizza
|
||||
components:
|
||||
- type: FoodContainer
|
||||
@@ -413,7 +413,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: FoodContainerBase
|
||||
name: Xenomeat bread
|
||||
name: xenomeat bread
|
||||
id: FoodContainerXenomeatBread
|
||||
components:
|
||||
- type: FoodContainer
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
parent: BaseItem
|
||||
id: ReagentContainerFlour
|
||||
name: Flour
|
||||
name: flour
|
||||
description: Not to be confused with flower.
|
||||
components:
|
||||
- type: Solution
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
sprite: Objects/Trash/4no_raisins.rsi
|
||||
|
||||
- type: entity
|
||||
name: Candy (trash)
|
||||
name: candy (trash)
|
||||
parent: TrashBase
|
||||
id: TrashCandy
|
||||
components:
|
||||
@@ -31,7 +31,7 @@
|
||||
sprite: Objects/Trash/candy.rsi
|
||||
|
||||
- type: entity
|
||||
name: Cheesie honkers (trash)
|
||||
name: cheesie honkers (trash)
|
||||
parent: TrashBase
|
||||
id: TrashCheesieHonkers
|
||||
components:
|
||||
@@ -41,7 +41,7 @@
|
||||
sprite: Objects/Trash/cheesie_honkers.rsi
|
||||
|
||||
- type: entity
|
||||
name: Chips (trash)
|
||||
name: chips (trash)
|
||||
parent: TrashBase
|
||||
id: TrashChips
|
||||
components:
|
||||
@@ -51,7 +51,7 @@
|
||||
sprite: Objects/Trash/chips.rsi
|
||||
|
||||
- type: entity
|
||||
name: Corn cob (trash)
|
||||
name: corn cob (trash)
|
||||
parent: TrashBase
|
||||
id: TrashCornCob
|
||||
components:
|
||||
@@ -61,7 +61,7 @@
|
||||
sprite: Objects/Trash/corncob.rsi
|
||||
|
||||
- type: entity
|
||||
name: Liquid food (trash)
|
||||
name: liquid food (trash)
|
||||
parent: TrashBase
|
||||
id: TrashLiquidFood
|
||||
components:
|
||||
@@ -71,7 +71,7 @@
|
||||
sprite: Objects/Trash/liquidfood.rsi
|
||||
|
||||
- type: entity
|
||||
name: Pistachos pack (trash)
|
||||
name: pistachos pack (trash)
|
||||
parent: TrashBase
|
||||
id: TrashPistachiosPack
|
||||
components:
|
||||
@@ -81,7 +81,7 @@
|
||||
sprite: Objects/Trash/pistachios_pack.rsi
|
||||
|
||||
- type: entity
|
||||
name: Messy pizza box (trash)
|
||||
name: messy pizza box (trash)
|
||||
parent: TrashBase
|
||||
id: TrashPizzaBoxMessy
|
||||
components:
|
||||
@@ -91,7 +91,7 @@
|
||||
sprite: Objects/Trash/pizzabox_messy.rsi
|
||||
|
||||
- type: entity
|
||||
name: Plastic bag (trash)
|
||||
name: plastic bag (trash)
|
||||
parent: TrashBase
|
||||
id: TrashPlasticBag
|
||||
components:
|
||||
@@ -101,7 +101,7 @@
|
||||
sprite: Objects/Trash/plasticbag.rsi
|
||||
|
||||
- type: entity
|
||||
name: Plate (trash)
|
||||
name: plate (trash)
|
||||
parent: TrashBase
|
||||
id: TrashPlate
|
||||
components:
|
||||
@@ -111,7 +111,7 @@
|
||||
sprite: Objects/Trash/plate.rsi
|
||||
|
||||
- type: entity
|
||||
name: Popcorn (trash)
|
||||
name: popcorn (trash)
|
||||
parent: TrashBase
|
||||
id: TrashPopcorn
|
||||
components:
|
||||
@@ -121,7 +121,7 @@
|
||||
sprite: Objects/Trash/popcorn.rsi
|
||||
|
||||
- type: entity
|
||||
name: Semki pack (trash)
|
||||
name: semki pack (trash)
|
||||
parent: TrashBase
|
||||
id: TrashSemkiPack
|
||||
components:
|
||||
@@ -131,7 +131,7 @@
|
||||
sprite: Objects/Trash/semki_pack.rsi
|
||||
|
||||
- type: entity
|
||||
name: Snack bowl (trash)
|
||||
name: snack bowl (trash)
|
||||
parent: TrashBase
|
||||
id: TrashSnackBowl
|
||||
components:
|
||||
@@ -151,7 +151,7 @@
|
||||
sprite: Objects/Trash/sosjerky.rsi
|
||||
|
||||
- type: entity
|
||||
name: Syndi cakes (trash)
|
||||
name: syndi cakes (trash)
|
||||
parent: TrashBase
|
||||
id: TrashSyndiCakes
|
||||
components:
|
||||
@@ -161,7 +161,7 @@
|
||||
sprite: Objects/Trash/syndi_cakes.rsi
|
||||
|
||||
- type: entity
|
||||
name: Tasty bread (trash)
|
||||
name: tasty bread (trash)
|
||||
parent: TrashBase
|
||||
id: TrashTastyBread
|
||||
components:
|
||||
@@ -172,7 +172,7 @@
|
||||
|
||||
# TODO: Container
|
||||
- type: entity
|
||||
name: Trash bag (trash)
|
||||
name: trash bag (trash)
|
||||
parent: TrashBase
|
||||
id: TrashBag
|
||||
components:
|
||||
@@ -182,7 +182,7 @@
|
||||
sprite: Objects/Trash/trashbag.rsi
|
||||
|
||||
- type: entity
|
||||
name: Tray (trash)
|
||||
name: tray (trash)
|
||||
parent: TrashBase
|
||||
id: TrashTray
|
||||
components:
|
||||
@@ -192,7 +192,7 @@
|
||||
sprite: Objects/Trash/tray.rsi
|
||||
|
||||
- type: entity
|
||||
name: Waffles (trash)
|
||||
name: waffles (trash)
|
||||
parent: TrashBase
|
||||
id: TrashWaffles
|
||||
components:
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
# These can still be used as containers
|
||||
- type: entity
|
||||
name: Base empty bottle
|
||||
name: base empty bottle
|
||||
parent: BaseItem
|
||||
abstract: true
|
||||
id: DrinkBottleBaseEmpty
|
||||
components:
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: Sprite
|
||||
state: icon
|
||||
- type: Icon
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
# Containers
|
||||
- type: entity
|
||||
name: Jailbreaker Verte bottle
|
||||
name: jailbreaker verte bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleAbsinthe
|
||||
components:
|
||||
@@ -30,7 +30,7 @@
|
||||
sprite: Objects/TrashDrinks/absinthebottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Alcohol bottle
|
||||
name: alcohol bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleAlcoClear
|
||||
components:
|
||||
@@ -40,7 +40,7 @@
|
||||
sprite: Objects/TrashDrinks/alco-clear.rsi
|
||||
|
||||
- type: entity
|
||||
name: Ale bottle
|
||||
name: ale bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleAle
|
||||
components:
|
||||
@@ -50,7 +50,7 @@
|
||||
sprite: Objects/TrashDrinks/alebottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Beer bottle
|
||||
name: beer bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleBeer
|
||||
components:
|
||||
@@ -60,7 +60,7 @@
|
||||
sprite: Objects/TrashDrinks/beer_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Broken bottle
|
||||
name: broken bottle
|
||||
parent: DrinkBottleBaseEmpty # Can't hold liquids
|
||||
id: DrinkBrokenBottle
|
||||
components:
|
||||
@@ -70,7 +70,7 @@
|
||||
sprite: Objects/TrashDrinks/broken_bottle.rsi
|
||||
|
||||
- type: entity
|
||||
name: Cognac bottle
|
||||
name: cognac bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleCognac
|
||||
components:
|
||||
@@ -80,7 +80,7 @@
|
||||
sprite: Objects/TrashDrinks/cognacbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Griffeater gin bottle
|
||||
name: griffeater gin bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleGin
|
||||
components:
|
||||
@@ -90,7 +90,7 @@
|
||||
sprite: Objects/TrashDrinks/ginbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Goldschlager bottle
|
||||
name: goldschlager bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleGoldschlager
|
||||
components:
|
||||
@@ -100,7 +100,7 @@
|
||||
sprite: Objects/TrashDrinks/goldschlagerbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Kahlua bottle
|
||||
name: kahlua bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleKahlua
|
||||
components:
|
||||
@@ -110,7 +110,7 @@
|
||||
sprite: Objects/TrashDrinks/kahluabottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: NT Cahors bottle
|
||||
name: nt cahors bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleNTCahors
|
||||
components:
|
||||
@@ -120,7 +120,7 @@
|
||||
sprite: Objects/TrashDrinks/ntcahors_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Patron bottle
|
||||
name: patron bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottlePatron
|
||||
components:
|
||||
@@ -130,7 +130,7 @@
|
||||
sprite: Objects/TrashDrinks/patronbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Poison wine bottle
|
||||
name: poison wine bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottlePoisonWine
|
||||
components:
|
||||
@@ -140,7 +140,7 @@
|
||||
sprite: Objects/TrashDrinks/pwinebottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Rum bottle
|
||||
name: rum bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleRum
|
||||
components:
|
||||
@@ -150,7 +150,7 @@
|
||||
sprite: Objects/TrashDrinks/rumbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Tequila bottle
|
||||
name: tequila bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleTequila
|
||||
components:
|
||||
@@ -160,7 +160,7 @@
|
||||
sprite: Objects/TrashDrinks/tequillabottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Vermouth bottle
|
||||
name: vermouth bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleVermouth
|
||||
components:
|
||||
@@ -170,7 +170,7 @@
|
||||
sprite: Objects/TrashDrinks/vermouthbottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Vodka bottle
|
||||
name: vodka bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleVodka
|
||||
components:
|
||||
@@ -180,7 +180,7 @@
|
||||
sprite: Objects/TrashDrinks/vodkabottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Whiskey bottle
|
||||
name: whiskey bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleWhiskey
|
||||
components:
|
||||
@@ -190,7 +190,7 @@
|
||||
sprite: Objects/TrashDrinks/whiskeybottle_empty.rsi
|
||||
|
||||
- type: entity
|
||||
name: Wine bottle
|
||||
name: wine bottle
|
||||
parent: DrinkBottleBaseEmpty
|
||||
id: DrinkBottleWine
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: BaseHandheldInstrument
|
||||
name: basehandheldinstrument
|
||||
parent: BaseItem
|
||||
id: BaseHandheldInstrument
|
||||
abstract: true
|
||||
@@ -12,7 +12,7 @@
|
||||
type: InstrumentBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
name: Synthesizer
|
||||
name: synthesizer
|
||||
parent: BaseHandheldInstrument
|
||||
id: SynthesizerInstrument
|
||||
components:
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Acoustic Guitar
|
||||
name: acoustic guitar
|
||||
parent: BaseHandheldInstrument
|
||||
id: AcousticGuitarInstrument
|
||||
components:
|
||||
@@ -47,7 +47,7 @@
|
||||
sprite: Objects/Instruments/guitar.rsi
|
||||
|
||||
- type: entity
|
||||
name: Violin
|
||||
name: violin
|
||||
parent: BaseHandheldInstrument
|
||||
id: ViolinInstrument
|
||||
components:
|
||||
@@ -64,7 +64,7 @@
|
||||
sprite: Objects/Instruments/violin.rsi
|
||||
|
||||
- type: entity
|
||||
name: Trumpet
|
||||
name: trumpet
|
||||
parent: BaseHandheldInstrument
|
||||
id: TrumpetInstrument
|
||||
components:
|
||||
@@ -76,7 +76,7 @@
|
||||
texture: Objects/Instruments/otherinstruments.rsi/trumpet.png
|
||||
|
||||
- type: entity
|
||||
name: Electric Guitar
|
||||
name: electric guitar
|
||||
parent: BaseHandheldInstrument
|
||||
id: ElectricGuitarInstrument
|
||||
components:
|
||||
@@ -93,7 +93,7 @@
|
||||
sprite: Objects/Instruments/eguitar.rsi
|
||||
|
||||
- type: entity
|
||||
name: Accordion
|
||||
name: accordion
|
||||
parent: BaseHandheldInstrument
|
||||
id: AccordionInstrument
|
||||
components:
|
||||
@@ -110,7 +110,7 @@
|
||||
sprite: Objects/Instruments/accordion.rsi
|
||||
|
||||
- type: entity
|
||||
name: Harmonica
|
||||
name: harmonica
|
||||
parent: BaseHandheldInstrument
|
||||
id: HarmonicaInstrument
|
||||
components:
|
||||
@@ -127,7 +127,7 @@
|
||||
sprite: Objects/Instruments/harmonica.rsi
|
||||
|
||||
- type: entity
|
||||
name: Recorder
|
||||
name: recorder
|
||||
parent: BaseHandheldInstrument
|
||||
id: RecorderInstrument
|
||||
components:
|
||||
@@ -144,7 +144,7 @@
|
||||
sprite: Objects/Instruments/recorder.rsi
|
||||
|
||||
- type: entity
|
||||
name: Trombone
|
||||
name: trombone
|
||||
parent: BaseHandheldInstrument
|
||||
id: TromboneInstrument
|
||||
components:
|
||||
@@ -161,7 +161,7 @@
|
||||
sprite: Objects/Instruments/trombone.rsi
|
||||
|
||||
- type: entity
|
||||
name: Saxophone
|
||||
name: saxophone
|
||||
parent: BaseHandheldInstrument
|
||||
id: SaxophoneInstrument
|
||||
components:
|
||||
@@ -178,7 +178,7 @@
|
||||
sprite: Objects/Instruments/saxophone.rsi
|
||||
|
||||
- type: entity
|
||||
name: Glockenspiel
|
||||
name: glockenspiel
|
||||
parent: BaseHandheldInstrument
|
||||
id: GlockenspielInstrument
|
||||
components:
|
||||
@@ -195,7 +195,7 @@
|
||||
sprite: Objects/Instruments/glockenspiel.rsi
|
||||
|
||||
- type: entity
|
||||
name: Banjo
|
||||
name: banjo
|
||||
parent: BaseHandheldInstrument
|
||||
id: BanjoInstrument
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Butcher's Cleaver
|
||||
name: butcher's cleaver
|
||||
parent: BaseItem
|
||||
id: ButchCleaver
|
||||
desc: A huge thing used for chopping and chopping up meat. This includes clowns and clown-by-products.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Pickaxe
|
||||
name: pickaxe
|
||||
parent: BaseItem
|
||||
id: Pickaxe
|
||||
components:
|
||||
@@ -18,4 +18,4 @@
|
||||
Size: 24
|
||||
sprite: Objects/Melee/pickaxe.rsi
|
||||
prefix: inhand
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Stun baton
|
||||
name: stun baton
|
||||
parent: BaseItem
|
||||
id: Stunbaton
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Spear
|
||||
name: spear
|
||||
parent: BaseItem
|
||||
id: Spear
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Bike Horn
|
||||
name: bike horn
|
||||
parent: BaseItem
|
||||
id: BikeHorn
|
||||
description: A horn off of a bicycle.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Beaker
|
||||
name: beaker
|
||||
parent: BaseItem
|
||||
description: Used to contain a moderate amount of chemicals and solutions.
|
||||
id: Beaker
|
||||
@@ -16,7 +16,7 @@
|
||||
transferAmount: 5.0
|
||||
|
||||
- type: entity
|
||||
name: Large Beaker
|
||||
name: large beaker
|
||||
parent: BaseItem
|
||||
description: Used to contain a large amount of chemicals or solutions.
|
||||
id: LargeBeaker
|
||||
@@ -33,7 +33,7 @@
|
||||
transferAmount: 5.0
|
||||
|
||||
- type: entity
|
||||
name: Dropper
|
||||
name: dropper
|
||||
parent: BaseItem
|
||||
description: Used to transfer small amounts of chemical solution between containers.
|
||||
id: Dropper
|
||||
@@ -51,7 +51,7 @@
|
||||
transferAmount: 5.0
|
||||
|
||||
- type: entity
|
||||
name: Syringe
|
||||
name: syringe
|
||||
parent: BaseItem
|
||||
description: Used to draw blood samples from mobs, or to inject them with reagents
|
||||
id: Syringe
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
- type: entity
|
||||
name: "BaseDice"
|
||||
name: "basedice"
|
||||
parent: BaseItem
|
||||
id: BaseDice
|
||||
abstract: true
|
||||
components:
|
||||
- type: Dice
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
- type: entity
|
||||
name: "d100"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Explosive Grenade
|
||||
name: explosive grenade
|
||||
description: Grenade that creates small devastating explosion
|
||||
parent: BaseItem
|
||||
id: ExGrenade
|
||||
@@ -36,7 +36,7 @@
|
||||
countdown_sound: /Audio/effects/countdown.ogg
|
||||
|
||||
- type: entity
|
||||
name: Syndicate Minibomb
|
||||
name: syndicate minibomb
|
||||
description: A syndicate manufactured explosive used to sow destruction and chaos.
|
||||
parent: BaseItem
|
||||
id: SyndieMiniBomb
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Fire Extinguisher
|
||||
name: fire extinguisher
|
||||
parent: BaseItem
|
||||
id: FireExtinguisher
|
||||
description: Extinguishes fires.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Flashlight
|
||||
name: flashlight
|
||||
parent: BaseItem
|
||||
id: FlashlightLantern
|
||||
description: They light the way to freedom
|
||||
@@ -18,4 +18,4 @@
|
||||
- type: PointLight
|
||||
enabled: false
|
||||
radius: 3
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: "Item"
|
||||
name: "item"
|
||||
id: BaseItem
|
||||
abstract: true
|
||||
components:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
parent: BaseLightbulb
|
||||
name: Light Bulb
|
||||
name: light bulb
|
||||
id: LightBulb
|
||||
components:
|
||||
- type: LightBulb
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: BaseItem
|
||||
name: BaseLightbulb
|
||||
name: baselightbulb
|
||||
id: BaseLightbulb
|
||||
abstract: true
|
||||
components:
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: BaseLightbulb
|
||||
name: Light Tube
|
||||
name: light tube
|
||||
id: LightTube
|
||||
components:
|
||||
- type: LightBulb
|
||||
@@ -40,7 +40,7 @@
|
||||
|
||||
- type: entity
|
||||
parent: BaseLightbulb
|
||||
name: LED Light Tube
|
||||
name: led light tube
|
||||
id: LedLightTube
|
||||
components:
|
||||
- type: LightBulb
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Material Stack
|
||||
name: material stack
|
||||
id: MaterialStack
|
||||
abstract: true
|
||||
parent: BaseItem
|
||||
@@ -9,7 +9,7 @@
|
||||
- type: ItemStatus
|
||||
|
||||
- type: entity
|
||||
name: Steel Sheet
|
||||
name: steel sheet
|
||||
id: MetalStack
|
||||
parent: MaterialStack
|
||||
components:
|
||||
@@ -26,14 +26,14 @@
|
||||
|
||||
- type: entity
|
||||
id: SteelSheet1
|
||||
name: Steel Sheet 1
|
||||
name: steel sheet 1
|
||||
parent: MetalStack
|
||||
components:
|
||||
- type: Stack
|
||||
count: 1
|
||||
|
||||
- type: entity
|
||||
name: Glass Sheet
|
||||
name: glass sheet
|
||||
id: GlassStack
|
||||
parent: MaterialStack
|
||||
components:
|
||||
@@ -50,14 +50,14 @@
|
||||
|
||||
- type: entity
|
||||
id: GlassSheet1
|
||||
name: Glass Sheet 1
|
||||
name: glass sheet 1
|
||||
parent: GlassStack
|
||||
components:
|
||||
- type: Stack
|
||||
count: 1
|
||||
|
||||
- type: entity
|
||||
name: Cable Coil
|
||||
name: cable coil
|
||||
id: CableStack
|
||||
parent: BaseItem
|
||||
components:
|
||||
@@ -72,14 +72,14 @@
|
||||
|
||||
- type: entity
|
||||
id: CableStack1
|
||||
name: Cable Stack 1
|
||||
name: cable stack 1
|
||||
parent: CableStack
|
||||
components:
|
||||
- type: Stack
|
||||
count: 1
|
||||
|
||||
- type: entity
|
||||
name: Gold Bar
|
||||
name: gold bar
|
||||
id: GoldStack
|
||||
parent: MaterialStack
|
||||
components:
|
||||
@@ -96,7 +96,7 @@
|
||||
|
||||
- type: entity
|
||||
id: GoldStack1
|
||||
name: Gold Bar 1
|
||||
name: gold bar 1
|
||||
parent: GoldStack
|
||||
components:
|
||||
- type: Stack
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Emergency Medical Kit
|
||||
name: emergency medical kit
|
||||
description: An emergency medical kit for those serious boo-boos.
|
||||
parent: BaseItem
|
||||
id: Medkit
|
||||
@@ -20,7 +20,7 @@
|
||||
- type: MedkitFill # 3 Ointment, 3 Roll of Gauze. TODO 1 Health Analyzer once it exists
|
||||
|
||||
- type: entity
|
||||
name: Medical Stack
|
||||
name: medical stack
|
||||
id: MedicalStack
|
||||
parent: BaseItem
|
||||
abstract: true
|
||||
@@ -30,7 +30,7 @@
|
||||
- type: Healing
|
||||
|
||||
- type: entity
|
||||
name: Ointment
|
||||
name: ointment
|
||||
description: Used to treat those nasty burns.
|
||||
parent: MedicalStack
|
||||
id: Ointment
|
||||
@@ -48,7 +48,7 @@
|
||||
stacktype: enum.StackType.Ointment
|
||||
|
||||
- type: entity
|
||||
name: Roll of Gauze
|
||||
name: roll of gauze
|
||||
description: Some sterile gauze to wrap around bloody stumps.
|
||||
parent: MedicalStack
|
||||
id: Brutepack
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Paper
|
||||
name: paper
|
||||
parent: BaseItem
|
||||
id: Paper
|
||||
description: 'A piece of white paper'
|
||||
@@ -19,7 +19,7 @@
|
||||
type: PaperBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
name: Pen
|
||||
name: pen
|
||||
parent: BaseItem
|
||||
id: Pen
|
||||
description: 'A dark ink pen'
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
interfaces:
|
||||
- key: enum.PDAUiKey.Key
|
||||
type: PDABoundUserInterface
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
|
||||
|
||||
- type: entity
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Power Debug Tool
|
||||
name: power debug tool
|
||||
parent: BaseItem
|
||||
id: PowerDebug
|
||||
description: An advanced tool to copy, store, and send electrical pulses and signals through wires and machines
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
netsync: false
|
||||
|
||||
- type: entity
|
||||
name: Small Standard Power Cell
|
||||
name: small standard power cell
|
||||
id: PowerCellSmallStandard
|
||||
parent: PowerCellSmallBase
|
||||
components:
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Small High-Capacity Power Cell
|
||||
name: small high-capacity power cell
|
||||
id: PowerCellSmallHigh
|
||||
parent: PowerCellSmallBase
|
||||
components:
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Small Super-Capacity Power Cell
|
||||
name: small super-capacity power cell
|
||||
id: PowerCellSmallSuper
|
||||
parent: PowerCellSmallBase
|
||||
components:
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Small Hyper-Capacity Power Cell
|
||||
name: small hyper-capacity power cell
|
||||
id: PowerCellSmallHyper
|
||||
parent: PowerCellSmallBase
|
||||
components:
|
||||
@@ -98,7 +98,7 @@
|
||||
prefix: s_hy
|
||||
|
||||
- type: entity
|
||||
name: Cell Recharger
|
||||
name: cell recharger
|
||||
id: PowerCellRecharger
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -130,7 +130,7 @@
|
||||
IsScrapingFloor: true
|
||||
|
||||
- type: entity
|
||||
name: Recharger
|
||||
name: recharger
|
||||
id: WeaponCapacitorRecharger
|
||||
components:
|
||||
- type: Sprite
|
||||
@@ -162,7 +162,7 @@
|
||||
IsScrapingFloor: true
|
||||
|
||||
- type: entity
|
||||
name: Wall recharger
|
||||
name: wall recharger
|
||||
id: WallWeaponCapacitorRecharger
|
||||
components:
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Skub
|
||||
name: skub
|
||||
parent: BaseItem
|
||||
id: Skub
|
||||
description: Skub is the fifth Chaos God.
|
||||
@@ -16,7 +16,7 @@
|
||||
sprite: Objects/Misc/skub.rsi
|
||||
- type: ItemCooldown
|
||||
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: EmitSoundOnUse
|
||||
sound: /Audio/items/skub.ogg
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: "BaseHandTele"
|
||||
name: "basehandtele"
|
||||
parent: BaseItem
|
||||
id: BaseHandTele
|
||||
abstract: true
|
||||
@@ -16,13 +16,13 @@
|
||||
- type: Item
|
||||
Size: 12
|
||||
sprite: Objects/Misc/hand_tele.rsi
|
||||
- type: Sound
|
||||
- type: LoopingSound
|
||||
- type: Appearance
|
||||
visuals:
|
||||
- type: HandTeleporterVisualizer2D
|
||||
|
||||
- type: entity
|
||||
name: "Hand Teleporter - Random"
|
||||
name: "hand teleporter - random"
|
||||
parent: BaseHandTele
|
||||
id: RandHandTele
|
||||
description: "Travel to a random spot in range"
|
||||
@@ -34,7 +34,7 @@
|
||||
charge_time: 1
|
||||
|
||||
- type: entity
|
||||
name: "Hand Teleporter - Direct"
|
||||
name: "hand teleporter - direct"
|
||||
parent: BaseHandTele
|
||||
id: DirHandTele
|
||||
description: "Travel to a specific spot in a short range"
|
||||
@@ -46,7 +46,7 @@
|
||||
charge_time: 0.2
|
||||
|
||||
- type: entity
|
||||
name: Portal
|
||||
name: portal
|
||||
id: Portal
|
||||
abstract: true
|
||||
description: "Portal to another location"
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
stacktype: FloorTileCarpet
|
||||
|
||||
- type: entity
|
||||
name: Wood Floor Tile
|
||||
name: wood floor tile
|
||||
parent: FloorTileItemBase
|
||||
id: FloorTileItemWood
|
||||
components:
|
||||
@@ -57,7 +57,7 @@
|
||||
max: 8
|
||||
|
||||
- type: entity
|
||||
name: White Floor Tile
|
||||
name: white floor tile
|
||||
parent: FloorTileItemBase
|
||||
id: FloorTileItemWhite
|
||||
components:
|
||||
@@ -75,7 +75,7 @@
|
||||
max: 8
|
||||
|
||||
- type: entity
|
||||
name: Dark Floor Tile
|
||||
name: dark floor tile
|
||||
parent: FloorTileItemBase
|
||||
id: FloorTileItemDark
|
||||
components:
|
||||
@@ -93,7 +93,7 @@
|
||||
max: 8
|
||||
|
||||
- type: entity
|
||||
name: Floor Tile Techmaint
|
||||
name: floor tile techmaint
|
||||
parent: FloorTileItemBase
|
||||
id: FloorTileItemTechmaint
|
||||
components:
|
||||
@@ -107,7 +107,7 @@
|
||||
output: floor_techmaint
|
||||
|
||||
- type: entity
|
||||
name: Floor Tile Freezer
|
||||
name: floor tile freezer
|
||||
parent: FloorTileItemBase
|
||||
id: FloorTileItemFreezer
|
||||
components:
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
hitSound: "/Audio/weapons/smash.ogg"
|
||||
|
||||
- type: entity
|
||||
name: Emergency Toolbox
|
||||
name: emergency toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxEmergency
|
||||
description: A bright red toolbox, stocked with emergency tools
|
||||
@@ -28,14 +28,14 @@
|
||||
|
||||
- type: entity
|
||||
id: ToolboxEmergencyFilled
|
||||
name: Emergency Toolbox
|
||||
name: emergency toolbox
|
||||
parent: ToolboxEmergency
|
||||
suffix: Filled
|
||||
components:
|
||||
- type: ToolboxEmergencyFill
|
||||
|
||||
- type: entity
|
||||
name: Mechanical Toolbox
|
||||
name: mechanical toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxMechanical
|
||||
description: A blue box, stocked with mechanical tools
|
||||
@@ -50,7 +50,7 @@
|
||||
sprite: Objects/Tools/Toolboxes/toolbox_blue.rsi
|
||||
|
||||
- type: entity
|
||||
name: Electrical Toolbox
|
||||
name: electrical toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxElectrical
|
||||
description: A toolbox typically stocked with electrical gear
|
||||
@@ -66,14 +66,14 @@
|
||||
|
||||
- type: entity
|
||||
id: ToolboxElectricalFilled
|
||||
name: Electrical Toolbox
|
||||
name: electrical toolbox
|
||||
suffix: Filled
|
||||
parent: ToolboxElectrical
|
||||
components:
|
||||
- type: ToolboxElectricalFill
|
||||
|
||||
- type: entity
|
||||
name: Artistic Toolbox
|
||||
name: artistic toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxArtistic
|
||||
description: A toolbox typically stocked with artistic supplies
|
||||
@@ -88,7 +88,7 @@
|
||||
sprite: Objects/Tools/Toolboxes/toolbox_green.rsi
|
||||
|
||||
- type: entity
|
||||
name: Syndicate Toolbox
|
||||
name: syndicate toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxSyndicate
|
||||
description: A sinister looking toolbox filled with elite syndicate tools.
|
||||
@@ -103,7 +103,7 @@
|
||||
sprite: Objects/Tools/Toolboxes/toolbox_syn.rsi
|
||||
|
||||
- type: entity
|
||||
name: Golden Toolbox
|
||||
name: golden toolbox
|
||||
parent: ToolboxBase
|
||||
id: ToolboxGolden
|
||||
description: A solid gold toolbox. A rapper would kill for this.
|
||||
@@ -119,7 +119,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ToolboxGoldFilled
|
||||
name: Golden Toolbox
|
||||
name: golden toolbox
|
||||
parent: ToolboxGolden
|
||||
suffix: Filled
|
||||
components:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Wirecutter
|
||||
name: wirecutter
|
||||
parent: BaseItem
|
||||
id: Wirecutter
|
||||
description: This kills the wire.
|
||||
@@ -32,7 +32,7 @@
|
||||
sprite: Objects/Tools/wirecutters.rsi
|
||||
|
||||
- type: entity
|
||||
name: Screwdriver
|
||||
name: screwdriver
|
||||
parent: BaseItem
|
||||
id: Screwdriver
|
||||
description: Industrial grade torque in a small screwdriving package
|
||||
@@ -67,7 +67,7 @@
|
||||
yellow: "#ffa500"
|
||||
|
||||
- type: entity
|
||||
name: Welding Tool
|
||||
name: welding tool
|
||||
parent: BaseItem
|
||||
id: Welder
|
||||
description: Melts anything as long as it's fueled, don't forget your eye protection!
|
||||
@@ -101,7 +101,7 @@
|
||||
useSoundCollection: Welder
|
||||
|
||||
- type: entity
|
||||
name: Wrench
|
||||
name: wrench
|
||||
parent: BaseItem
|
||||
id: Wrench
|
||||
description: A common tool for assembly and disassembly, righty tighty lefty loosey
|
||||
@@ -122,7 +122,7 @@
|
||||
useSound: /Audio/items/ratchet.ogg
|
||||
|
||||
- type: entity
|
||||
name: Crowbar
|
||||
name: crowbar
|
||||
parent: BaseItem
|
||||
id: Crowbar
|
||||
description: A multipurpose tool to pry open doors and fight interdimensional invaders
|
||||
@@ -144,7 +144,7 @@
|
||||
- type: TilePrying
|
||||
|
||||
- type: entity
|
||||
name: Emergency Crowbar
|
||||
name: emergency crowbar
|
||||
parent: BaseItem
|
||||
id: CrowbarRed
|
||||
description: A multipurpose tool to pry open doors and fight interdimensional invaders
|
||||
@@ -166,7 +166,7 @@
|
||||
- type: TilePrying
|
||||
|
||||
- type: entity
|
||||
name: Multitool
|
||||
name: multitool
|
||||
parent: BaseItem
|
||||
id: Multitool
|
||||
description: An advanced tool to copy, store, and send electrical pulses and signals through wires and machines
|
||||
@@ -184,7 +184,7 @@
|
||||
- Multitool
|
||||
|
||||
- type: entity
|
||||
name: Jaws of life
|
||||
name: jaws of life
|
||||
parent: BaseItem
|
||||
id: JawsOfLife
|
||||
description: A set of jaws of life, compressed through the magic of science.
|
||||
@@ -214,7 +214,7 @@
|
||||
changeSound: /Audio/items/change_jaws.ogg
|
||||
|
||||
- type: entity
|
||||
name: Power Drill
|
||||
name: power drill
|
||||
parent: BaseItem
|
||||
id: PowerDrill
|
||||
description: A simple powered hand drill.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
- type: entity
|
||||
name: Spawn Point
|
||||
name: spawn point
|
||||
id: SpawnPoint
|
||||
abstract: true
|
||||
components:
|
||||
@@ -19,7 +19,7 @@
|
||||
mode: AlignTileAny
|
||||
|
||||
- type: entity
|
||||
name: LateJoin Spawn Point
|
||||
name: latejoin spawn point
|
||||
id: SpawnPointLatejoin
|
||||
parent: SpawnPoint
|
||||
components:
|
||||
@@ -31,7 +31,7 @@
|
||||
state: cross_red
|
||||
|
||||
- type: entity
|
||||
name: Observer Spawn Point
|
||||
name: observer spawn point
|
||||
id: SpawnPointObserver
|
||||
parent: SpawnPoint
|
||||
components:
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointAssistant
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Assistant)
|
||||
name: spawn point (assistant)
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
job_id: Assistant
|
||||
@@ -24,7 +24,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointCargoTechnician
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (CargoTechnician)
|
||||
name: spawn point (cargotechnician)
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
job_id: CargoTechnician
|
||||
@@ -37,7 +37,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointBartender
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Bartender)
|
||||
name: spawn point (bartender)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -51,7 +51,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointChef
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Chef)
|
||||
name: spawn point (chef)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -65,7 +65,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointClown
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Clown)
|
||||
name: spawn point (clown)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -79,7 +79,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointJanitor
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Janitor)
|
||||
name: spawn point (janitor)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -93,7 +93,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointCaptain
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Captain)
|
||||
name: spawn point (captain)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -107,7 +107,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointHeadOfPersonnel
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (HeadOfPersonnel)
|
||||
name: spawn point (headofpersonnel)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -121,7 +121,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointChiefEngineer
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (ChiefEngineer)
|
||||
name: spawn point (chiefengineer)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -135,7 +135,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointStationEngineer
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (StationEngineer)
|
||||
name: spawn point (stationengineer)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -149,7 +149,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointChiefMedicalOfficer
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (ChiefMedicalOfficer)
|
||||
name: spawn point (chiefmedicalofficer)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -163,7 +163,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointMedicalDoctor
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (MedicalDoctor)
|
||||
name: spawn point (medicaldoctor)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -177,7 +177,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointResearchDirector
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (ResearchDirector)
|
||||
name: spawn point (researchdirector)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -191,7 +191,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointScientist
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (Scientist)
|
||||
name: spawn point (scientist)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -205,7 +205,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointHeadOfSecurity
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (HeadOfSecurity)
|
||||
name: spawn point (headofsecurity)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
@@ -219,7 +219,7 @@
|
||||
- type: entity
|
||||
id: SpawnPointSecurityOfficer
|
||||
parent: SpawnPointJobBase
|
||||
name: Spawn Point (SecurityOfficer)
|
||||
name: spawn point (securityofficer)
|
||||
|
||||
components:
|
||||
- type: SpawnPoint
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
- type: entity
|
||||
id: WarpPoint
|
||||
parent: MarkerBase
|
||||
name: Warp Point
|
||||
name: warp point
|
||||
components:
|
||||
- type: WarpPoint
|
||||
- type: Sprite
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: MobObserver
|
||||
name: Observer
|
||||
name: observer
|
||||
save: false
|
||||
description: Boo!
|
||||
components:
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
# Magazines
|
||||
- type: entity
|
||||
id: magazine_10mm
|
||||
name: "10mm Magazine"
|
||||
name: "10mm magazine"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mmf
|
||||
name: "10mm Magazine (Flash)"
|
||||
name: "10mm magazine (flash)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -57,7 +57,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mmhv
|
||||
name: "10mm Magazine (High Velocity)"
|
||||
name: "10mm magazine (high velocity)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mml
|
||||
name: "10mm Magazine (L)"
|
||||
name: "10mm magazine (L)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -99,7 +99,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mmp
|
||||
name: "10mm Magazine (Practice)"
|
||||
name: "10mm magazine (practice)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -120,7 +120,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mmr
|
||||
name: "10mm Magazine (Rubber)"
|
||||
name: "10mm magazine (rubber)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -141,7 +141,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mm_smg
|
||||
name: "10mm SMG Magazine"
|
||||
name: "10mm SMG magazine"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -163,7 +163,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mm_smgf
|
||||
name: "10mm SMG magazine (Flash)"
|
||||
name: "10mm SMG magazine (flash)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -185,7 +185,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mm_smghv
|
||||
name: "10mm SMG magazine (High Velocity)"
|
||||
name: "10mm SMG magazine (high velocity)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -229,7 +229,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mm_smgp
|
||||
name: "10mm SMG magazine (Practice)"
|
||||
name: "10mm SMG magazine (practice)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -251,7 +251,7 @@
|
||||
|
||||
- type: entity
|
||||
id: magazine_10mm_smgr
|
||||
name: "10mm SMG magazine (Rubber)"
|
||||
name: "10mm SMG magazine (rubber)"
|
||||
parent: magazine_10mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
@@ -290,7 +290,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ammo_casing_10mm_flash
|
||||
name: "10mm casing (Flash)"
|
||||
name: "10mm casing (flash)"
|
||||
parent: BaseItem
|
||||
components:
|
||||
- type: BallisticBullet
|
||||
@@ -306,7 +306,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ammo_casing_10mm_hv
|
||||
name: "10mm casing (High Velocity)"
|
||||
name: "10mm casing (high velocity)"
|
||||
parent: BaseItem
|
||||
components:
|
||||
- type: BallisticBullet
|
||||
@@ -338,7 +338,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ammo_casing_10mm_p
|
||||
name: "10mm casing (Practice)"
|
||||
name: "10mm casing (practice)"
|
||||
parent: BaseItem
|
||||
components:
|
||||
- type: BallisticBullet
|
||||
@@ -354,7 +354,7 @@
|
||||
|
||||
- type: entity
|
||||
id: ammo_casing_10mm_r
|
||||
name: "10mm casing (Rubber)"
|
||||
name: "10mm casing (rubber)"
|
||||
parent: BaseItem
|
||||
components:
|
||||
- type: BallisticBullet
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
- type: entity
|
||||
id: box_10mmf
|
||||
name: "10mm box (Flash)"
|
||||
name: "10mm box (flash)"
|
||||
parent: box_10mm_empty
|
||||
components:
|
||||
- type: AmmoBox
|
||||
@@ -56,7 +56,7 @@
|
||||
|
||||
- type: entity
|
||||
id: box_10mmhv
|
||||
name: "10mm box (High-velocity)"
|
||||
name: "10mm box (high-velocity)"
|
||||
parent: box_10mm_empty
|
||||
components:
|
||||
- type: AmmoBox
|
||||
@@ -77,7 +77,7 @@
|
||||
|
||||
- type: entity
|
||||
id: box_10mmp
|
||||
name: "10mm box (Practice)"
|
||||
name: "10mm box (practice)"
|
||||
parent: box_10mm_empty
|
||||
components:
|
||||
- type: AmmoBox
|
||||
@@ -98,7 +98,7 @@
|
||||
|
||||
- type: entity
|
||||
id: box_10mmr
|
||||
name: "10mm box (Rubber)"
|
||||
name: "10mm box (rubber)"
|
||||
parent: box_10mm_empty
|
||||
components:
|
||||
- type: AmmoBox
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: bullet_10mm
|
||||
name: 10mm Bullet
|
||||
name: 10mm bullet
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
- type: entity
|
||||
id: bullet_10mmf
|
||||
name: 10mm Bullet (Flash)
|
||||
name: 10mm bullet (flash)
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
- type: entity
|
||||
id: bullet_10mmhv
|
||||
name: 10mm Bullet (High-Velocity)
|
||||
name: 10mm bullet (high-velocity)
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
- type: entity
|
||||
id: bullet_10mml
|
||||
name: 10mm Bullet (L)
|
||||
name: 10mm bullet (L)
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
@@ -44,7 +44,7 @@
|
||||
|
||||
- type: entity
|
||||
id: bullet_10mmp
|
||||
name: 10mm Bullet (Practice)
|
||||
name: 10mm bullet (practice)
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
@@ -55,7 +55,7 @@
|
||||
|
||||
- type: entity
|
||||
id: bullet_10mmr
|
||||
name: 10mm Bullet (Rubber)
|
||||
name: 10mm bullet (rubber)
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#Magazines
|
||||
- type: entity
|
||||
id: magazine_12g_shotgun
|
||||
name: "12g Magazine"
|
||||
name: "12g magazine"
|
||||
parent: magazine_12g_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
- type: entity
|
||||
id: pellet_12g
|
||||
name: 12g Pellet
|
||||
name: 12g pellet
|
||||
parent: BulletBase
|
||||
abstract: true
|
||||
components:
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
# Magazines
|
||||
- type: entity
|
||||
id: magazine_20mm
|
||||
name: "20mm Magazine"
|
||||
name: "20mm magazine"
|
||||
parent: magazine_20mm_empty
|
||||
components:
|
||||
- type: BallisticMagazine
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user