Vitamins: Difference between revisions

From PZwiki
m (Remove lines))
m (Distribution table update)
Line 22: Line 22:
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.


{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
<!--BOT FLAG|PillsVitamins|41.78.16-->
! colspan="4" | Containers
{{clear}}
|-
<div class="togglebox theme-red">
! Building/Room
    <div>PillsVitamins distribution
! Container
        <span class="mw-customtoggle-togglebox-PillsVitamins" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
! style="width: 3.2em;" | Rolls
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-PillsVitamins">
! style="width: 3.2em;" | Chance
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
|-
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
|rowspan="3"|bathroom
    |+ {{ll|Containers}}
|[[counter]]
    ! Building / Room
|4
    ! Container
|4
    ! Rolls
|-
    ! Chance
|[[medicine]]
    |-
|4
    | all
|4
    | {{ll|Handbag}}
|-
    | 1
|[[shelves]]
    | 1.0
|4
    |-
|4
    | all
|-
    | {{ll|inventoryfemale}}
|rowspan="4"|bedroom
    | 1
|[[desk]]
    | 0.1
|4
    |-
|1
    | all
|-
    | {{ll|medicine}}
|[[desk]]
    | 4
|4
    | 4.0
|1
    |-
|-
    | all
|[[dresser]]
    | {{ll|sidetable}}
|4
    | 1
|1
    | 1.0
|-
    |-
|[[sidetable]]
    | bathroom
|4
    | {{ll|counter}}
|1
    | 4
|-
    | 4.0
|closet
    |-
|[[crate]]
    | bathroom
|4
    | {{ll|medicine}}
|1
    | 4
|-
    | 4.0
|rowspan="4"|conveniencestore
    |-
|[[shelves]]
    | bathroom
|4
    | {{ll|shelves}}
|1
    | 4
|-
    | 4.0
|[[shelves]]
    |-
|4
    | bedroom
|1
    | {{ll|desk}}
|-
    | 4
|[[shelves]]
    | 1.0
|4
    |-
|2
    | bedroom
|-
    | {{ll|dresser}}
|[[shelves]]
    | 4
|4
    | 1.0
|2
    |-
|-
    | bedroom
|office
    | {{ll|sidetable}}
|[[desk]]
    | 4
|4
    | 1.0
|1
    |-
|}
    | closet
    | {{ll|crate}}
    | 4
    | 1.0
    |-
    | conveniencestore
    | {{ll|shelves}}
    | 4
    | 20.0
    |-
    | conveniencestore
    | {{ll|shelves}}
    | 4
    | 10.0
    |-
    | office
    | {{ll|desk}}
    | 4
    | 1.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-PillsVitamins" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|PillsVitamins|41.78.16-->


==Code==
==Code==

Revision as of 16:57, 24 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]
Vitamins
Vitamins Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Reduce tiredness
Properties
Capacity
10 units
Effect
FatigueMoodle Icon Tired.png
-2
Technical
Item ID
Base.PillsVitamins
Provides a burst of energy when taken. Reduces fatigue.
— In-game tooltip

Vitamins are a drainable item used in first aid.

Usage

Vitamins are used to reduce fatigue, which is commonly known as tiredness and not to be confused with exhaustion/endurance. However, fatigue does have a direct correlation with endurance as the more tired the character is, the harder it is for them to regain their stamina. Taking vitamins is ideal when the player is running a long distance or fighting a large amount of zombies, which will exhaust them quickly, slowing down movement, weakening their attacks, and reducing weapon accuracy.

Distribution

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

PillsVitamins distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Handbag 1 1.0
all inventoryfemale 1 0.1
all medicine 4 4.0
all sidetable 1 1.0
bathroom counter 4 4.0
bathroom medicine 4 4.0
bathroom shelves 4 4.0
bedroom desk 4 1.0
bedroom dresser 4 1.0
bedroom sidetable 4 1.0
closet crate 4 1.0
conveniencestore shelves 4 20.0
conveniencestore shelves 4 10.0
office desk 4 1.0

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 PillsVitamins
	{
	    DisplayCategory = FirstAid,
        FatigueChange	=	-2,
		Weight	=	0.2,
        UseDelta	=	0.1,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		DisplayName	=	Vitamins,
		Icon	=	Vitamins,
		Tooltip = Tooltip_Vitamins,
		StaticModel = PillBottle,
		WorldStaticModel = Vitamins_Ground,
		Medical = TRUE,
	}

See also