Antibiotics: Difference between revisions

From PZwiki
m (Automated 'items' capitalisation)
m (Remove lines))
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Antibiotics
|name=Antibiotics
|name_colour=Medical
|name_text_colour=Medical
|model=Antibiotics_Model.png
|model=Antibiotics_Model.png
|icon=Antibiotics.png
|icon=Antibiotics.png
Line 10: Line 8:
|weight=0.1
|weight=0.1
|primary_use=[[Health#Healing|Treat]] [[Health#Types of injuries|wound infection]]
|primary_use=[[Health#Healing|Treat]] [[Health#Types of injuries|wound infection]]
|reduce_infection_power = 50
|reduce_infection_power=50
|item_id = Base.Antibiotics
|item_id=Base.Antibiotics
}}
}}
{{Quote|text=Fights wound infections. Cannot prevent zombification.|author=In-game tooltip.}}
{{Quote|text=Fights wound infections. Cannot prevent zombification.|author=In-game tooltip.}}
'''Antibiotics''' are an [[Items|item]] used in [[First Aid|first aid]].
'''Antibiotics''' are an [[Items|item]] used in [[First Aid|first aid]].
Line 24: Line 21:
Antibiotics halve the strength of a current infection to help it heal.
Antibiotics halve the strength of a current infection to help it heal.


Antibiotics do nothing with the treatment of [[Moodles#Cold|colds]] and [[:File:Health-Article-Zombified.png|zombification]].
Antibiotics do nothing with the treatment of [[Cold|colds]] and [[:File:Health-Article-Zombified.png|zombification]].


==Distribution==
==Distribution==
Line 32: Line 29:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="1"|all
|MedicalCache1
| [[militarycrate]]
|[[MedicalBox]]
| 4
|4
| 2
|4
|-
|all
|[[militarycrate]]
|4
|2
|-
|-
| rowspan="3"|bathroom
|rowspan="3"|bathroom
| [[counter]]
|[[counter]]
| 4
|4
| 0.2
|0.2
|-
|-
|[[medicine]]
|[[medicine]]
Line 55: Line 57:
|0.2
|0.2
|-
|-
| rowspan="6"|dentiststorage
|rowspan="6"|dentiststorage
| [[metal_shelves]]
|[[metal_shelves]]
| 4
|4
| 4
|4
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]
Line 80: Line 82:
|4
|4
|-
|-
| rowspan="3"|kennels
|rowspan="3"|kennels
| [[counter]]
|[[counter]]
| 4
|4
| 4
|4
|-
|-
|[[counter]]
|[[counter]]
Line 93: Line 95:
|4
|4
|-
|-
| rowspan="1"|laboratory
|laboratory
| [[crate]]
|[[crate]]
| 4
|4
| 4
|4
|-
|-
| rowspan="1"|prisoncells
|prisoncells
| [[wardrobe]]
|[[wardrobe]]
| 4
|4
| 0.2
|0.2
|}
|}


Line 110: Line 112:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 2245
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
Line 116: Line 118:
   | code =
   | code =
item Antibiotics
item Antibiotics
{
    {
    DisplayCategory = FirstAid,
        DisplayCategory = FirstAid,
    Weight = 0.1,
        Weight = 0.1,
    Type = Food,
        Type = Food,
    DisplayName = Antibiotics,
        DisplayName = Antibiotics,
    Icon = Antibiotics,
        Icon = Antibiotics,
     ReduceInfectionPower = 50,
        ReduceInfectionPower     =   50,
    CustomContextMenu = Take,
        CustomContextMenu   =   Take,
    CantBeFrozen = TRUE,
        CantBeFrozen = TRUE,
    Tooltip = Tooltip_Antibiotics,
        Tooltip = Tooltip_Antibiotics,
    Medical = TRUE,
        Medical = TRUE,
    WorldStaticModel = Antibiotics,
        WorldStaticModel = Antibiotics,
}
    }
  }}
}}
}}
}}


Line 135: Line 137:
*[[First Aid]]
*[[First Aid]]


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

Revision as of 06:25, 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]
Antibiotics
Antibiotics Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Effect
Antibiotic powerAntibiotics.png
50
Technical
Item ID
Base.Antibiotics
Fights wound infections. Cannot prevent zombification.
— In-game tooltip.

Antibiotics are an item used in first aid.

Usage

First Aid

Main article: First Aid

Antibiotics are drugs available in Project Zomboid for the treatment of regular infections which arise from having an open wound that hasn't been treated appropriately (not to be confused with Zombification, which is always fatal).

Antibiotics halve the strength of a current infection to help it heal.

Antibiotics do nothing with the treatment of colds and zombification.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
MedicalCache1 MedicalBox 4 4
all militarycrate 4 2
bathroom counter 4 0.2
medicine 4 0.2
shelves 4 0.2
dentiststorage metal_shelves 4 4
metal_shelves 4 4
metal_shelves 4 4
metal_shelves 4 4
metal_shelves 4 4
metal_shelves 4 4
kennels counter 4 4
counter 4 4
counter 4 4
laboratory crate 4 4
prisoncells wardrobe 4 0.2

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Antibiotics
    {
        DisplayCategory = FirstAid,
        Weight	=	0.1,
        Type	=	Food,
        DisplayName	=	Antibiotics,
        Icon	=	Antibiotics,
        ReduceInfectionPower     =   50,
        CustomContextMenu   =   Take,
        CantBeFrozen = TRUE,
        Tooltip = Tooltip_Antibiotics,
        Medical = TRUE,
        WorldStaticModel = Antibiotics,
    }

See also