Beta Blockers: Difference between revisions

From PZwiki
m (Fixed Coding)
m (Remove lines))
(48 intermediate revisions by 21 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Medical items}}
{{Items
{{Page version|41.78.16}}
|image = Betablockers.png  
{{Infobox item
|weight = 0.2
|name=Beta Blockers
|model=PillsBetablocker_Model.png
|icon=PillsBetablocker.png
|icon_name=Beta Blockers
|weight=0.2
|primary_use=Reduce [[Panic|panic]]
|max_units=10
|item_id=Base.PillsBeta
}}
}}
{{Quote|text=Reduces panic|author=In-game tooltip.}}
'''Beta blockers''' are an [[Items|item]] used in [[First Aid|first aid]].


'''Beta blockers''' can be found inside of [[medicine cabinets]] in bathrooms. They are used to lower the panic of your character when he encounters zombies. It is best to keep some with you at all times because you never know when you may be faced with a large number of zombies or when under siege. It is planned that if you use beta blockers or any other kind of medicine excessively, you will have to face gruesome side effects.  
==Usage==
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.


== Code ==
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.
<nowiki>item PillsBeta
{
Type = Drainable,
DisplayName = Beta Blockers,
Icon = PillsBetablocker,
Weight = 0.2,
UseWhileEquipped = false,
}</nowiki>


{{Navbox/Consumables}}
==Distribution==
[[Category:Consumables]]
The loot distributions can be found in the table(s) below.
[[Category:Medical Items]]
 
[[Category:Version 0.2.0p]]
{| 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
|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
|}
 
==Gallery==
<gallery>
PillBottle.png|Pill texture in the game files
</gallery>
 
==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