Stone: Difference between revisions

From PZwiki
(Created page with "{{languages|Tree Branch}} {{Items |image = Stone.png |weight = 0.3 }} Stones are found via Foraging and can be used to craft a Stone Hammer. ==Crafting== {{Crafting tabl...")
 
m (Automated CodeBox update)
(33 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{languages|Tree Branch}}
{{Header|Project Zomboid|Items|Materials}}
{{Items
{{Page version|41.78.16}}
|image = Stone.png  
{{Infobox item
|weight = 0.3
|name=Stone
|model=Stone_Model.png
|icon=Rock.png
|icon_name=Stone
|weight=0.3
|category=Material
|function=[[Crafting]]
|item_id=Base.Stone
}}
}}
Stones are found via [[Foraging]] and can be used to craft a Stone Hammer.
 
{{About|the normal stone|a sharpened stone|Chipped Stone}}
A '''stone''' is a survivalist item used in [[crafting]].
 
==Usage==
Stones are used to craft [[Stone Hammer|stone hammers]] and [[cairn]]s.


==Crafting==
==Crafting==
{{Crafting table header}}
{{Crafting header|ing=3}}
{{RecipeLookup|3004}}
{{Crafting survivalist|008|ing=3}}
{{Crafting table footer}}
{{Crafting carpentry|401|ing=3}}
|}
 
==Distribution==
Stones currently do not spawn when the [[Knox Country|world]] is first generated, but can be obtained by [[foraging]] or by disassembling certain objects (e.g., concrete road blocks).
 
===Foraging===
{{See|Foraging}}
Stones can be found at level 0 in foraging, finding only 1 at a time.
 
==Code==
{{CodeBox |{{CodeSnip
  | lang = java
  | line = true
  | start = 914
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Stone
    {
        DisplayCategory = Material,
        Weight = 0.3,
        Type = Normal,
        DisplayName = Stone,
        Icon = Rock,
        WorldStaticModel = Stone,
    }
}}}}


[[Category:Items]]
==See also==
*[[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