Modjeska: Difference between revisions

From PZwiki
m (Version bump)
 
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages|Modjeska}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=14}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Modjeska
{{Infobox item
|name_colour=Food
|name=Modjeska
|name_text_colour=Food
|model=Modjeska_Model.png
|image=Modjeska_120px.png
|icon=Modjeska.png
|icon_name=Modjeska
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 10: Line 11:
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-10
|hunger_change=-10
|thirst_change=
|calories=60
|calories=60
|lipids=0
|lipids=0
|proteins=0
|proteins=0
|carbohydrates=15
|carbohydrates=15
<!--EFFECTS-->
|unhappy_change=
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Modjeska
|item_id=Base.Modjeska
}}A '''Modjeska''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]].
}}
 
A '''Modjeska''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
A modjeska can be eaten, providing the player with some positive effects, including reducing [[Moodles#Unhappy|unhappiness]].
Modjeskas can be eaten, providing the player with some positive effects.


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|candystorage
|[[metal_shelves]]
|4
|1
|-
|candystore
|[[counter]]
|4
|1
|-
|grocerystorage
|[[crate]]
|4
|1
|}
Modjeskas can be found in gift stores and candy stores.
Modjeskas can be found in gift stores and candy stores.


==Trivia==
==Trivia==
The Modjeska is a gooey caramel candy with a marshmallow centre created in the 1880s by french confectioner Anton Busath, who named it in honour of the Polish actress Helena Modjeska, after she visited [[Louisville|Louisville, Kentucky]].
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|Louisville, Kentucky]].


== Code ==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox|
{{Retrieved|version=40|incver=14}}
{{CodeSnip
<pre> item Modjeska
  | lang = java
HungerChange = -10,
  | line = true
Weight = 0.1,
  | start = 5454
Type = Food,
  | source = items_food.txt
DisplayName = Modjeska,
  | retrieved = true
Icon = Modjeska,
  | version = 41.78.16
  | code =
item Modjeska
{
DisplayName = Modjeska,
DisplayCategory = Food,
Type = Food,
Weight = 0.1,
Icon = Modjeska,
HungerChange = -10,
Calories = 60,
Carbohydrates = 15,
Carbohydrates = 15,
        Proteins = 0,
Lipids = 0,
        Lipids = 0,
Proteins = 0,
        Calories = 60,</pre>
WorldStaticModel = Modjeska,
}
}}
}}


==See also==
==See also==
*[[Candy Cane]]
*[[Candy Cane]]
*[[Chocolate]]
*[[Lollipop]]
*[[Lollipop]]
*[[Mint Candy]]
*[[Mint Candy]]


{{Navbox/Consumables}}
{{Navbox food}}
 
[[Category:Non-perishable food]]

Latest revision as of 01:44, 28 March 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