Antibiotics: Difference between revisions

From PZwiki
(Created page with "{{languages}} {{Items |image = antibiotics.png |weight = 0.1 }} Antibiotics are found in the front desk of the shopping mall doctors. == Effects == Presumably helps with in...")
 
m (Remove lines))
(37 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Medical items}}
{{Items
{{Page version|41.78.16}}
|image = antibiotics.png  
{{Infobox item
|weight = 0.1
|name=Antibiotics
|model=Antibiotics_Model.png
|icon=Antibiotics.png
|icon_name=Antibiotics
|weight=0.1
|primary_use=[[Health#Healing|Treat]] [[Health#Types of injuries|wound infection]]
|reduce_infection_power=50
|item_id=Base.Antibiotics
}}
}}
{{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 found in the front desk of the shopping mall doctors.
==Usage==
===First Aid===
{{Main|First Aid}}
Antibiotics are drugs available in [[Project Zomboid]] for the treatment of ''regular'' [[Health#Types of Injuries|infections]] which arise from having an [[Health#Types of Injuries|open wound]] that hasn't been treated appropriately (not to be confused with Zombification, which is always fatal).


== Effects ==
Antibiotics halve the strength of a current infection to help it heal.
Presumably helps with infection.


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


{{Navbox/Consumables}}
==Distribution==
[[Category:Consumables]]
The loot distributions can be found in the table(s) below.
[[Category:Medical Items]]
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|MedicalCache1
|[[MedicalBox]]
|4
|4
|-
|all
|[[militarycrate]]
|4
|2
|-
|rowspan="3"|bathroom
|[[counter]]
|4
|0.2
|-
|[[medicine]]
|4
|0.2
|-
|[[shelves]]
|4
|0.2
|-
|rowspan="6"|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
|-
|rowspan="3"|kennels
|[[counter]]
|4
|4
|-
|[[counter]]
|4
|4
|-
|[[counter]]
|4
|4
|-
|laboratory
|[[crate]]
|4
|4
|-
|prisoncells
|[[wardrobe]]
|4
|0.2
|}
 
==Code==
 
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2245
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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==
*[[First Aid]]
 
{{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