-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
186 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Engineering | ||
- type: cargoProduct | ||
id: EngineeringFotiaHardsuit | ||
icon: | ||
sprite: Clothing/OuterClothing/Hardsuits/atmospherics.rsi | ||
state: icon | ||
product: CrateEngineeringFotiaHardsuit | ||
cost: 1500 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: EngineeringLampsiHardsuit | ||
icon: | ||
sprite: Clothing/OuterClothing/Hardsuits/engineering.rsi | ||
state: icon | ||
product: CrateEngineeringLampsiHardsuit | ||
cost: 1500 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
# Logistics | ||
- type: cargoProduct | ||
id: LogisticsKritiHardsuit | ||
icon: | ||
sprite: Clothing/OuterClothing/Hardsuits/spatio.rsi | ||
state: icon | ||
product: CrateLogisticsKritiHardsuit | ||
cost: 1250 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: LogisticsLavrionHardsuit | ||
icon: | ||
sprite: Clothing/OuterClothing/Hardsuits/salvage.rsi | ||
state: icon | ||
product: CrateLogisticsLavrionHardsuit | ||
cost: 2250 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
# Security | ||
- type: cargoProduct | ||
id: SecurityShanlinTacsuit | ||
icon: | ||
sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/syndicate.rsi | ||
state: icon | ||
product: CrateSecurityShanlinTacsuit | ||
cost: 17500 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: SecurityGuanYuTacsuit | ||
icon: | ||
sprite: Nyanotrasen/Clothing/OuterClothing/ReverseEngineering/juggernaut.rsi | ||
state: icon | ||
product: CrateSecurityGuanYuTacsuit | ||
cost: 30000 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: SecurityBaghaturTacsuit | ||
icon: | ||
sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi | ||
state: icon | ||
product: CrateSecurityBaghaturTacsuit | ||
cost: 3000 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: SecuritySuldeTacsuit | ||
icon: | ||
sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi | ||
state: icon | ||
product: CrateSecuritySuldeTacsuit | ||
cost: 4000 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market | ||
|
||
- type: cargoProduct | ||
id: SecurityTsagaanTacsuit | ||
icon: | ||
sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi | ||
state: icon | ||
product: CrateSecurityTsagaanTacsuit | ||
cost: 3250 | ||
category: cargoproduct-category-name-hardsuits | ||
group: market |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# Hardsuits | ||
# Engineering | ||
- type: entity | ||
id: CrateEngineeringFotiaHardsuit | ||
parent: CrateEngineering | ||
name: fotia hardsuit crate | ||
description: Contains a single HpI-19t "Fotia" hardsuit. Requires Engineering access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitAtmos | ||
|
||
- type: entity | ||
id: CrateEngineeringLampsiHardsuit | ||
parent: CrateEngineering | ||
name: lampsi hardsuit crate | ||
description: Contains a single HpI-19r "Lampsi" hardsuit. Requires Engineering access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitAtmos | ||
|
||
# Logistics | ||
- type: entity | ||
id: CrateLogisticsKritiHardsuit | ||
parent: CrateGenericSteel | ||
name: kriti hardsuit crate | ||
description: Contains a single HpI-20s "Kriti" hardsuit. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitSpatio | ||
|
||
- type: entity | ||
id: CrateLogisticsLavrionHardsuit | ||
parent: CrateGenericSteel | ||
name: lavrion hardsuit crate | ||
description: Contains a single HpI-20a "Lavrion" hardsuit. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitSalvage | ||
|
||
# Security | ||
- type: entity | ||
id: CrateSecurityShanlinTacsuit | ||
parent: CrateSecgear | ||
name: shanlin tacsuit crate | ||
description: Contains a single CSA-51a Shanlin tacsuit. Requires Security access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitSyndieReverseEngineered | ||
|
||
- type: entity | ||
id: CrateSecurityGuanYuTacsuit | ||
parent: CrateSecgear | ||
name: shanlin tacsuit crate | ||
description: Contains a single CSA-80UA Guan-Yu tacsuit. Requires Security access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitJuggernautReverseEngineered | ||
|
||
- type: entity | ||
id: CrateSecurityBaghaturTacsuit | ||
parent: CrateSecgear | ||
name: baghatur tacsuit crate | ||
description: Contains a single FPA-83s "Baghatur" tacsuit. Requires Security access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitCombatStandard | ||
|
||
- type: entity | ||
id: CrateSecuritySuldeTacsuit | ||
parent: CrateSecgear | ||
name: sulde tacsuit crate | ||
description: Contains a single FPA-93 - "Sulde Mk.II" tacsuit. Requires Security access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitCombatRiot | ||
|
||
- type: entity | ||
id: CrateSecurityTsagaanTacsuit | ||
parent: CrateSecgear | ||
name: baghatur tacsuit crate | ||
description: Contains a single FPA-86 - "Tsagaan Mk.II" tacsuit. Requires Security access to open. | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ClothingOuterHardsuitCombatMedical |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters