Journal: Difference between revisions

From PZwiki
(Changed outdated code)
m (Automated Formatting)
(38 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Literature}}
{{Consumables
{{Page version|41.78.16}}
|image = Notepad.png
{{Infobox item
|weight = 0.1
|name=Journal
|model=Notebook_Model.png
|icon=Notebook.png
|icon_name=Notebook
|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]].


A '''Journal''' Is a literature item that can be found in [[Containers#Bookshelf|Bookcases]] and Desks. You can use a [[pen]] or a [[pencil]] to write text on it. 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.


== Code ==
Does not reduce [[stress]], [[boredom]], or [[unhappiness]].
<nowiki>item Journal
{
Weight = 0.1,
Type = Literature,
DisplayName = Journal,
Icon = Notebook,
CanBeWrite  =  true,
PageToWrite =  20,
}</nowiki>


== History ==
==Fuel==
It can also be used as a fuel for a [[Heat Source|fire]] and lasts for 10 minutes.


{| class="wikitable" width="550" style="text-align:center;"
==Distribution==
|-
{{Improve|section=true}}[[Category:Articles requiring distribution tables]]
! Alpha || 
Unlike [[Empty Notebook|empty notebooks]], journals are only found in side tables, most commonly in houses.
|-
| RC 2.9.8a || Add history here.
|}


==See Also==
==Trivia==
* [[Magazine]]
*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}}


{{Navbox/Consumables}}


[[Category:Consumables]]
[[Category:Stationery]]
[[Category:Items]]
[[Category:Articles requiring distribution tables]]
[[Category:Literature]]
[[Category:Version 0.2.0p]]

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