Journal: Difference between revisions

From PZwiki
(Description incorrect. This no longer applies. Noted the page difference between items.)
m (Automated Formatting)
(35 intermediate revisions by 12 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Literature}}
{{languages|Journal}}
{{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 -->
{{Infobox item
<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 -->
|name=Journal
<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:Consumables|Consumables]] -> [[:Category:Literature|Literature]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|model=Notebook_Model.png
{{Consumables
|icon=Notebook.png
|image = Notepad.png
|icon_name=Notebook
|weight = 0.1
|category=Literature
|weight=0.1
|writable=True
|page_number=20
|item_id=Base.Journal
}}
}}
{{About|the larger notebook with more pages|the smaller notebook with fewer pages|Empty Notebook}}
A '''journal''' is a writable literature [[Items|item]].


'''Journals''' are [[items|items]] found in desks and bookcakes of many houses, but can also be found in crates and in kitchen containers. You can use a [[Pen]] or a [[Pencil]] to write text on it. This is useful to write down important things to remember, like where to find loot you dropped. Journals are similar to [[Notebook|notebooks]], however a journal contains 20 pages to write on, compared to a notebook which has 10. Doesn't reduce stress, boredom, or unhappiness.
==Usage==
A journal can be used with a [[pen]] or [[pencil]] to write text in it. Common uses are: write down important reminders, or leave messages in [[multiplayer]] servers. An empty notebook can be renamed and has up to 20 writable pages.


It can be renamed and used to leave messages in Multiplayer servers.
Does not reduce [[stress]], [[boredom]], or [[unhappiness]].


<br><br><br><br><br><br>
==Fuel==
== Code ==
It can also be used as a fuel for a [[Heat Source|fire]] and lasts for 10 minutes.
<nowiki>
item Journal
Weight = 0.1,
Type = Literature,
DisplayName = Journal,
Icon = Notebook,
CanBeWrite  = true,
PageToWrite = 20,
</nowiki>


{{Navbox/Consumables}}
==Distribution==
[[Category:Consumables]]
{{Improve|section=true}}[[Category:Articles requiring distribution tables]]
[[Category:Literature]]
Unlike [[Empty Notebook|empty notebooks]], journals are only found in side tables, most commonly in houses.
[[Category:Items]]
 
[[Category:Version 34.28]]
==Trivia==
*While it has an unqiue model, it currently uses a model from the [[newspaper]].
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1301
  | source = items_literature.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Journal
    {
        DisplayCategory = Literature,
        Weight = 0.1,
        Type = Literature,
        DisplayName = Journal,
        Icon = Notebook,
        CanBeWrite  =  true,
        PageToWrite =  20,
        StaticModel = Newspaper,
        WorldStaticModel = Newspaper_Ground,
    }
}}
}}
 
==See also==
*[[Empty Notebook]]
*[[Sheet of Paper]]
 
{{Navbox items|literature}}
 
 
[[Category:Stationery]]
[[Category:Articles requiring distribution tables]]

Revision as of 09:27, 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]
Journal
Notebook Model.png
General
Category
Literature
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Writable
True
Total pages
20 pages
Technical
Item ID
Base.Journal
PlushSpiffo.pngThis article is about the larger notebook with more pages. For the smaller notebook with fewer pages, see Empty Notebook.

A journal is a writable literature item.

Usage

A journal can be used with a pen or pencil to write text in it. Common uses are: write down important reminders, or leave messages in multiplayer servers. An empty notebook can be renamed and has up to 20 writable pages.

Does not reduce stress, boredom, or unhappiness.

Fuel

It can also be used as a fuel for a fire and lasts for 10 minutes.

Distribution

WhiskeyHalf.png
This section may be in need of improvement.
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.

Unlike empty notebooks, journals are only found in side tables, most commonly in houses.

Trivia

  • While it has an unqiue model, it currently uses a model from the newspaper.

Code

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

Source: ProjectZomboid\media\scripts\items_literature.txt

Retrieved: Build 41.78.16
item Journal
    {
        DisplayCategory = Literature,
        Weight	=	0.1,
        Type	=	Literature,
        DisplayName	=	Journal,
        Icon	=	Notebook,
        CanBeWrite  =   true,
        PageToWrite =   20,
        StaticModel = Newspaper,
        WorldStaticModel = Newspaper_Ground,
    }

See also