-
Notifications
You must be signed in to change notification settings - Fork 55
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
238 additions
and
21 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
176 changes: 176 additions & 0 deletions
176
Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/patch.yml
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,176 @@ | ||
#PatchPack | ||
- type: entity | ||
name: patch pack | ||
id: ADTPatchPack | ||
parent: BaseStorageItem | ||
description: It's a container for storing medical patches. | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Objects/Specific/Medical/patch.rsi | ||
scale: 1.3, 1.3 | ||
state: patchpack | ||
- type: Item | ||
size: 10 | ||
- type: Storage | ||
capacity: 18 | ||
quickInsert: true | ||
areaInsert: true | ||
whitelist: | ||
tags: | ||
- Patch | ||
#PatchPackFilled | ||
- type: entity | ||
name: patch pack | ||
id: ADTPatchPackFilled | ||
suffix: Filled | ||
parent: ADTPatchPack | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ADTPatchHealing | ||
amount: 1 | ||
- id: ADTPatchBurn | ||
amount: 1 | ||
- id: ADTPatchHealingMini | ||
amount: 2 | ||
- id: ADTPatchBurnMini | ||
amount: 2 | ||
#BasePatch | ||
- type: entity | ||
name: patch | ||
parent: BaseItem | ||
description: | ||
id: ADTBasePatch | ||
components: | ||
- type: Sprite | ||
sprite: ADT/Objects/Specific/Medical/patch.rsi | ||
layers: | ||
- state: patch0 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: Item | ||
sprite: ADT/Objects/Specific/Medical/patch.rsi | ||
size: 3 | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
- type: Hypospray | ||
solutionName: pen | ||
transferAmount: 15 | ||
- type: Appearance | ||
- type: SolutionContainerVisuals | ||
maxFillLevels: 1 | ||
changeColor: false | ||
emptySpriteName: patchused | ||
- type: Tag | ||
tags: | ||
- Patch | ||
#Patch healing | ||
- type: entity | ||
name: healing patch | ||
parent: ADTBasePatch | ||
id: ADTPatchHealing | ||
description: Helps with brute injuries. | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: patch2 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Bicaridine | ||
Quantity: 14 | ||
#Patch healing small | ||
- type: entity | ||
name: healing mini-patch | ||
parent: ADTBasePatch | ||
id: ADTPatchHealingMini | ||
description: Helps with brute injuries. | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: patch1 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Bicaridine | ||
Quantity: 7 | ||
#Patch burn | ||
- type: entity | ||
name: burn patch | ||
parent: ADTBasePatch | ||
id: ADTPatchBurn | ||
description: Helps with burn injuries. | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: patch4 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Dermaline | ||
Quantity: 9 | ||
#Patch burn small | ||
- type: entity | ||
name: burn mini-patch. | ||
parent: ADTBasePatch | ||
id: ADTPatchBurnMini | ||
description: Helps with burn injuries. | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: patch3 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Dermaline | ||
Quantity: 4.5 | ||
#honk honk? | ||
- type: entity | ||
name: honk patch | ||
parent: ADTBasePatch | ||
id: ADTPatchHonk | ||
description: Miracle honk-medicine, increases the level of fun in the blood. | ||
components: | ||
- type: Sprite | ||
layers: | ||
- state: patch20 | ||
map: ["enum.SolutionContainerLayers.Fill"] | ||
- type: SolutionContainerManager | ||
solutions: | ||
pen: | ||
maxVol: 15 | ||
reagents: | ||
- ReagentId: Honk | ||
Quantity: 6 | ||
#patch crate | ||
- type: entity | ||
id: ADTCratePatchPack | ||
parent: CrateMedical | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: ADTPatchPackFilled | ||
amount: 4 | ||
#Cargo | ||
- type: cargoProduct | ||
id: ADTCratePatchPack | ||
icon: | ||
sprite: ADT/Objects/Specific/Medical/patch.rsi | ||
state: patchpack | ||
product: ADTCratePatchPack | ||
cost: 1600 | ||
category: Medical | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,6 @@ | |
|
||
- type: Tag | ||
id: SpeedLoader357 | ||
|
||
- type: Tag | ||
id: Patch |
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 |
---|---|---|
|
@@ -242,6 +242,7 @@ | |
capacity: 60 | ||
whitelist: | ||
tags: | ||
- Patch | ||
- Wrench | ||
- Bottle | ||
- Spray | ||
|
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