Journal: Difference between revisions

From PZwiki
m (Minor)
m (Automated Formatting)
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Literature}}
{{Header|Project Zomboid|Items|Literature|type=Literature|version=Version 39|incver=67.5}}
{{Page version|41.78.16}}
{{Reupload}}<!--Missing 3D model-->
{{Infobox item
{{Infobox literature
|name=Journal
|display_name=Journal
|model=Notebook_Model.png
|name_colour=Literature
|icon=Notebook.png
|name_text_colour=Literature
|icon_name=Notebook
|image=Notebook.png
|category=Literature
|category=Literature
|weight=0.1
|weight=0.1
|writable=True
|writable=True
|page_number=20
|page_number=20
|class_name=Base.Journal
|item_id=Base.Journal
}}
}}
{{About|the larger notebook with more pages|the smaller notebook with fewer pages|Empty Notebook}}
{{About|the larger notebook with more pages|the smaller notebook with fewer pages|Empty Notebook}}
A '''journal''' is a writable literature [[item]].
A '''journal''' is a writable literature [[Items|item]].


==Usage==
==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.
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]].
Does not reduce [[stress]], [[boredom]], or [[unhappiness]].
Line 25: Line 24:


==Distribution==
==Distribution==
Journals are found in [[Containers#Desks|desks]] and [[Containers#Shelves|bookshelves]] of many houses, but can also be found in [[Containers#Crates|crates]] and in kitchen [[Containers#Counters|counters]].  
{{Improve|section=true}}[[Category:Articles requiring distribution tables]]
Unlike [[Empty Notebook|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==
Line 32: Line 35:
   | lang = java
   | lang = java
   | line = true
   | line = true
   | start = 0
   | start = 1301
   | source = items_literature.txt
   | source = items_literature.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 50
   | code =
   | code =
item Journal
item Journal
{
    {
    Weight = 0.1,
        DisplayCategory = Literature,
    Type = Literature,
        Weight = 0.1,
    DisplayName = Journal,
        Type = Literature,
    Icon = Notebook,
        DisplayName = Journal,
    CanBeWrite = true,
        Icon = Notebook,
    PageToWrite = 20,
        CanBeWrite =   true,
    StaticModel = Newspaper,
        PageToWrite =   20,
}
        StaticModel = Newspaper,
  }}
        WorldStaticModel = Newspaper_Ground,
    }
}}
}}
}}


Line 55: Line 59:
*[[Sheet of Paper]]
*[[Sheet of Paper]]


{{Navbox literature}}
{{Navbox items|literature}}
 


[[Category:Stationery]]
[[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