Logs Stack: Difference between revisions

From PZwiki
(Created page with "{{Notice|Improve}} {{languages}} {{Items |image = Logs2.png |weight = 6 }} == Crafting == {| class="wikitable" style="text-align:center;" |- ! Name ! Recipe ! Description...")
 
m (Automated Formatting)
(35 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Notice|Improve}}
{{Header|Project Zomboid|Items|Materials|Wood}}
{{languages}}
{{Page version|41.78.16}}
{{Items
{{Infobox item
|image = Logs2.png
|name=Logs Stack
|weight = 6
|model=TwoLogsStack_Model.png
|model2=ThreeLogsStack_Model.png
|model3=FourLogsStack_Model.png
|icon=Logs2.png
|icon_name=Two-logs Stack
|icon2=Logs3.png
|icon_name2=Three-logs Stack
|icon3=Logs4.png
|icon_name3=Four-logs Stack
|category=Material
|weight=6
|weight_text=(2 logs)
|weight2=9
|weight_text2=(3 logs)
|weight3=12
|weight_text3=(4 logs)
|function=Encumbrance reduction
|capacity=4 [[log]]s
|item_id=Base.LogStacks2
|item_id2=Base.LogStacks3
|item_id3=Base.LogStacks4
}}
}}
The '''two-logs stack''', '''three-logs stack''' and '''four-logs stack''' are materials used in [[carpentry]].


== Crafting ==
==Usage==
{| class="wikitable" style="text-align:center;"
Log stacks are used to significantly reduce the encumbrance of [[log]]s from 9 to just 3 per log, making them much easier to move. The encumbrance reduction is compounded when you equip the Log Stacks in the Primary or Secondary slot.
|-
! Name
! Recipe
! Description
! Skill Level
{{RecipeLookup|4021}}
|}


== Code ==
==Crafting==
<nowiki>item LogStacks2
Logs are tied together using [[rope]] or [[Sheet Rope|sheet rope]]. The rope is returned to the player once the logs are unstacked.
{{Crafting/sandbox2
|logs_stack2
|logs_stack3
|logs_stack4
}}
 
==Code==
{{CodeBox |
'''''Two Logs Stack''''' [[File:Logs2.png]]
{{CodeSnip
  | lang = java
  | line = true
  | start = 837
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks2
{
{
    DisplayCategory = Material,
Weight = 6,
Weight = 6,
Type = Normal,
Type = Normal,
DisplayName = Two Logs Stack,
DisplayName = Two Logs Stack,
Icon = Logs2,
Icon = Logs2,
} </nowiki>
WorldStaticModel = TwoLogsStack,
}
}}
 
 
'''''Three Logs Stack''''' [[File:Logs3.png]]
{{CodeSnip
  | lang = java
  | line = true
  | start = 847
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks3
    {
        DisplayCategory = Material,
        Weight = 9,
        Type = Normal,
        DisplayName = Three Logs Stack,
        Icon = Logs3,
        WorldStaticModel = ThreeLogsStack,
    }
}}
 
 
'''''Four Logs Stack''''' [[File:Logs4.png]]
{{CodeSnip
  | lang = java
  | line = true
  | start = 857
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks4
    {
        DisplayCategory = Material,
        Weight = 12,
        Type = Normal,
        DisplayName = Four Logs Stack,
        Icon = Logs4,
        WorldStaticModel = FourLogsStack,
    }
}}}}
 
==See also==
*[[Carpentry]]
*[[Log]]


[[Category:Items]]
[[Category:Carpentry materials]]
[[Category:Materials]]
[[Category:Spiffo's Construction Crew (Project)]]
{{Navbox items|carpentry_materials}}

Revision as of 09:48, 14 April 2024

Project ZomboidItemsMaterialsWoodLogs Stack
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Logs Stack
TwoLogsStack Model.png
ThreeLogsStack Model.png
FourLogsStack Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
6 (2 logs)
9 (3 logs)
12 (4 logs)
Function
Encumbrance reduction
Properties
Capacity
Technical
Item ID
Base.LogStacks2
Base.LogStacks3
Base.LogStacks4

The two-logs stack, three-logs stack and four-logs stack are materials used in carpentry.

Usage

Log stacks are used to significantly reduce the encumbrance of logs from 9 to just 3 per log, making them much easier to move. The encumbrance reduction is compounded when you equip the Log Stacks in the Primary or Secondary slot.

Crafting

Logs are tied together using rope or sheet rope. The rope is returned to the player once the logs are unstacked.

Product Ingredients Tools Requirements Workstation XP
Logs2.png
Log Stack
One of:
Rope.png Rope ×2
Sheet Rope.png Sheet Rope ×2
Each of:
Logs.png Log ×3
none none none none
Logs3.png
Log Stack
One of:
Rope.png Rope ×2
Sheet Rope.png Sheet Rope ×2
Each of:
Logs.png Log ×4
none none none none
Logs4.png
Log Stack
One of:
Rope.png Rope ×2
Sheet Rope.png Sheet Rope ×2
Each of:
Logs.png Log ×4
none none none none

Code

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

Two Logs Stack Logs2.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks2
	{
	    DisplayCategory = Material,
		Weight	=	6,
		Type	=	Normal,
		DisplayName	=	Two Logs Stack,
		Icon	=	Logs2,
		WorldStaticModel = TwoLogsStack,
	}


Three Logs Stack Logs3.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks3
    {
        DisplayCategory = Material,
        Weight	=	9,
        Type	=	Normal,
        DisplayName	=	Three Logs Stack,
        Icon	=	Logs3,
        WorldStaticModel = ThreeLogsStack,
    }


Four Logs Stack Logs4.png Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LogStacks4
    {
        DisplayCategory = Material,
        Weight	=	12,
        Type	=	Normal,
        DisplayName	=	Four Logs Stack,
        Icon	=	Logs4,
        WorldStaticModel = FourLogsStack,
    }

See also