Where is the brute pack officer (#2237)

* Fix roll of gauze texture

* Fix the id and stack type too

* Readd brute pack
This commit is contained in:
DrSmugleaf
2020-10-11 17:24:20 +02:00
committed by GitHub
parent ecfe470298
commit c029329070
2 changed files with 23 additions and 5 deletions

View File

@@ -130,6 +130,7 @@ namespace Content.Shared.GameObjects.Components
Gold, Gold,
Phoron, Phoron,
Ointment, Ointment,
Gauze,
Brutepack, Brutepack,
FloorTileSteel, FloorTileSteel,
FloorTileCarpet, FloorTileCarpet,

View File

@@ -52,19 +52,36 @@
count: 5 count: 5
stacktype: enum.StackType.Ointment stacktype: enum.StackType.Ointment
- type: entity
name: bruise pack
description: A therapeutic gel pack and bandages designed to treat blunt-force trauma.
parent: MedicalStack
id: Brutepack
components:
- type: Sprite
sprite: Objects/Specific/Medical/medical.rsi
state: brutepack
- type: Healing
heal:
Blunt: 10
- type: Stack
max: 5
count: 5
stacktype: enum.StackType.Brutepack
- type: entity - type: entity
name: roll of gauze name: roll of gauze
description: Some sterile gauze to wrap around bloody stumps. description: Some sterile gauze to wrap around bloody stumps.
parent: MedicalStack parent: MedicalStack
id: Brutepack id: Gauze
components: components:
- type: Sprite - type: Sprite
sprite: Objects/Specific/Medical/medical.rsi sprite: Objects/Specific/Medical/medical.rsi
state: gauze state: gauze
- type: Healing # - type: Healing
heal: # heal:
Blunt: 10 # Blunt: 10
- type: Stack - type: Stack
max: 5 max: 5
count: 5 count: 5
stacktype: enum.StackType.Brutepack stacktype: enum.StackType.Gauze