This commit is contained in:
lifestorm
2024-08-05 18:40:29 +03:00
parent 9f505a0646
commit c6d9b6f580
8044 changed files with 1853472 additions and 21 deletions

View File

@@ -0,0 +1,26 @@
--[[
| 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 = "Pheropod"
ITEM.description = "A squishy heap of flesh shaped like a ball with small protrusions. Squeezing it releases a small cloud which has an interesting smell."
ITEM.model = Model("models/weapons/w_bugbait.mdl")
ITEM.width = 1
ITEM.height = 1
ITEM.colorAppendix = {["red"] = "This item is extremely powerful and requires Balance Team Lead approval to be spawned in."}
function ITEM:OnEquipped(client)
local classtbl = {"CLASS_ANTLION"}
client.VJ_NPC_Class = classtbl
end
function ITEM:OnUnequipped(client)
local classtbl = {}
client.VJ_NPC_Class = classtbl
end

View File

@@ -0,0 +1,13 @@
--[[
| 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/
--]]
PLUGIN.name = "Extra Bugbait Functionality"
PLUGIN.author = "Asimo"
PLUGIN.description = "Adds pheropods as an item and gives it some functionality"