Ripped Sheets

From PZwiki
Revision as of 10:22, 4 May 2019 by Vaileasys (talk | contribs)
Ripped Sheets
Ripped Sheets
Dirty Rag
General
Category Item
Encumbrance
Heavy Load
0.05
Main function Bandage bleeding wounds
Ripped Sheets
Bandage power 2
Other function(s) Fire starting
Dirty Rag
Bandage power 0
Other function(s) Fire starting
Sterilized Rag
Bandage power 2
Other function(s) Prevent or cure infected wounds
Technical details
Item ID See Item IDs
Can be used as an improvised bandage.
— Ripped Sheets in-game tooltip
Can be used as an improvised bandage. Guards against infection.
— Sterilized Rag in-game tooltip.

Ripped sheets, otherwise referred to as a rag (sterilized rag, dirty rag), is a medical item.

Usage

First Aid

Main article: First Aid

Ripped sheets can be used to stop bleeding caused by injuries that manage to break the skin.

When bandaging a wound, ripped sheets function the same as a bandage, with the ripped sheets weighing half the weight and only having half the bandage power compared to the medical bandage. See the medical page or health page for information on medical treatments.

If a ripped sheet is used as a bandage, it will eventually turn into a dirty rag, and the chance of infection increases until the bandage is removed.

Fire starting

Ripped sheets can be used to start a fire or as a fuel.

Crafting

Obtaining

Ripped sheets can be made of various items such as sheets, vests, skirts, trousers, blouses and sweaters. Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

What it can craft

Template:Crafting table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
|- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

Ripped sheets cannot be found in the world and only obtained from tearing sheets and clothing.

Item IDs

Rag type Class name
Ripped Sheets Base.RippedSheets
Dirty Rag Base.RippedSheetsDirty
Sterilized Rag Base.AlcoholRippedSheets

Code

From items.txt (Project Zomboid directory/media/scripts/)

Ripped Sheets Rag.png Retrieved: Build 39.67.5

	item RippedSheets
		CanBandage		= TRUE,
		Weight			= 0.05,
		AlwaysWelcomeGift	= true,
		Type			= Normal,
		DisplayName		= Ripped Sheets,
		ReplaceOnUse    	= RippedSheetsDirty,
		Icon			= Rag,
		BandagePower    	= 2,
		Tooltip 		= Tooltip_RippedSheets,

Dirty Rag RagDirty.png Retrieved: Build 39.67.5

	item RippedSheetsDirty
		CanBandage		= TRUE,
		Weight			= 0.05,
		AlwaysWelcomeGift	= TRUE,
		Type			= Normal,
		DisplayName		= Dirty Rag,
		Icon			= RagDirty,
		BandagePower    	= 0,

Sterilized Rag Rag.png Retrieved: Build 39.67.5

	item AlcoholRippedSheets
		CanBandage		=	TRUE,
		Weight			=	0.05,
		AlwaysWelcomeGift	=	TRUE,
		Alcoholic		=	TRUE,
		Type			=	Normal,
		DisplayName		=	Sterilized Rag,
		ReplaceOnUse    	=   RippedSheetsDirty,
		Icon			=	Rag,
		BandagePower    	=   2,
		Tooltip 		= Tooltip_SterilizedRag,

See also

Template:Navbox/Consumables