Logs Stack: Difference between revisions

From PZwiki
m (Automated infobox fix)
m (Automated Formatting)
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name =Logs Stack
|name=Logs Stack
|model=TwoLogsStack_Model.png
|model=TwoLogsStack_Model.png
|model2=ThreeLogsStack_Model.png
|model2=ThreeLogsStack_Model.png
Line 25: Line 25:
|item_id3=Base.LogStacks4
|item_id3=Base.LogStacks4
}}
}}
The '''two-logs stack''', '''three-logs stack''' and '''four-logs stack''' are materials used in [[carpentry]].
The '''two-logs stack''', '''three-logs stack''' and '''four-logs stack''' are materials used in [[carpentry]].


Line 33: Line 32:
==Crafting==
==Crafting==
Logs are tied together using [[rope]] or [[Sheet Rope|sheet rope]]. The rope is returned to the player once the logs are unstacked.
Logs are tied together using [[rope]] or [[Sheet Rope|sheet rope]]. The rope is returned to the player once the logs are unstacked.
{{Crafting header|ing=2}}
{{Crafting/sandbox2
{{Crafting carpentry|006|ing=2}}
|logs_stack2
{{Crafting carpentry|007|ing=2}}
|logs_stack3
{{Crafting carpentry|008|ing=2}}
|logs_stack4
|}
}}


==Code==
==Code==
Line 43: Line 42:
'''''Two Logs Stack''''' [[File:Logs2.png]]
'''''Two Logs Stack''''' [[File:Logs2.png]]
{{CodeSnip
{{CodeSnip
|lang=java |line=true |start=837 |source=newitems.txt
  | lang = java
|retrieved=true |version=41.78.16 |date=2023-09-25
  | line = true
|code=
  | start = 837
    item LogStacks2
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks2
{
{
    DisplayCategory = Material,
    DisplayCategory = Material,
Line 60: Line 63:
'''''Three Logs Stack''''' [[File:Logs3.png]]
'''''Three Logs Stack''''' [[File:Logs3.png]]
{{CodeSnip
{{CodeSnip
|lang=java |line=true |start=847 |source=newitems.txt
  | lang = java
|retrieved=true |version=41.78.16 |date=2023-09-25
  | line = true
|code=
  | start = 847
item LogStacks3
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks3
     {
     {
         DisplayCategory = Material,
         DisplayCategory = Material,
Line 77: Line 84:
'''''Four Logs Stack''''' [[File:Logs4.png]]
'''''Four Logs Stack''''' [[File:Logs4.png]]
{{CodeSnip
{{CodeSnip
|lang=java |line=true |start=857 |source=newitems.txt
  | lang = java
|retrieved=true |version=41.78.16 |date=2023-09-25
  | line = true
|code=
  | start = 857
    item LogStacks4
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item LogStacks4
     {
     {
         DisplayCategory = Material,
         DisplayCategory = Material,
Line 98: Line 109:
[[Category:Materials]]
[[Category:Materials]]
[[Category:Spiffo's Construction Crew (Project)]]
[[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