mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
27 lines
869 B
Lua
27 lines
869 B
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/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
ENT.Base = "npc_vj_creature_base"
|
||
|
|
ENT.Type = "ai"
|
||
|
|
ENT.PrintName = "Multilated Zombie"
|
||
|
|
ENT.Author = "darkandrai1987"
|
||
|
|
ENT.Contact = "http://steamcommunity.com/groups/vrejgaming"
|
||
|
|
ENT.Purpose = "Spawn it and fight with it!"
|
||
|
|
ENT.Instructions = "Click on the spawnicon to spawn it."
|
||
|
|
ENT.Category = "Xeian"
|
||
|
|
|
||
|
|
if (CLIENT) then
|
||
|
|
local Name = "Multilated Zombie"
|
||
|
|
local LangName = "npc_vj_zombiemultilated"
|
||
|
|
language.Add(LangName, Name)
|
||
|
|
killicon.Add(LangName,"HUD/killicons/default",Color(255,80,0,255))
|
||
|
|
language.Add("#"..LangName, Name)
|
||
|
|
killicon.Add("#"..LangName,"HUD/killicons/default",Color(255,80,0,255))
|
||
|
|
end
|