-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A new medical bag and medical belt crafting recipes. (#2981)
* Belt my bag. * Bag touch up * Slight size buff. Maybe too much? Not sure. * Issues addressed * Paperwork is for chumps
- Loading branch information
Showing
9 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
Resources/Prototypes/_NF/Entities/Objects/Specific/Medical/medical_bag.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,64 @@ | ||
- type: entity | ||
name: medical bag | ||
id: MedicalBag | ||
parent: BaseStorageItem | ||
description: A medical bag designed to hold topicals and small reagent containers. For the medic on the go. | ||
components: | ||
- type: Sprite | ||
sprite: _NF/Objects/Specific/Medical/medical_bag.rsi | ||
layers: | ||
- state: icon | ||
- state: icon-on | ||
visible: false | ||
map: [ "enum.ToggleVisuals.Layer" ] | ||
- type: Clothing | ||
sprite: _NF/Objects/Specific/Medical/medical_bag.rsi | ||
quickEquip: false | ||
slots: | ||
- belt | ||
- type: Item | ||
size: Ginormous | ||
- type: Storage | ||
maxItemSize: Normal | ||
grid: | ||
- 0,0,5,3 | ||
quickInsert: true | ||
areaInsert: true | ||
whitelist: | ||
components: | ||
- Pill | ||
- Hypospray | ||
tags: | ||
- PillCanister | ||
- CentrifugeCompatible | ||
- Syringe | ||
- Ointment | ||
- Brutepack | ||
- Bloodpack | ||
- Gauze | ||
- Bottle | ||
- type: Dumpable | ||
- type: MagnetPickup | ||
magnetEnabled: false | ||
magnetCanBeEnabled: false | ||
# Frontier: toggle magnet from White Dream (keeping this in case it's useful as a future note) | ||
- type: ItemToggle | ||
soundActivate: &soundActivate | ||
collection: sparks | ||
params: | ||
variation: 0.25 | ||
soundDeactivate: *soundActivate | ||
onUse: false | ||
onAltUse: true | ||
onActivate: false | ||
- type: ItemToggleExamine | ||
on: item-toggle-examine-magnet-on | ||
off: item-toggle-examine-magnet-off | ||
- type: Appearance | ||
- type: GenericVisualizer | ||
visuals: | ||
enum.ToggleVisuals.Toggled: | ||
enum.ToggleVisuals.Layer: | ||
True: { visible: True } | ||
False: { visible: False } | ||
# End Frontier |
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
Binary file added
BIN
+672 Bytes
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/equipped-BELT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+307 Bytes
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/icon-on.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+717 Bytes
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+944 Bytes
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+910 Bytes
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions
40
Resources/Textures/_NF/Objects/Specific/Medical/medical_bag.rsi/meta.json
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,40 @@ | ||
{ | ||
"version": 1, | ||
"license": "CC-BY-SA-3.0", | ||
"copyright": "Taken from ParadiseSS13/Paradise at https://github.com/ParadiseSS13/Paradise/blob/ebf9a7b5e89f5523c5e1c3d2692bf54dac322cae/icons/obj/chemical.dmi and rescaled by reapsnI, inhand sprites by lzk228(discord 455630609641897984), edited by dustylens(github)", | ||
"copyright": "icon_on taken from sprites by @kilath", | ||
"size": { | ||
"x": 32, | ||
"y": 32 | ||
}, | ||
"states": [ | ||
{ | ||
"name": "icon" | ||
}, | ||
{ | ||
"name": "icon-on", | ||
"delays": [ | ||
[ | ||
0.1, | ||
0.1, | ||
0.1, | ||
0.1, | ||
0.1, | ||
0.1 | ||
] | ||
] | ||
}, | ||
{ | ||
"name": "equipped-BELT", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "inhand-left", | ||
"directions": 4 | ||
}, | ||
{ | ||
"name": "inhand-right", | ||
"directions": 4 | ||
} | ||
] | ||
} |