Insecticide Spray: Difference between revisions

From PZwiki
m (Add clear)
m (minor)
Line 15: Line 15:
|class_name=Base.GardeningSprayEmpty<br>Base.GardeningSprayCigarettes
|class_name=Base.GardeningSprayEmpty<br>Base.GardeningSprayCigarettes
}}
}}
'''Insecticide Spray''' is used to cure flies infected [[farming]] crops. To make Insecticide Spray the player needs an empty [[gardening spray can]], 3 units of water and 5 [[cigarettes]].
'''Insecticide spray''' is used to cure flies infected [[farming]] crops. To make insecticide spray the player needs an empty [[Gardening Spray Can|gardening spray can]], 3 units of water and 5 [[cigarettes]].


==Crafting==
==Crafting==
To craft Insecticide Spray the player needs either the [[Traits#Hobbies|gardening trait]], [[Occupation#Farmer|farmer profession]] or having read [[The Farming Magazine]] to craft it. When crafting Insecticide spray with all the required items in the player's inventory the option to '''Make Flies Cure''' will appear.
To craft Insecticide Spray the player needs either the [[Traits#Hobbies|gardening trait]], [[Occupation#Farmer|farmer profession]] or having read [[The Farming Magazine]] to craft it. When crafting Insecticide spray with all the required items in the player's inventory, the option to '''Make Flies Cure''' will appear.


{{Crafting header|ing=3}}
{{Crafting header|ing=3}}
Line 25: Line 25:


==Code==
==Code==
{{CodeBox
{{CodeBox
| {{CodeSnip
| {{CodeSnip
Line 33: Line 32:
   | source = farming.txt
   | source = farming.txt
   | retrieved = true
   | retrieved = true
   | version = 41
   | version = 41.78.16
  | incver = 78.16
   | code =
   | code =
item GardeningSprayCigarettes
item GardeningSprayCigarettes
Line 54: Line 52:
==See also==
==See also==
*[[Mildew Spray]]
*[[Mildew Spray]]
{{Clear}}


[[Category:Farming]]
[[Category:Farming]]

Revision as of 01:20, 22 February 2024

Project ZomboidItemsToolsFarming ToolsInsecticide Spray
Insecticide Spray
Insecticide Spray
Gardening Spray Can
General
Category Item
Encumbrance
Heavy Load
Empty: 0.3
Full: 1.0
Function Cure flies infected crops
Capacity 10 units
Technical details
item ID Base.GardeningSprayEmpty
Base.GardeningSprayCigarettes

Insecticide spray is used to cure flies infected farming crops. To make insecticide spray the player needs an empty gardening spray can, 3 units of water and 5 cigarettes.

Crafting

To craft Insecticide Spray the player needs either the gardening trait, farmer profession or having read The Farming Magazine to craft it. When crafting Insecticide spray with all the required items in the player's inventory, the option to Make Flies Cure will appear.

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
TZ GardeningSprayCan.png
Insecticide Spray
0 XP none Farmer
OR
MagazineFish.png
Gardening Spray Can (Empty)
Gardening Spray Can (Empty)
(consumed)
WaterDrop.png
Water (3 units)
(consumed)
IckySticks.png
Cigarettes x5
(consumed)

Code

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

Source: ProjectZomboid\media\scripts\farming.txt

Retrieved: Build 41.78.16
item GardeningSprayCigarettes
{
    DisplayCategory = Gardening,
    Type = Drainable,
    DisplayName = Insecticide Spray,
    Icon = TZ_GardeningSprayCan,
    Weight = 1.0,
    UseDelta = 0.1,
    ReplaceOnDeplete = GardeningSprayEmpty,
    UseWhileEquipped = false,
    StaticModel = GardenSpray,
    WorldStaticModel = GardenSprayGround,
}

See also