mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
Upload
This commit is contained in:
53
lua/autorun/hlvr_pbrnpcs.lua
Normal file
53
lua/autorun/hlvr_pbrnpcs.lua
Normal file
@@ -0,0 +1,53 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
local Category = "Half-Life: Alyx - Combine Soldiers"
|
||||
local NPC = {
|
||||
Name = "Combine Heavy",
|
||||
Class = "npc_combine_s",
|
||||
KeyValues = { citizentype = 4 },
|
||||
Model = "models/jq/hlvr/characters/combine/heavy/combine_heavy_hlvr_npc.mdl",
|
||||
Health = "100",
|
||||
Category = Category
|
||||
}
|
||||
list.Set( "NPC", "npc_hlvr_heavy_jq", NPC )
|
||||
|
||||
local Category = "Half-Life: Alyx - Combine Soldiers"
|
||||
local NPC = {
|
||||
Name = "Combine Grunt",
|
||||
Class = "npc_combine_s",
|
||||
KeyValues = { citizentype = 4 },
|
||||
Model = "models/jq/hlvr/characters/combine/grunt/combine_grunt_hlvr_npc.mdl",
|
||||
Health = "100",
|
||||
Category = Category
|
||||
}
|
||||
list.Set( "NPC", "npc_hlvr_grunt_jq", NPC )
|
||||
|
||||
local Category = "Half-Life: Alyx - Combine Soldiers"
|
||||
local NPC = {
|
||||
Name = "Combine Suppressor",
|
||||
Class = "npc_combine_s",
|
||||
KeyValues = { citizentype = 1 },
|
||||
Model = "models/jq/hlvr/characters/combine/suppressor/combine_suppressor_hlvr_npc.mdl",
|
||||
Health = "100",
|
||||
Category = Category
|
||||
}
|
||||
list.Set( "NPC", "npc_hlvr_suppressor_jq", NPC )
|
||||
|
||||
local Category = "Half-Life: Alyx - Combine Soldiers"
|
||||
local NPC = {
|
||||
Name = "Combine Captain",
|
||||
Class = "npc_combine_s",
|
||||
KeyValues = { citizentype = 4 },
|
||||
Model = "models/jq/hlvr/characters/combine/combine_captain/combine_captain_hlvr_npc.mdl",
|
||||
Health = "100",
|
||||
Category = Category
|
||||
}
|
||||
list.Set( "NPC", "npc_hlvr_captain_jq", NPC )
|
||||
Reference in New Issue
Block a user