mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
48 lines
1.5 KiB
Lua
48 lines
1.5 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
|
|
ITEM.name = "Advanced Fertilizer"
|
|
ITEM.description = "A small sack filled with small lumps of fertilizer, saltpetre and all the gardening goodies that you need to make a succesful and bountiful harvest. This one has been masterfully crafted to feed all of the plant's needs."
|
|
ITEM.model = "models/props_junk/garbage_milkcarton001a.mdl"
|
|
ITEM.category = "Farming"
|
|
|
|
if (CLIENT) then
|
|
function ITEM:PopulateTooltip(tooltip)
|
|
local data = tooltip:AddRow("data")
|
|
data:SetBackgroundColor(derma.GetColor("Error", tooltip))
|
|
data:SetText("You can use this item to increase the fertility & hydration of a plant")
|
|
data:SizeToContents()
|
|
end
|
|
end
|
|
|
|
ITEM.functions.Water = {
|
|
name = "Fertilize",
|
|
icon = "icon16/brick.png",
|
|
OnRun = function(item)
|
|
local player = item.player
|
|
local trace = player:GetEyeTraceNoCursor()
|
|
|
|
if (trace.HitPos:Distance(player:GetShootPos()) <= 192) then
|
|
if (trace.Entity:GetClass() == "cw_plant") then
|
|
trace.Entity:SetNWInt("Fertilizer", 100)
|
|
trace.Entity.Fertilizer = 100
|
|
trace.Entity.Hydration = 100
|
|
|
|
player:ChatNotify("You spread some fertilizer around the plant... the plant is happy!")
|
|
return true
|
|
else
|
|
player:Notify("You are not looking at a valid plant.")
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
}
|