Chipped 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}}
{{Header|The Game World|Items|type=Farm|version=Version 41|incver=78.16}}
{{Infobox item
{{Infobox item
|display_name=Chipped Stone
|display_name=Chipped Stone
|name_colour=Farm
|name_text_colour=Farm
|model=ChippedStone_Model.png  
|model=ChippedStone_Model.png  
|icon=RockSharpened.png
|icon=RockSharpened.png
|icon_name=Chipped Stone
|icon_name=Chipped Stone
|category=Material
|weight=0.3
|weight=0.3
|primary_use=[[Crafting]]
|function=[[Crafting]]
|class_name=Base.SharpedStone
|class_name=Base.SharpedStone
}}
}}
Line 20: Line 19:
==Crafting==
==Crafting==
{{Crafting header|ing=3}}
{{Crafting header|ing=3}}
{{Crafting general|027|ing=2}}
{{Crafting general|027|ing=3}}
{{Crafting survivalist|006|ing=3}}
{{Crafting survivalist|006|ing=3}}
{{Crafting survivalist|007|ing=3}}
{{Crafting survivalist|007|ing=3}}
{{Crafting survivalist|101|ing=2}}
{{Crafting survivalist|101|ing=3}}
|}
|}


Line 35: Line 34:


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


==See also==
==See also==

Revision as of 12:30, 25 September 2023

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

A chipped stone is a survivalist item used in crafting.

Usage

Chipped stones are only used to craft a stone axe, stone knife, wooden spear and notched wooden plank.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
TZ PerforatedWoodenPlank.png
Notched Wooden Plank
0 XP none
(keep)
One of:
Plank.png Plank
Logs.png Log

(consumed)

KnifeFlint.png
Stone Knife
0 XP none Branch.png
Tree Branch
(consumed)
RockSharpened.png
Chipped Stone
(consumed)

(consumed)
AxeStone.png
Stone Axe
0 XP none Branch.png
Tree Branch
(consumed)
RockSharpened.png
Chipped Stone
(consumed)

(consumed)
SpearStick.png
Crafted Spear
1.25 Carpentry Starting condition scales with player's carpentry.
(consumed)

(keep)

Distribution

Foraging

For main article, see: Foraging

Chipped stones can be obtained through foraging. It can be found at level 0 in foraging, finding only 1 at a time.

On rarer occasions, the player may find chipped stones in cardboard boxes located inside garages.

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 SharpedStone
    {
        DisplayCategory = Material,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Chipped Stone,
        Icon	=	RockSharpened,
        WorldStaticModel = ChippedStone,
    }

See also