Propane Tank: Difference between revisions

From PZwiki
m (Xinn moved page Propane Tank to Propane Tank)
m (Remove lines))
(40 intermediate revisions by 16 users not shown)
Line 1: Line 1:
{{Items
{{Header|Project Zomboid|Items|Materials}}
|image = Item_PropaneTank.png
{{Page version|41.78.16}}
|weight = 20
{{Stub}}
{{Infobox item
|name=Propane Tank
|model=PropaneTank_Model.png
|icon=PropaneTank.png
|icon_name=Propane Tank
|weight=10
|primary_use=Refill [[Propane Torch|Propane Torch]]
|secondary_use=Refill [[Heat source#Propane Barbecue|Propane Barbecue]]
|max_units=16
|contents=Propane gas
|item_id=Base.PropaneTank
}}
}}
A '''propane tank''' is a ''drainable'' item that can be used up to 16 times.


Propane tanks are used as fuel in big-BBQs to create a [[Heat source]].
==Usage==
===Fuel===
Propane tanks are used as a fuel in [[heat source#Propane Barbecue|propane barbecues]] and refill a [[Propane Torch|propane torch]].
Starting with 41.78, one full tank can refill an empty (or partially filled) propane torch 16 times.


They can be found mostly in garages.
==Distribution==
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;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|bedroom
|[[crate]]
|1
|0.5
|-
|closet
|[[crate]]
|4
|0.5
|-
|druglab
|[[counter]]
|4
|0.5
|-
|factory
|[[crate]]
|4
|0.5
|-
|rowspan="6"|garagestorage
|[[counter]]
|4
|0.5
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|-
|metalshipping
|[[metal_shelves]]
|4
|4
|-
|toolstorestorage
|[[metal_shelves]]
|4
|0.5
|}


===Buildings===
There is a small chance to find propane tanks in industrial warehouses, sheds, garages, tool stores, storage units, and [[Containers#Crates|crates]].


Big-BBQ:
===Vehicles===
[[File:BBQ_big.png|frame|left|]]
They can be found in the trunk of a metal welder's vehicle.


 
==Code==
 
{{CodeBox
 
| {{CodeSnip
 
  | lang = java
 
  | line = true
 
  | start = 1103
 
  | source = items.txt
 
  | retrieved = true
 
  | version = 41.78.16
To ignite the BBQ you need a lighter or matches.
  | code =
 
item PropaneTank
 
 
 
 
 
 
 
 
 
 
== Code ==
<nowiki> item PropaneTank
{
{
Weight = 20,
    DisplayCategory = Material,
Weight = 10.0,
Type = Drainable,
Type = Drainable,
UseWhileEquipped = FALSE,
UseWhileEquipped = FALSE,
UseDelta = 0.125,
UseDelta = 0.0625,
DisplayName = Propane Tank,
DisplayName = Propane Tank,
Icon = PropaneTank,
Icon = PropaneTank,
ResizeWorldIcon = FALSE
UseWorldItem = TRUE,
} </nowiki>
ScaleWorldIcon = 2.0,
WeightEmpty = 5.0,
WorldStaticModel = PropaneTank,
cantBeConsolided = TRUE,
}
}}
}}
 
==See also==
*[[Charcoal]]
*[[Gas Can]]
 
{{Navbox items|metalwork_materials}}
 
 
[[Category:Items]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Metalwork materials]]

Revision as of 07:18, 15 April 2024

Project ZomboidItemsMaterialsPropane Tank
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Propane Tank
PropaneTank Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
10
Function
Properties
Contents
Propane gas
Capacity
16 units
Technical
Item ID
Base.PropaneTank

A propane tank is a drainable item that can be used up to 16 times.

Usage

Fuel

Propane tanks are used as a fuel in propane barbecues and refill a propane torch. Starting with 41.78, one full tank can refill an empty (or partially filled) propane torch 16 times.

Distribution

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

Containers
Building/Room Container Rolls Chance
bedroom crate 1 0.5
closet crate 4 0.5
druglab counter 4 0.5
factory crate 4 0.5
garagestorage counter 4 0.5
crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5
metalshipping metal_shelves 4 4
toolstorestorage metal_shelves 4 0.5

Buildings

There is a small chance to find propane tanks in industrial warehouses, sheds, garages, tool stores, storage units, and crates.

Vehicles

They can be found in the trunk of a metal welder's vehicle.

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 PropaneTank
	{
	    DisplayCategory = Material,
		Weight	=	10.0,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.0625,
		DisplayName	=	Propane Tank,
		Icon	=	PropaneTank,
		UseWorldItem = TRUE,
		ScaleWorldIcon = 2.0,
		WeightEmpty = 5.0,
		WorldStaticModel = PropaneTank,
		cantBeConsolided = TRUE,
	}

See also