Modjeska: Difference between revisions

From PZwiki
mNo edit summary
m (Distribution table update)
(22 intermediate revisions by 6 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 41|incver=73}}{{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 15: Line 16:
|carbohydrates=15
|carbohydrates=15
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Modjeska
|item_id=Base.Modjeska
}}'''Modjeska''' is a [[Food#Non-Perishable|non-perishable]] food [[items|item]].
}}
A '''Modjeska''' is a non-perishable [[food]] [[Items|item]].


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


==Distribution==
==Distribution==
Modjeska can be found in gift stores and candy stores.
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Modjeska|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Modjeska distribution
        <span class="mw-customtoggle-togglebox-Modjeska" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Modjeska">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|GroceryBag1}}
    | 1
    | 1.0
    |-
    | all
    | {{ll|GroceryBag3}}
    | 1
    | 10.0
    |-
    | candystorage
    | {{ll|metal_shelves}}
    | 4
    | 10.0
    |-
    | candystore
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | grocerystorage
    | {{ll|crate}}
    | 4
    | 1.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Modjeska" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Modjeska|41.78.16-->
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, KY|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]].
 
==Gallery==
<gallery>
File:Modjeska Model.png|Model for: [[File:Modjeska.png]]
</gallery>


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


==See also==
==See also==
Line 56: Line 107:
*[[Mint Candy]]
*[[Mint Candy]]


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

Revision as of 16:07, 24 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.

Modjeska distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all GroceryBag1 1 1.0
all GroceryBag3 1 10.0
candystorage metal_shelves 4 10.0
candystore counter 4 10.0
grocerystorage crate 4 1.0

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