Doodle: Difference between revisions

From PZwiki
m (Automated Formatting)
 
(32 intermediate revisions by 6 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Obsolete items}}
{{languages|Doodle}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Obsolete Items|Removed Items|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete}}{{Consumables
{{Obsolete|item=true}}
|image = Paper.png
{{Infobox item
|weight = 0.3
|name=Doodle
|boredom = -10
|model=Empty_Notebook_Model.png
|stress = -20
|icon=Paper.png
|unhappiness = -20
|icon_name=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.
|category=Literature
|weight=0.3
|writable=True
|page_number=1
|item_id=Base.Doodle
}}
'''Doodles''' were removed in [[build 28]] following the change to the journal system. The item can still be spawned in [[debug mode]] or by an admin in [[multiplayer]], but there is no longer a recipe to make a doodle.


== Former Description ==
==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.
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.


== Former Effects ==
Following [[build 27]], doodle can no longer be used to reduce boredom.
[[Moodles#Bored|Boredom]]: -10<br>
[[Moodles#Stress|Stress]]: -20<br>
[[Moodles#Unhappy|Unhappy]]: -20


== Crafting ==
==Former effects==
{| class="pztable sortable" style="text-align:center;"
*[[Bored|Boredom]]: -10
|-
*[[Stress|Stress]]: -20
! Name
*[[Unhappy|Unhappy]]: -20
! class="unsortable" | Recipe
 
! class="unsortable" | Description
==Former crafting==
{{RecipeLookup|4003}}
{{Crafting header|ing=2}}
{{Crafting|ing=2
| product_icon = [[File:Paper.png|link=Doodle]]
| product_name = [[Doodle]]
| xp = <!-- Not present in the old template. Please fill in manually. -->
| m1_1 = [[File:Pen.png|20px|link=Pen]] [[Pen]]
| m1_2 = [[File:Pencil.png|20px|link=Pencil]] [[Pencil]]
| tag1 = (consumed)
| f2 = [[File:Paper.png|link=Sheet of Paper]]
| i2 = [[Sheet of Paper]]
| tag2 = (consumed)
| sl = ''none''
}}
|}
|}


== Code ==
==Trivia==
''Code before Removal''
*This item shares a model with [[Empty Notebook]].
<pre> item Doodle
 
==Code==
{{CodeBox|''Code before removal'' {{ID|Base.Doodle}}<br>
{{CodeSnip
  | lang = java
  | line = false
  | source = items_literature.txt
  | retrieved = false
  | code =
item Doodle
Weight = 0.3,
Weight = 0.3,
Type = Literature,
Type = Literature,
Line 36: Line 60:
Icon = Paper,
Icon = Paper,
BoredomChange = -10,
BoredomChange = -10,
</pre>
}}
 
''Code after removal'' {{ID|Base.Doodle}}<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 1289
  | source = items_literature.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Doodle
    {
        DisplayCategory = Literature,
        Weight = 0.3,
        Type = Literature,
        DisplayName = Doodle,
        Icon = Paper,
        CanBeWrite  =  true,
        PageToWrite =  1,
        WorldStaticModel = EmptyNotebook,
    }
}}
}}


''Current code''<br>
==See also==
'''''From items_literature.txt (Project Zomboid directory/media/scripts/)'''''
*[[Empty Notebook]]
{{Retrieved|version=41|incver=50}}
<pre> item Doodle
Weight = 0.3,
Type = Literature,
DisplayName = Doodle,
Icon = Paper,
CanBeWrite  = true,
PageToWrite = 1,
</pre>


{{Navbox/Consumables}}
{{Navbox items|literature}}

Latest revision as of 08:05, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
BoxSmall.png
This item has been removed from the game.
It has been replaced by something else.
Doodle
Empty Notebook Model.png
General
Category
Literature
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Writable
True
Total pages
1 page
Technical
Item ID
Base.Doodle

Doodles were removed in build 28 following the change to the journal system. The item can still be spawned in debug mode or by an admin in multiplayer, 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.

Following build 27, doodle can no longer be used to reduce boredom.

Former effects

Former crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2

Doodle
none
One of:
Pen.png Pen
Pencil.png Pencil

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

Trivia

Code

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

Code before removal Base.Doodle
Source: ProjectZomboid\media\scripts\items_literature.txt

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

Code after removal Base.Doodle
Source: ProjectZomboid\media\scripts\items_literature.txt

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

See also