Poultice: Difference between revisions

From PZwiki
m (Automated infobox fix)
m (Remove lines))
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|model = Poultice_Model.png
|model=Poultice_Model.png
|icon = MashedHerbs.png
|icon=MashedHerbs.png
|icon_name = Plantain Poultice
|icon_name=Plantain Poultice
|icon_link = Plantain
|icon_link=Plantain
|model2 = Poultice_Model.png
|model2=Poultice_Model.png
|icon2 = MashedHerbs.png
|icon2=MashedHerbs.png
|icon_name2 = Comfrey Poultice
|icon_name2=Comfrey Poultice
|icon_link2 = Comfrey
|icon_link2=Comfrey
|model3 = Poultice_Model.png
|model3=Poultice_Model.png
|icon3 = MashedHerbs.png
|icon3=MashedHerbs.png
|icon_name3 = Wild Garlic Poultice
|icon_name3=Wild Garlic Poultice
|icon_link3 = Wild Garlic
|icon_link3=Wild Garlic
|weight = 0.2
|weight=0.2
|name =Poultice
|name=Poultice
|name_colour=Medical
|name_text_colour=Medical
|category=First Aid
|category=First Aid
|primary_use=Aid recovery or fight [[Health#Types of Injuries|infection]]
|primary_use=Aid recovery or fight [[Health#Types of Injuries|infection]]
|class_name = Base.PlantainCataplasm<br>Base.ComfreyCataplasm<br>Base.WildGarlicCataplasm
|item_id=Base.PlantainCataplasm<br>Base.ComfreyCataplasm<br>Base.WildGarlicCataplasm
}}
}}
A '''poultice''' is used to aid recovery or fight [[Health#Types of injuries|infection]].
A '''poultice''' is used to aid recovery or fight [[Health#Types of injuries|infection]].


Line 43: Line 40:


==Crafting==
==Crafting==
{{Crafting header|type=med|ing=2}}
{{Crafting/sandbox2
{{Crafting health|101|ing=2}}
|plantain_plantain_poultice
{{Crafting health|102|ing=2}}
|comfrey_comfrey_poultice
{{Crafting health|103|ing=2}}
|wild_garlic_wild_garlic_poultice
|}
}}


==Trivia==
==Trivia==
Line 62: Line 59:
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item ComfreyCataplasm
item ComfreyCataplasm
     {
     {
         DisplayCategory = FirstAid,
         DisplayCategory = FirstAid,
Line 79: Line 76:
   | line = true
   | line = true
   | start = 2038
   | start = 2038
   | source = items_food.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item PlantainCataplasm
item PlantainCataplasm
     {
     {
         DisplayCategory = FirstAid,
         DisplayCategory = FirstAid,
Line 100: Line 97:
   | line = true
   | line = true
   | start = 2082
   | start = 2082
   | source = items_food.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
    item WildGarlicCataplasm
item WildGarlicCataplasm
     {
     {
         DisplayCategory = FirstAid,
         DisplayCategory = FirstAid,
Line 121: Line 118:
*[[Foraging]]
*[[Foraging]]


{{Navbox medical}}
{{Navbox items|medical}}

Revision as of 07:17, 15 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Poultice
Poultice Model.png
Poultice Model.png
Poultice Model.png
General
Category
First Aid
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Aid recovery or fight infection
Technical
Item ID
Base.PlantainCataplasm
Base.ComfreyCataplasm
Base.WildGarlicCataplasm

A poultice is used to aid recovery or fight infection.

Usage

First Aid

For main article, see First Aid

A poultice, also called a cataplasm, is a soft moist mass applied to the skin to treat an aching, inflamed or painful part of the body. The medicinal plants of comfrey, plantain, and wild garlic can be crafted into a poultice using a mortar and pestle.

Item Description
Comfrey Poultice
Comfrey Poultice
Aids recovery from broken bones.
Plantain Poultice
Plantain Poultice
Aids recovery from wounds.
Wild Garlic Poultice
Wild Garlic Poultice
Helps to fight against infection.

Crafting

Product Ingredients Tools Requirements Workstation XP
MashedHerbs.png
Plantain Poultice
PlantainPlantago.png Plantain ×5 MortarPestle.png
Mortar and Pestle
none none none
MashedHerbs.png
Comfrey Poultice
Comfrey.png Comfrey ×5 MortarPestle.png
Mortar and Pestle
none none none
MashedHerbs.png
Wild Garlic Poultice
WildGarlic.png Wild Garlic ×5 MortarPestle.png
Mortar and Pestle
none none none

Trivia

  • The word "poultice" comes from the Latin puls, pultes, meaning "porridge".

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

MashedHerbs.png Base.ComfreyCataplasm
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item ComfreyCataplasm
    {
        DisplayCategory = FirstAid,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	Comfrey Poultice,
        Icon	=	MashedHerbs,
        Tooltip = Tooltip_Comfrey,
        WorldStaticModel = Poultice,
    }

MashedHerbs.png Base.PlantainCataplasm
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item PlantainCataplasm
    {
        DisplayCategory = FirstAid,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	Plantain Poultice,
        Icon	=	MashedHerbs,
        Tooltip = Tooltip_Plantain,
        WorldStaticModel = Poultice,
    }

MashedHerbs.png Base.WildGarlicCataplasm
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item WildGarlicCataplasm
    {
        DisplayCategory = FirstAid,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	Wild Garlic Poultice,
        Icon	=	MashedHerbs,
        Tooltip = Tooltip_Garlic,
        WorldStaticModel = Poultice,
    }

See also