Rolling Pin: Difference between revisions

From PZwiki
(Replaced Navigation System with Header Version, Confirmed Code Current, Updated Weapon Template to conform with new system. Cleared Old Categories except tools)
m (Automated Formatting)
(32 intermediate revisions by 6 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Weapons|Melee weapons|Short blunt weapons}}
{{languages|Rolling pin}}
{{Page version|41.78.16}}
{{header|The Game World|Items|Weapons|version=Version 37|incver=8}}{{Weapons|image = Rolling Pin.png |weapontype = Melee |ammo = None|hands = One handed|weight = 1.5|mindamage = 0.4|maxdamage = 0.6|condition = 10|degrade = 14|id = RollingPin}}The Rolling Pin is melee weapon which has moderate durability, but has a less than average ability to knock down zombies.
{{Infobox item
<br><br>
|name=Rolling Pin
The Rolling Pin has a medium swing rate but does not put out much damage either. It is a shorter range weapon, with a max range of 1, (in comparison to a [[Baseball Bat]] which has 1.5)  It can be found in kitchen counters in various houses. The Rolling Pin currently cannot be repaired.
|model=RollingPin_Model.png
<br><br>
|icon=RollingPin.png
The rolling pin is a single attack weapon, meaning it can only hit one zombie at a time ''(compared to the [[Baseball Bat|baseball bat]] which can hit 2)''. Attacking more than one zombie should be taken with care as only one zombie will be stopped per hit and others could get in close enough to damage the character. The rolling pin does 5 door damage, but no tree damage.
|icon_name=Rolling Pin
<br><br>
|category=Weapon
|weight=1.5
|equipped=One-handed
|type=Blunt
|min_range=0.61
|max_range=1
|swing_time=3
|condition_max=8
|min_damage=0.4
|max_damage=0.6
|push_back=0.5
|knockdown=0
|item_id=Base.RollingPin
}}
A '''rolling pin''' is a blunt melee [[weapon]].


