Modjeska: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Automated Formatting)
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Modjeska
|name=Modjeska
Line 18: Line 18:
|item_id=Base.Modjeska
|item_id=Base.Modjeska
}}
}}
 
A '''Modjeska''' is a non-perishable [[food]] [[Items|item]].
A '''Modjeska''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]].


==Usage==
==Usage==
Line 30: Line 29:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| candystorage
|candystorage
| [[metal_shelves]]
|[[metal_shelves]]
| 4
|4
| 1
|1
|-
|-
| candystore
|candystore
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
| grocerystorage
|grocerystorage
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|}
|}
Modjeskas can be found in gift stores and candy stores.
Modjeskas can be found in gift stores and candy stores.
Line 56: Line 55:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|
{{Retrieved|version=41.73}}
{{CodeSnip
<pre>
  | lang = java
    item Modjeska
  | line = true
  | start = 5454
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Modjeska
{
{
DisplayName = Modjeska,
DisplayName = Modjeska,
Line 73: Line 78:
WorldStaticModel = Modjeska,
WorldStaticModel = Modjeska,
}
}
</pre>
}}
}}


==See also==
==See also==
Line 81: Line 87:
*[[Mint Candy]]
*[[Mint Candy]]


{{Navbox food}}
{{Navbox items|miscellaneous_food}}
 
 
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 10:20, 14 April 2024

Project ZomboidItemsFoodSweetsModjeska
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Modjeska
Modjeska Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
60
CarbohydratesCarbohydrates
15
ProteinsProteins
0
FatFat
0
Technical
Item ID
Base.Modjeska

A Modjeska is a non-perishable food item.

Usage

Modjeskas can be eaten, providing the player with some positive effects.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
candystorage metal_shelves 4 1
candystore counter 4 1
grocerystorage crate 4 1

Modjeskas can be found in gift stores and candy stores.

Trivia

The Modjeska is a gooey caramel candy with a marshmallow center created in the 1880s by french confectioner Anton Busath, who named it in honor of the Polish actress Helena Modjeska, after she visited Louisville, Kentucky.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Modjeska
	{
		DisplayName = Modjeska,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Modjeska,
		HungerChange = -10,
		Calories = 60,
		Carbohydrates = 15,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = Modjeska,
	}

See also