Logs Stack: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|type=Construction|version=Version 41|incver=73}}{{Infobox normal
{{Languages}}{{Header|The Game World|Items|type=Construction|version=Version 41|incver=73}}{{Infobox item
|display_name=Two Logs Stack
|display_name=Two Logs Stack
|category=Material
|category=Material
|name_colour=Construction
|name_colour=Construction
|name_text_colour=Construction
|name_text_colour=Construction
|image=Logs2.png  
|model=Logs2.png  
|weight=6
|weight=6
|primary_use=Encumbrance reduction
|primary_use=Encumbrance reduction
|class_name=Base.LogStacks2
|class_name=Base.LogStacks2
}}{{Infobox normal
}}{{Infobox item
|display_name=Three Logs Stack
|display_name=Three Logs Stack
|category=Material
|category=Material
|name_colour=Construction
|name_colour=Construction
|name_text_colour=Construction
|name_text_colour=Construction
|image=Logs3.png
|model=Logs3.png
|weight=9
|weight=9
|primary_use=Encumbrance reduction
|primary_use=Encumbrance reduction
|class_name=Base.LogStacks3
|class_name=Base.LogStacks3
}}{{Infobox normal
}}{{Infobox item
|display_name=Four Logs Stack
|display_name=Four Logs Stack
|category=Material
|category=Material
|name_colour=Construction
|name_colour=Construction
|name_text_colour=Construction
|name_text_colour=Construction
|image=Logs4.png  
|model=Logs4.png  
|weight=12
|weight=12
|primary_use=Encumbrance reduction
|primary_use=Encumbrance reduction

Revision as of 06:14, 23 September 2023

The Game WorldItemsLogs Stack
Logs Stack
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
6
Function
Encumbrance reduction
Technical
Item ID
Base.LogStacks2
Logs Stack
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
9
Function
Encumbrance reduction
Technical
Item ID
Base.LogStacks3
Logs Stack
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
12
Function
Encumbrance reduction
Technical
Item ID
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 weight of logs from 9 to just 3 per log, making them much easier to move. The weight reduction is compounded when you equip the Log Stacks in your 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 XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Logs2.png
Logs Stack
0 XP none Logs.png
Log x2
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)
Logs3.png
Logs Stack
0 XP none Logs.png
Log x3
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)
Logs4.png
Logs Stack
0 XP none Logs.png
Log x4
(consumed)
One of:
Rope.png Rope x2
Sheet Rope.png Sheet Rope x2

(consumed)

Code

From newitems.txt (Project Zomboid directory/media/scripts/)
Two Logs Stack Logs2.png Retrieved: Build 41.73

	item LogStacks2
	{
		DisplayCategory 	= Material,
		Weight			= 6,
		Type			= Normal,
		DisplayName		= Two Logs Stack,
		Icon			= Logs2,
		WorldStaticModel	= TwoLogsStack,

Three Logs Stack Logs3.png Retrieved: Build 41.73

	item LogStacks3
	{
		DisplayCategory 	= Material,
       		Weight			= 9,
        	Type			= Normal,
        	DisplayName		= Three Logs Stack,
        	Icon			= Logs3,
        	WorldStaticModel	= ThreeLogsStack,

Four Logs Stack Logs4.png Retrieved: Build 41.73

	item LogStacks4
    	{
		DisplayCategory 	= Material,
		Weight			= 12,
		Type			= Normal,
		DisplayName		= Four Logs Stack,
		Icon			= Logs4,
		WorldStaticModel	= FourLogsStack,

See also