== Crafting ==
==Usage==
The Rolling pin can be used to create various recipes if a character picked a [[Player#Traits|chef profession]] or has learnt the correct [[Recipe Magazines|recipe magazines]] in relation to cooking.
===Weapon===
{| class="wikitable sortable" style="text-align:center;"
The rolling pin has a short range and can only hit one opponent per swing, making it difficult to fight multiple zombies at once, especially since it has a long swing time.
|-
! Name
! class="unsortable" | Recipe
! class="unsortable" | Description
! class="unsortable" | Skill Level


{{RecipeLookup|2032}}
===Breaking doors===
{{RecipeLookup|2036}}
It is somewhat ineffective at bashing down [[door]]s, dealing 5 damage per hit. For comparison, an [[axe]] deals 35 damage.
 
===Chopping trees===
It cannot be used to chop trees, dealing 0 damage per hit. For comparison, an [[axe]] deals 35 damage.
 
==Condition==
The rolling pin is a [[Skills#Blunt|blunt]] weapon, therefore being influenced by the blunt skills: accuracy, guard and maintenance. It has a maximum condition of 10 and will be damaged depending on the player's maintenance skill. The chance of losing durability is: <code>1 in (14 + maintenance x 2)</code>
 
===Repairing===
Rolling pins cannot be repaired.
 
==Crafting==
The rolling pin can be used to create various recipes if a character picked a [[Player#Traits|chef profession]] or has learned the correct [[recipe magazines]] in relation to cooking.
 
===Cooking===
{{Main|Cooking}}
{{Crafting/sandbox2
|bread_dough
|pie_preparation
|pizza
|baking_tray_with_chocolate_chip_cookie_uncooked
|baking_tray_with_chocolate_cookie_uncooked
|baking_tray_with_oatmeal_cookie_uncooked
|baking_tray_with_shortbread_cookie_uncooked
|baking_tray_with_sugar_cookie_uncooked
|baguette_uncooked
}}
 
==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
|-
|rowspan="2"|bakerykitchen
|[[counter]]
|4
|8
|-
|[[counter]]
|4
|8
|-
|burgerkitchen
|[[counter]]
|4
|8
|-
|chinesekitchen
|[[counter]]
|4
|8
|-
|deepfry_kitchen
|[[counter]]
|4
|8
|-
|italiankitchen
|[[counter]]
|4
|8
|-
|kitchen_crepe
|[[counter]]
|4
|8
|-
|mexicankitchen
|[[counter]]
|4
|8
|-
|pizzakitchen
|[[counter]]
|4
|8
|-
|westernkitchen
|[[counter]]
|4
|8
|}
|}


== Code ==
==Code==
<nowiki>
{{CodeBox
item RollingPin
| {{CodeSnip
MaxRange = 1,
  | lang = java
WeaponSprite = Baseballbat,
  | line = true
MinAngle = 0,
  | start = 1192
Type = Weapon,
  | source = items_weapons.txt
MinimumSwingTime = 3,
  | retrieved = true
SwingAmountBeforeImpact = 0.02,
  | version = 41.78.16
Categories = Blunt,
  | code =
Weight = 1.5,
item RollingPin
ConditionLowerChanceOneIn = 14,
{
PushBackMod = 0.5,
    DisplayCategory = Cooking,
MaxDamage = 0.6,
MaxRange = 1.1,
MinDamage = 0.4,
WeaponSprite = RollingPin,
SubCategory = Swinging,
MinAngle = 0.67,
ConditionMax = 10,
Type = Weapon,
MaxHitCount = 1,
MinimumSwingTime = 3,
DoorDamage = 5,
SwingAmountBeforeImpact = 0.02,
IdleAnim = Idle_Weapon2,
Categories = SmallBlunt,
SwingAnim = Bat,
Weight = 1.5,
CriticalChance = 10,
ConditionLowerChanceOneIn = 14,
WeaponWeight = 1.5,
PushBackMod = 0.5,
DisplayName = Rolling Pin,
SubCategory = Swinging,
MinRange = 0.61,
ConditionMax = 8,
SwingTime = 3,
MaxHitCount = 2,
HitAngleMod = -30,
DoorDamage = 5,
KnockdownMod = 0,
IdleAnim = Idle_Weapon2,
Icon = RollingPin,
SwingAnim = Bat,
RunAnim = Run_Weapon2,
        CriticalChance = 50,
TreeDamage = 0,
        CritDmgMultiplier = 2,
EnduranceMod = 1.4,
DisplayName = Rolling Pin,
</nowiki>
MinRange = 0.61,
SwingTime = 3,
HitAngleMod = -30,
KnockdownMod = 0,
Icon = RollingPin,
RunAnim = Run_Weapon2,
TreeDamage =   0,
EnduranceMod = 1.4,
        CriticalChance = 15,
        CritDmgMultiplier = 2,
        MinDamage = 0.2,
        MaxDamage = 0.5,
        BaseSpeed = 1.2,
  WeaponLength = 0.28,
  AttachmentType = BigWeapon,
        BreakSound = RollingPinBreak,
        DoorHitSound = RollingPinHit,
HitSound = RollingPinHit,
HitFloorSound = RollingPinHit,
SwingSound = RollingPinSwing,
    }
}}
}}
 
==See also==
*[[Kitchen Knife]]
 
{{Navbox items|blunt}}
 
 


{{Navbox/Weapons}}
[[Category:Cooking tools]]
{{Navbox/Tools}}
[[Category:Tools]]
[[Category:Tools]]

Revision as of 11:38, 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]
Rolling Pin
RollingPin Model.png
General
Category
Weapon
Encumbrance
Moodle Icon HeavyLoad.png
1.5
Equipped
One-handed
Properties
Max condition
8
Performance
Damage
0.4–0.6
Range
0.61–1
Knockback
0.5
Knockdown
0
Technical
Item ID
Base.RollingPin

A rolling pin is a blunt melee weapon.

Usage

Weapon

The rolling pin has a short range and can only hit one opponent per swing, making it difficult to fight multiple zombies at once, especially since it has a long swing time.

Breaking doors

It is somewhat ineffective at bashing down doors, dealing 5 damage per hit. For comparison, an axe deals 35 damage.

Chopping trees

It cannot be used to chop trees, dealing 0 damage per hit. For comparison, an axe deals 35 damage.

Condition

The rolling pin is a blunt weapon, therefore being influenced by the blunt skills: accuracy, guard and maintenance. It has a maximum condition of 10 and will be damaged depending on the player's maintenance skill. The chance of losing durability is: 1 in (14 + maintenance x 2)

Repairing

Rolling pins cannot be repaired.

Crafting

The rolling pin can be used to create various recipes if a character picked a chef profession or has learned the correct recipe magazines in relation to cooking.

Cooking

Main article: Cooking
Product Ingredients Tools Requirements Workstation XP
Dough.png
Bread (dough)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
Each of:
RollingPin.png Rolling Pin ×1
Bowl.png Empty Bowl ×1
WaterDrop.png Water ×1 unit(s)
Salt.png Salt ×1 unit(s)
Yeast.png Yeast ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood2.png
Good Cooking Magazine Vol.2
none 2.5 Cooking
PieWhole.png
Pie Preparation
RollingPin.png Rolling Pin ×1
BakingPan.png Baking Pan ×1
Dough.png Pie Dough ×1
none none none 0.75 Cooking
PizzaWhole.png
Pizza
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
One of:
Cornflour.png Corn Flour ×1
Flour.png Flour ×1
One of:
OilOlive.png Olive Oil ×1
OilVegetable.png Vegetable Oil ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
TomatoPaste.png Tomato Paste ×15 unit(s)
Water.png Water ×3 unit(s)
Salt.png Salt ×2 unit(s)
Yeast.png Yeast ×1 unit(s)
Cheese.png Cheese ×15 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood2.png
Good Cooking Magazine Vol.2
none 10 Cooking
BakingTray CookiesBaked.png
Baking Tray with Chocolate Chip Cookie (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
One of:
OilOlive.png Olive Oil ×1
OilVegetable.png Vegetable Oil ×1
Lard.png Lard ×1
Butter.png Butter ×1
Margarine.png Margarine ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
BakingTray.png Baking Tray ×1
BakingSoda.png Baking Soda ×1
ChocolateChips.png Chocolate Chips ×6
Egg.png Egg (tag) ×2
Flour.png Flour ×1 unit(s)
WaterDrop.png Water ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood.png
Good Cooking Magazine Vol.1
none 0.75 Cooking
BakingTray CookiesBaked.png
Baking Tray with Chocolate Cookie (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
One of:
OilOlive.png Olive Oil ×1
OilVegetable.png Vegetable Oil ×1
Lard.png Lard ×1
Butter.png Butter ×1
Margarine.png Margarine ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
BakingTray.png Baking Tray ×1
BakingSoda.png Baking Soda ×1
CocoaPowder.png Cocoa Powder ×10 unit(s)
Egg.png Egg (tag) ×2
Flour.png Flour ×1
WaterDrop.png Water ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood.png
Good Cooking Magazine Vol.1
none 0.75 Cooking
BakingTray CookiesBaked.png
Baking Tray with Oatmeal Cookie (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
One of:
OilOlive.png Olive Oil ×1
OilVegetable.png Vegetable Oil ×1
Lard.png Lard ×1
Butter.png Butter ×1
Margarine.png Margarine ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
BakingTray.png Baking Tray ×1
BakingSoda.png Baking Soda ×1
OatsRaw.png Can of Oats ×10 unit(s)
Egg.png Egg (tag) ×2
Flour.png Flour ×1 unit(s)
WaterDrop.png Water ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood.png
Good Cooking Magazine Vol.1
none 0.75 Cooking
BakingTray CookiesBaked.png
Baking Tray with Shortbread Cookie (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
BakingTray.png Baking Tray ×1
Butter.png Butter ×4 unit(s)
SugarBrown.png Sugar (tag) ×1
WaterDrop.png Water ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood.png
Good Cooking Magazine Vol.1
none 0.75 Cooking
BakingTray CookiesBaked.png
Baking Tray with Sugar Cookie (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
One of:
OilOlive.png Olive Oil ×1
OilVegetable.png Vegetable Oil ×1
Lard.png Lard ×1
Butter.png Butter ×1
Margarine.png Margarine ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
BakingTray.png Baking Tray ×1
BakingSoda.png Baking Soda ×1
Egg.png Egg (tag) ×2
Flour.png Flour ×1 unit(s)
WaterDrop.png Water ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood.png
Good Cooking Magazine Vol.1
none 0.75 Cooking
Doughnut Baguette.png
Baguette (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
Each of:
Bowl.png Empty Bowl ×1
RollingPin.png Rolling Pin ×1
WaterDrop.png Water ×1 unit(s)
Flour.png Flour ×1 unit(s)
Salt.png Salt ×1 unit(s)
Yeast.png Yeast ×1 unit(s)
none
Profession chef2.png
Chef occupation
(or)
Trait cook.png
Cook trait
(or)
MagazineFood2.png
Good Cooking Magazine Vol.2
none 2.5 Cooking

Distribution

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

Containers
Building/Room Container Rolls Chance
bakerykitchen counter 4 8
counter 4 8
burgerkitchen counter 4 8
chinesekitchen counter 4 8
deepfry_kitchen counter 4 8
italiankitchen counter 4 8
kitchen_crepe counter 4 8
mexicankitchen counter 4 8
pizzakitchen counter 4 8
westernkitchen counter 4 8

Code

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

Source: ProjectZomboid\media\scripts\items_weapons.txt

Retrieved: Build 41.78.16
item RollingPin
	{
	    DisplayCategory = Cooking,
		MaxRange	=	1.1,
		WeaponSprite	=	RollingPin,
		MinAngle	=	0.67,
		Type	=	Weapon,
		MinimumSwingTime	=	3,
		SwingAmountBeforeImpact	=	0.02,
		Categories	=	SmallBlunt,
		Weight	=	1.5,
		ConditionLowerChanceOneIn	=	14,
		PushBackMod	=	0.5,
		SubCategory	=	Swinging,
		ConditionMax	=	8,
		MaxHitCount	=	2,
		DoorDamage	=	5,
		IdleAnim	=	Idle_Weapon2,
		SwingAnim	=	Bat,
        CriticalChance	=	50,
        CritDmgMultiplier = 2,
		DisplayName	=	Rolling Pin,
		MinRange	=	0.61,
		SwingTime	=	3,
		HitAngleMod	=	-30,
		KnockdownMod	=	0,
		Icon	=	RollingPin,
		RunAnim	=	Run_Weapon2,
		TreeDamage  =   0,
		EnduranceMod = 1.4,
        CriticalChance	=	15,
        CritDmgMultiplier = 2,
        MinDamage	=	0.2,
        MaxDamage	=	0.5,
        BaseSpeed = 1.2,
	  	WeaponLength = 0.28,
	  	AttachmentType = BigWeapon,
        BreakSound	=	RollingPinBreak,
        DoorHitSound = RollingPinHit,
		HitSound = RollingPinHit,
		HitFloorSound = RollingPinHit,
		SwingSound = RollingPinSwing,
    }

See also