Added localization functionality for cargo orders (#10248)

This commit is contained in:
Rinkashikachi
2022-08-08 11:58:51 +03:00
committed by GitHub
parent 0810bd86db
commit 5fbecff3ad
65 changed files with 610 additions and 362 deletions

View File

@@ -1,7 +1,5 @@
- type: entity
id: CrateArtifactContainer
name: artifact container
description: Used to safely contain and move artifacts.
parent: BaseStructureDynamic
components:
- type: Transform

View File

@@ -1,8 +1,6 @@
- type: entity
id: BaseThruster
parent: BaseStructureDynamic
name: thruster
description: It goes nyooooooom.
abstract: true
components:
- type: AmbientSound
@@ -44,8 +42,6 @@
- type: entity
id: Thruster
parent: BaseThruster
name: thruster
description: It goes nyooooooom.
components:
- type: Thruster
- type: Sprite
@@ -64,9 +60,7 @@
- type: entity
id: DebugThruster
parent: BaseThruster
name: thruster
suffix: DEBUG
description: It goes nyooooooom. It doesn't need power nor space.
components:
- type: Thruster
requireSpace: false
@@ -89,8 +83,6 @@
- type: entity
id: Gyroscope
parent: BaseThruster
name: Gyroscope
description: Increases the shuttle's potential angular rotation.
components:
- type: Thruster
thrusterType: Angular
@@ -122,9 +114,7 @@
- type: entity
id: DebugGyroscope
parent: Gyroscope
name: gyroscope
suffix: DEBUG
description: Increases the shuttle's potential angular rotation.
components:
- type: Thruster
requireSpace: false

View File

@@ -2,8 +2,6 @@
abstract: true
parent: BaseStructureDynamic
id: GasCanister
name: gas canister
description: A canister that can contain any type of gas. It can be attached to connector ports using a wrench.
components:
- type: InteractionOutline
- type: Transform
@@ -86,7 +84,6 @@
- type: entity
parent: GasCanister
id: StorageCanister
name: storage canister
components:
- type: Sprite
layers:
@@ -124,7 +121,6 @@
- type: entity
parent: GasCanister
id: AirCanister
name: air canister
components:
- type: Sprite
layers:
@@ -156,7 +152,6 @@
- type: entity
parent: GasCanister
id: OxygenCanister
name: oxygen canister
components:
- type: Sprite
layers:
@@ -187,7 +182,6 @@
- type: entity
parent: GasCanister
id: NitrogenCanister
name: nitrogen canister
components:
- type: Sprite
layers:
@@ -219,7 +213,6 @@
- type: entity
parent: GasCanister
id: CarbonDioxideCanister
name: carbon dioxide canister
components:
- type: Sprite
layers:
@@ -252,7 +245,6 @@
- type: entity
parent: GasCanister
id: PlasmaCanister
name: plasma canister
components:
- type: Sprite
layers:
@@ -287,7 +279,6 @@
- type: entity
parent: GasCanister
id: TritiumCanister
name: tritium canister
components:
- type: Sprite
layers:
@@ -322,7 +313,6 @@
- type: entity
parent: GasCanister
id: WaterVaporCanister
name: water vapor canister
components:
- type: Sprite
layers:
@@ -358,7 +348,6 @@
- type: entity
parent: GasCanister
id: MiasmaCanister
name: miasma canister
components:
- type: Sprite
layers:
@@ -395,7 +384,6 @@
- type: entity
parent: GasCanister
id: NitrousOxideCanister
name: nitrous oxide canister
components:
- type: Sprite
layers:
@@ -433,8 +421,6 @@
- type: entity
parent: GasCanister
id: FrezonCanister
name: frezon canister
description: A coolant with light hallucinogenic properties. Proceed.
components:
- type: Sprite
layers:
@@ -474,8 +460,6 @@
- type: entity
parent: BaseStructure
id: GasCanisterBrokenBase
name: broken gas canister
description: A broken gas canister. Not useless yet, as it can be salvaged for high quality materials.
components:
- type: Destructible
thresholds:
@@ -516,7 +500,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: StorageCanisterBroken
name: broken storage canister
noSpawn: true
components:
- type: Sprite
@@ -525,7 +508,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: AirCanisterBroken
name: broken air canister
noSpawn: true
components:
- type: Sprite
@@ -534,7 +516,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: OxygenCanisterBroken
name: broken oxygen canister
noSpawn: true
components:
- type: Sprite
@@ -543,7 +524,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: NitrogenCanisterBroken
name: broken nitrogen canister
noSpawn: true
components:
- type: Sprite
@@ -552,7 +532,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: CarbonDioxideCanisterBroken
name: broken carbon dioxide canister
noSpawn: true
components:
- type: Sprite
@@ -561,7 +540,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: PlasmaCanisterBroken
name: broken plasma canister
noSpawn: true
components:
- type: Sprite
@@ -570,7 +548,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: TritiumCanisterBroken
name: broken tritium canister
noSpawn: true
components:
- type: Sprite
@@ -588,7 +565,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: MiasmaCanisterBroken
name: broken miasma canister
noSpawn: true
components:
- type: Sprite
@@ -597,7 +573,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: NitrousOxideCanisterBroken
name: broken nitrous oxide canister
noSpawn: true
components:
- type: Sprite
@@ -606,7 +581,6 @@
- type: entity
parent: GasCanisterBrokenBase
id: FrezonCanisterBroken
name: broken frezon canister
noSpawn: true
components:
- type: Sprite

View File

@@ -3,9 +3,7 @@
- type: entity
id: WeldingFuelTank
parent: StorageTank
name: fuel tank
suffix: Empty
description: A fuel tank. It's used to store high amounts of fuel.
components:
- type: StaticPrice
price: 1200
@@ -27,9 +25,7 @@
- type: entity
id: WeldingFuelTankFull
parent: WeldingFuelTank
name: fuel tank
suffix: Full
description: A storage tank containing welding fuel.
components:
- type: StaticPrice
price: 1200
@@ -45,9 +41,7 @@
- type: entity
id: WaterTank
parent: StorageTank
name: water tank
suffix: Empty
description: "A water tank. It's used to store high amounts of water."
components:
- type: StaticPrice
price: 1200
@@ -72,8 +66,6 @@
- type: entity
parent: WaterTankFull
id: WaterCooler
name: water cooler
description: Seems like a good place to stand and waste time.
components:
- type: Sprite
sprite: Structures/Storage/tanks.rsi
@@ -88,9 +80,7 @@
- type: entity
parent: StorageTank
id: WaterTankHighCapacity
name: high-capacity water tank
suffix: Full
description: A highly pressurized water tank made to hold gargantuan amounts of water.
components:
- type: Sprite
sprite: Structures/Storage/tanks.rsi
@@ -111,9 +101,7 @@
- type: entity
id: KvassTank
parent: StorageTank
name: КВАС
suffix: Empty
description: A cool refreshing drink with a taste of socialism.
components:
- type: Sprite
sprite: Structures/Storage/kvass.rsi