Stone: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
(infobox changes and new code section)
Line 1: Line 1:
{{languages}}
{{languages}}
{{header|The Game World|Items|type=Farm|version=Version 39|incver=67.5}}{{Infobox item
{{header|The Game World|Items|type=Farm|version=Version 41|incver=78.16}}{{Infobox item
|display_name=Stone
|display_name=Stone
|name_colour=Farm
|name_text_colour=Farm
|model = Stone_Model.png  
|model = Stone_Model.png  
|icon=Rock.png
|icon=Rock.png
|icon_name=Stone
|icon_name=Stone
|weight = 0.3
|weight = 0.3
|primary_use=[[Crafting]]
|category=Material
|function=[[Crafting]]
|class_name=Base.Stone
|class_name=Base.Stone
}}{{about|the normal stone|a sharpened stone|Chipped Stone}}
}}{{about|the normal stone|a sharpened stone|Chipped Stone}}
Line 27: Line 26:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox |{{CodeSnip
{{Retrieved|version=41|incver=65}}
|lang=java |line=true |start=914 |source=newitems.txt
<pre> item Stone
|retrieved=true |version=41 |incver=78.16 |date=2023-09-25
|code=
item Stone
     {
     {
         DisplayCategory = Material,
         DisplayCategory = Material,
         Weight         = 0.3,
         Weight = 0.3,
         Type         = Normal,
         Type = Normal,
         DisplayName = Stone,
         DisplayName = Stone,
         Icon         = Rock,
         Icon = Rock,
         WorldStaticModel = Stone,
         WorldStaticModel = Stone,
     }</pre>
     }
}}}}


==See also==
==See also==
*[[Chipped Stone]]
*[[Chipped Stone]]
[[Category:Items]]

Revision as of 12:24, 25 September 2023

Stone
Stone Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Function
Technical
Item ID
Base.Stone
PlushSpiffo.pngThis article is about the normal stone. For a sharpened stone, see Chipped Stone.

A stone is a survivalist item used in crafting.

Usage

Stones are only used to craft a stone hammer.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
HammerStone.png
Stone Hammer
0 XP none Branch.png
Tree Branch
(consumed)
Rock.png
Stone
(consumed)

(consumed)

Distribution

Foraging

For main article, see: Foraging

Stones cannot be found in the world and can only be obtained through foraging. It can be found at level 0 in foraging, finding only 1 at a time.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16 (25 September 2023)
item Stone
    {
        DisplayCategory = Material,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Stone,
        Icon	=	Rock,
        WorldStaticModel = Stone,
    }

See also