14 lines
347 B
Lua
14 lines
347 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 (Friendly)",
|
|
Class = "npc_citizen",
|
|
Category = Category,
|
|
Model = "models/kirby/kirby.mdl",
|
|
KeyValues = { citizentype = CT_UNIQUE },
|
|
}
|
|
list.Set( "NPC", "kirbys_npc", NPC )
|