Doodle: Difference between revisions

From PZwiki
(Redesigned page, +Navbar, +obsolete notice, +version category, reworked description, noted that there no longer is recipe code to create but the item code is still there, +code,)
m (Simplified redundant links)
(39 intermediate revisions by 8 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Obsolete items}}
{{languages|Adhesive_Bandages}}
{{Page version|41.78.16}}
<div class="header" style="margin: 5px; align: right; background: #C3E4ED; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #9AC0CD"> <!-- Code for Background Colour -->
{{Obsolete|item=true}}
<div style="float: right;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
{{Infobox item
<div style="float: left;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Obsolete Items|Obsolete Items]] -> [[:Category:Removed Items|Removed Items]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|name=Doodle
{{Consumables
|model=Empty_Notebook_Model.png
|image = Paper.png
|icon=Paper.png
|weight = 0.3
|icon_name=Doodle
|boredom = -10
|category=Literature
|stress = -20
|weight=0.3
|writable=True
|page_number=1
|item_id=Base.Doodle
}}
}}
{{Notice|Obsolete}}
'''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.


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.


== Former Description ==
Following [[build 27]], 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. UPDATE: Following patch B27, Doodle can no longer be used to reduce boredom.


== Former Effects ==
==Former effects==
[[Boredom]]: -10<br>
*[[Bored|Boredom]]: -10
[[Stress]]: -20<br>
*[[Stress]]: -20
[[Unhappy]]: -20
*[[Unhappy]]: -20


== Crafting ==
==Former crafting==
{| class="wikitable sortable" style="text-align:center;"
{{Crafting header|ing=2}}
|-
{{Crafting|ing=2
! Name
| product_icon = [[File:Paper.png|link=Doodle]]
! class="unsortable" | Recipe
| product_name = [[Doodle]]
! class="unsortable" | Description
| xp = <!-- Not present in the old template. Please fill in manually. -->
{{RecipeLookup|4003}}
| 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==
<nowiki>
*This item shares a model with [[Empty Notebook]].
 
==Code==
{{CodeBox|''Code before removal'' {{ID|Base.Doodle}}<br>
{{CodeSnip
  | lang = java
  | line = false
  | source = items_literature.txt
  | retrieved = false
  | code =
item Doodle
item Doodle
Weight = 0.3,
Weight = 0.3,
Type = Literature,
Type = Literature,
UnhappyChange = -10,
DisplayName = Doodle,
DisplayName = Doodle,
StressChange = -15,
Icon = Paper,
Icon = Paper,
CanBeWrite = true,
BoredomChange = -10,
PageToWrite = 1,
}}
</nowiki>
 
''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,
    }
}}
}}
 
==See also==
*[[Empty Notebook]]


{{Navbox/Consumables}}
{{Navbox items|literature}}
[[Category:Consumables]]
[[Category:Removed Items]]
[[Category:Version 34.28]]

Revision as of 11:23, 25 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