Propane Tank: Difference between revisions

From PZwiki
m (Minor)
m (Remove lines))
(19 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials}}
{{Header|The Game World|Items|Tools|type=Tool|version=Version 41|incver=78.13}}
{{Page version|41.78.16}}
{{Infobox drainable
{{Stub}}
|display_name=Propane Tank
{{Infobox item
|name_colour=Tool
|name=Propane Tank
|name_text_colour=Tool
|model=PropaneTank_Model.png
|image=PropaneTank_Model.png
|icon=PropaneTank.png
|alternate_image=PropaneTank.png
|icon_name=Propane Tank
|alternate_name=Propane Tank
|weight=10
|weight=10
|primary_use=Refill [[Propane Torch|Propane Torch]]
|primary_use=Refill [[Propane Torch|Propane Torch]]
Line 13: Line 12:
|max_units=16
|max_units=16
|contents=Propane gas
|contents=Propane gas
|class_name=Base.PropaneTank
|item_id=Base.PropaneTank
}}
}}
A '''propane tank''' is a ''drainable'' item that can be used up to 16 times.
A '''propane tank''' is a ''drainable'' item that can be used up to 16 times.
Line 23: Line 22:


==Distribution==
==Distribution==
They can spawn already installed in a BBQ, which can be taken out by right-clicking the BBQ.
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===
===Buildings===
Line 32: Line 95:


==Code==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=78.13}}
| {{CodeSnip
<pre>
  | lang = java
item PropaneTank
  | line = true
  | start = 1103
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item PropaneTank
{
{
    DisplayCategory = Material,
    DisplayCategory = Material,
Line 50: Line 119:
cantBeConsolided = TRUE,
cantBeConsolided = TRUE,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 56: Line 126:
*[[Gas Can]]
*[[Gas Can]]


{{Navbox equipment}}
{{Navbox items|metalwork_materials}}
 


[[Category:Items]]
[[Category:Items]]
[[Category:Spiffo's Construction Crew (Project)]]
[[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