Doodle: Difference between revisions

From PZwiki
m (→‎Former Effects: Sentence case)
(updated code and infobox)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Obsolete Items|Removed Items|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete}}{{Infobox literature
{{Languages}}{{Header|The Game World|Items|Obsolete Items|Removed Items|type=Notice|version=Version 41|incver=78.16}}{{Obsolete}}{{Infobox literature
|display_name=Doodle
|display_name=Doodle
|name_colour=Literature
|name_colour=Literature
Line 6: Line 6:
|category=Literature
|category=Literature
|weight=0.3
|weight=0.3
|writable=
|writable=True
|page_number=
|page_number=1
|class_name=
|class_name=Base.Doodle
}}Doodles were removed in Build 28 following the change to the Journal system. The Code is still within the item system, but there is no longer a recipe to make a doodle.
}}Doodles were removed in Build 28 following the change to the Journal system. The Code is still within the item system, but there is no longer a recipe to make a doodle.


Line 54: Line 54:
''Current code''<br>
''Current code''<br>
'''''From items_literature.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_literature.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=50}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>   item Doodle
item Doodle
    {
Weight = 0.3,
        DisplayCategory = Literature,
Type = Literature,
        Weight = 0.3,
DisplayName = Doodle,
        Type = Literature,
Icon = Paper,
        DisplayName = Doodle,
CanBeWrite = true,
        Icon = Paper,
PageToWrite = 1,
        CanBeWrite =   true,
</pre>
        PageToWrite =   1,
        WorldStaticModel = EmptyNotebook,
    }</pre>


{{Navbox literature}}
{{Navbox literature}}

Revision as of 15:44, 15 June 2023

BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.
Doodle
Doodle
General
Category Literature
Encumbrance
Heavy Load
0.3
Writable True
Total pages 1 page
Technical details
Base ID Base.Doodle

Doodles were removed in Build 28 following the change to the Journal system. The Code is still within the item system, but there is no longer a recipe to make a doodle.

Former description

A quick drawing/message you made with a pencil and a piece of paper, it will take out a medium amount of boredom, stress, and unhappiness. It is crafted by putting a pencil and a sheet of paper in the crafting area. UPDATE: Following patch B27, Doodle can no longer be used to reduce boredom.

Former effects

Boredom: -10
Stress: -20
Unhappy: -20

Former crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Paper.png
Doodle
none
One of:
Pen.png Pen
Pencil.png Pencil

(consumed)
Paper.png
Sheet of Paper
(consumed)

Code

Code before removal

	item Doodle
		Weight		= 0.3,
		Type		= Literature,
		UnhappyChange	= -10,
		DisplayName	= Doodle,
		StressChange	= -15,
		Icon		= Paper,
		BoredomChange	= -10,

Current code
From items_literature.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.78.16

    item Doodle
    {
        DisplayCategory = Literature,
        Weight	=	0.3,
        Type	=	Literature,
        DisplayName	=	Doodle,
        Icon	=	Paper,
        CanBeWrite  =   true,
        PageToWrite =   1,
        WorldStaticModel = EmptyNotebook,
    }