Adds Ointment and Brutepack. (#150)
* Add Ointment and Brutepack to StackType * Add Ointment and Brutepack sprites * HealingComponent now works correctly with StackComponent * Adds Ointment and Brutepack prototypes * Adds Ointment and Brutepack to stationstation
This commit is contained in:
committed by
Pieter-Jan Briers
parent
1cfed8b6c7
commit
62eb7db0c7
61
Resources/Prototypes/Entities/Medical.yml
Normal file
61
Resources/Prototypes/Entities/Medical.yml
Normal file
@@ -0,0 +1,61 @@
|
||||
- type: entity
|
||||
name: Medkit
|
||||
parent: BaseItem
|
||||
id: Medkit
|
||||
components:
|
||||
- type: Sprite
|
||||
texture: Objects/medkit_r.png
|
||||
- type: Icon
|
||||
texture: Objects/medkit_r.png
|
||||
- type: Healing
|
||||
heal: 100
|
||||
damage: Brute
|
||||
- type: Item
|
||||
Size: 24
|
||||
|
||||
- type: entity
|
||||
name: Medical Stack
|
||||
id: MedicalStack
|
||||
parent: BaseItem
|
||||
components:
|
||||
- type: Stack
|
||||
- type: Item
|
||||
- type: Healing
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Ointment
|
||||
description: Used to treat those nasty burns.
|
||||
parent: MedicalStack
|
||||
id: Ointment
|
||||
components:
|
||||
- type: Sprite
|
||||
texture: Objects/ointment.png
|
||||
- type: Icon
|
||||
texture: Objects/ointment.png
|
||||
- type: Healing
|
||||
heal: 10
|
||||
damage: Heat
|
||||
- type: Stack
|
||||
max: 5
|
||||
count: 5
|
||||
stacktype: enum.StackType.Ointment
|
||||
|
||||
|
||||
- type: entity
|
||||
name: Brutepack
|
||||
description: Some sterile gauze to wrap around bloody stumps.
|
||||
parent: MedicalStack
|
||||
id: Brutepack
|
||||
components:
|
||||
- type: Sprite
|
||||
texture: Objects/brutepack.png
|
||||
- type: Icon
|
||||
texture: Objects/brutepack.png
|
||||
- type: Healing
|
||||
heal: 10
|
||||
damage: Brute
|
||||
- type: Stack
|
||||
max: 5
|
||||
count: 5
|
||||
stacktype: enum.StackType.Brutepack
|
||||
@@ -1,14 +0,0 @@
|
||||
- type: entity
|
||||
name: Medkit
|
||||
parent: BaseItem
|
||||
id: Medkit
|
||||
components:
|
||||
- type: Sprite
|
||||
texture: Objects/medkit_r.png
|
||||
- type: Icon
|
||||
texture: Objects/medkit_r.png
|
||||
- type: Healing
|
||||
heal: 100
|
||||
damage: Brute
|
||||
- type: Item
|
||||
Size: 24
|
||||
Reference in New Issue
Block a user