Cleaning Liquid: Difference between revisions

From PZwiki
m (Remove lines))
m (Distribution table update)
Line 24: Line 24:
The loot distributions can be found in the table(s) below.
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
 
|-
<!--BOT FLAG|CleaningLiquid2|41.78.16-->
!Building/Room
{{clear}}
!Container
<div class="togglebox theme-red">
! style="width: 3.2em;" |Rolls
    <div>CleaningLiquid2 distribution
! style="width: 3.2em;" |Chance
        <span class="mw-customtoggle-togglebox-CleaningLiquid2" 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-CleaningLiquid2">
| armysurplus
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
| [[counter]]
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
| 4
    |+ {{ll|Containers}}
| 4
    ! Building / Room
|-
    ! Container
| closet
    ! Rolls
| [[crate]]
    ! Chance
| 4
    |-
| 4
    | armysurplus
|-
    | {{ll|counter}}
| rowspan="3"|gasstorage
    | 4
| [[counter]]
    | 4.0
| 4
    |-
| 1
    | closet
|-
    | {{ll|crate}}
|[[counter]]
    | 4
|4
    | 4.0
|2
    |-
|-
    | gasstorage
|[[counter]]
    | {{ll|counter}}
|4
    | 4
|1
    | 10.0
|-
    |-
| kitchen
    | gasstorage
| [[counter]]
    | {{ll|counter}}
| 4
    | 4
| 4
    | 20.0
|-
    |-
| laundry
    | kitchen
| [[counter]]
    | {{ll|counter}}
| 4
    | 4
| 4
    | 4.0
|-
    |-
| mechanic
    | laundry
| [[wardrobe]]
    | {{ll|counter}}
| 4
    | 4
| 4
    | 4.0
|}
    |-
    | mechanic
    | {{ll|wardrobe}}
    | 4
    | 4.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-CleaningLiquid2" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|CleaningLiquid2|41.78.16-->


==Trivia==
==Trivia==

Revision as of 15:14, 24 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]
Cleaning Liquid
CleaningLiquid Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Function
Clean clothing
Technical
Item ID
Base.CleaningLiquid
Base.CleaningLiquid2

Cleaning liquid is a miscellaneous item.

Usage

Cleaning liquid, along with water, can be used to clean dirty or bloody clothing. Over the course of the zombie apocalypse, clothing will become dirty and bloody, which is dependant on the player's activities. If the player is wearing dirty or bloody clothing over an open wound, the chance of infection will increase.

Crafting

Product Ingredients Tools Requirements Workstation XP
Vest White.png
Clothing (clean)
One of:
Soap.png Soap ×1 unit(s)
CleaningLiquid.png Cleaning Liquid ×1
Each of:
Vest White.png Clothing ×1
WaterDrop.png Water ×3 unit(s)
none none none none

Distribution

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


CleaningLiquid2 distribution Show / Hide
Containers
Building / Room Container Rolls Chance
armysurplus counter 4 4.0
closet crate 4 4.0
gasstorage counter 4 10.0
gasstorage counter 4 20.0
kitchen counter 4 4.0
laundry counter 4 4.0
mechanic wardrobe 4 4.0

Trivia

  • The item with the ID Base.CleaningLiquid cannot be found in the game and is obsolete. The only item that can be found in game is now Base.CleaningLiquid2.

Code

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

Base.CleaningLiquid
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item CleaningLiquid
    {
        DisplayCategory = Household,
        Weight	=	0.3,
        Type	=	Normal,
        DisplayName	=	Cleaning Liquid,
        Icon	=	CleaningLiquid,
        OBSOLETE = TRUE,
    }

Base.CleaningLiquid2
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item CleaningLiquid2
    {
        DisplayCategory = Household,
        Type	            =	        Drainable,
        UseDelta	        =	        0.02,
        UseWhileEquipped	=           FALSE,
        DisplayName			=		    Cleaning Liquid,
        Icon				=			CleaningLiquid,
        Weight				=			1.0,
        WeightEmpty         =           0.3,
        WorldStaticModel = CleaningLiquid,
    }


See also