Stone: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Automated CodeBox update)
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Materials}}
{{Header|Project Zomboid|Items|Materials}}
{{page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Stone
|name=Stone
|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
|category=Material
|category=Material
|function=[[Crafting]]
|function=[[Crafting]]
|class_name=Base.Stone
|item_id=Base.Stone
}}
}}


Line 33: Line 33:
==Code==
==Code==
{{CodeBox |{{CodeSnip
{{CodeBox |{{CodeSnip
|lang=java |line=true |start=914 |source=newitems.txt
  | lang = java
|retrieved=true |version=41.78.16 |date=2023-09-25
  | line = true
|code=
  | start = 914
item Stone
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Stone
     {
     {
         DisplayCategory = Material,
         DisplayCategory = Material,
Line 44: Line 48:
         Icon = Rock,
         Icon = Rock,
         WorldStaticModel = Stone,
         WorldStaticModel = Stone,
     }
     }  
}}}}
}}}}


==See also==
==See also==
*[[Chipped Stone]]
*[[Chipped Stone]]

Revision as of 13:45, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
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 used to craft stone hammers and cairns.

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)
Cairn Carpentry.png
Cairn
0 XP none Hammer.png
Hammer (tag)
(keep)
Stone.png
Stone x6
(consumed)

Distribution

Stones currently do not spawn when the world is first generated, but can be obtained by foraging or by disassembling certain objects (e.g., concrete road blocks).

Foraging

See more: Foraging

Stones 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
item Stone
    {
        DisplayCategory = Material,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Stone,
        Icon	=	Rock,
        WorldStaticModel = Stone,
    }

See also