Beta Blockers: Difference between revisions

From PZwiki
(adjustments to layout. Added new infobox and header)
Tag: categories removed
m (Remove lines))
(37 intermediate revisions by 13 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Medical items}}
{{languages|Beta_Blockers}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 39|incver=67.5}}{{Infobox drainable
{{Infobox item
|display_name=Beta Blockers
|name=Beta Blockers
|name_colour=Medical
|model=PillsBetablocker_Model.png
|name_text_colour=Medical
|icon=PillsBetablocker.png
|image = PillsBetablocker.png
|icon_name=Beta Blockers
|weight = 0.2
|weight=0.2
|primary_use = Reduce [[Moodles#Panic|panic]]
|primary_use=Reduce [[Panic|panic]]
|max_units = 10
|max_units=10
|class_name = Base.PillsBeta
|item_id=Base.PillsBeta
}}{{quote|text=Reduces panic|author=In-game tooltip.}}'''Beta blockers''' are an [[item]] used in [[First Aid|first aid]].
}}
{{Quote|text=Reduces panic|author=In-game tooltip.}}
'''Beta blockers''' are an [[Items|item]] used in [[First Aid|first aid]].


==Usage==
==Usage==
Beta blockers are drugs available to the player to lower their [[Moodles#Panicked|panic]] level over time when dealing with [[zombie]] encounters. They are drainable, and they can be used ten times before they run out.  
Beta blockers are drugs available to the player to lower their [[Panicked|panic]] level over time when dealing with [[zombie]] encounters. They can be used ten times before they run out and are able to stack their effect up to four times, allowing for the player to deal with increasingly more zombies.


Panic decreases the player's accuracy, therefore taking beta blockers is ideal if the player is expected to encounter zombies.
Panic decreases the player's accuracy when using [[firearms]] and lowers [[Weapons#Melee Weapons|melee]] damage, critical chance and vision cone, therefore taking beta blockers is ideal if the player is expected to encounter zombies. The effects last for one and a half in-game hours.


==Distribution==
==Distribution==
Beta Blockers can be found in [[medicine cabinets]], in several places within a pharmacy such as a fridge, on dead zombies and other various places as it is viewed as a generic item within the game.
The loot distributions can be found in the table(s) below.


== Code ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
<pre> item PillsBeta
! colspan="4" | Containers
Weight = 0.2,
|-
Type = Drainable,
! Building/Room
        UseDelta = 0.1,
! Container
UseWhileEquipped = FALSE,
! style="width: 3.2em;" | Rolls
DisplayName = Beta Blockers,
! style="width: 3.2em;" | Chance
Icon = PillsBetablocker,
|-
Tooltip = Tooltip_PillsBetablocker,</pre>
|MedicalCache1
|[[MedicalBox]]
|4
|1
|-
|all
|[[militarycrate]]
|4
|2
|-
|rowspan="3"|bathroom
|[[counter]]
|4
|1
|-
|[[medicine]]
|4
|1
|-
|[[shelves]]
|4
|1
|-
|rowspan="2"|dentiststorage
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|2
|-
|rowspan="2"|kennels
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|2
|-
|laboratory
|[[crate]]
|4
|1
|}


== See also ==
==Gallery==
[[First_Aid|General First Aid]]
<gallery>
PillBottle.png|Pill texture in the game files
</gallery>


{{Navbox/Consumables}}
==Trivia==
*They currently have the same model as [[Antidepressants]].
*The company written on the lid of the pill model, ''Binky'' is a reference to one of the [[Project Zomboid]] developers, [[Andy Hodgetts|CaptainBinky]].
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1177
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item PillsBeta
{
    DisplayCategory = FirstAid,
Weight = 0.2,
Type = Drainable,
        UseDelta = 0.1,
UseWhileEquipped = FALSE,
DisplayName = Beta Blockers,
Icon = PillsBetablocker,
Tooltip = Tooltip_PillsBetablocker,
StaticModel = PillBottle,
WorldStaticModel = PillBottleGround,
Medical = TRUE,
}
}}
}}
 
==See also==
*[[First Aid]]
*[[Antidepressants]]
*[[Cigarettes]]
 
{{Navbox items|medical}}

Revision as of 06:31, 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]
Beta Blockers
PillsBetablocker Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Reduce panic
Properties
Capacity
10 units
Technical
Item ID
Base.PillsBeta
Reduces panic
— In-game tooltip.

Beta blockers are an item used in first aid.

Usage

Beta blockers are drugs available to the player to lower their panic level over time when dealing with zombie encounters. They can be used ten times before they run out and are able to stack their effect up to four times, allowing for the player to deal with increasingly more zombies.

Panic decreases the player's accuracy when using firearms and lowers melee damage, critical chance and vision cone, therefore taking beta blockers is ideal if the player is expected to encounter zombies. The effects last for one and a half in-game hours.

Distribution

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

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

Gallery

Trivia

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item PillsBeta
	{
	    DisplayCategory = FirstAid,
		Weight	=	0.2,
		Type	=	Drainable,
        UseDelta	=	0.1,
		UseWhileEquipped	=	FALSE,
		DisplayName	=	Beta Blockers,
		Icon	=	PillsBetablocker,
		Tooltip = Tooltip_PillsBetablocker,
		StaticModel = PillBottle,
		WorldStaticModel = PillBottleGround,
		Medical = TRUE,
	}

See also