14 lines
310 B
Lua
14 lines
310 B
Lua
-- Don't try to edit this file if you're trying to add new NPCs.
|
|
-- Just make a new file and copy the format below.
|
|
|
|
local Category = "Kirby"
|
|
|
|
local NPC = {
|
|
Name = "Kirby (Hostile)",
|
|
Class = "npc_combine",
|
|
Category = Category,
|
|
Model = "models/kirby/Kirby.mdl",
|
|
}
|
|
list.Set( "NPC", "Kirbys_npc_evil", NPC )
|
|
|