mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
Upload
This commit is contained in:
98
lua/autorun/sleeping_enemies_2.lua
Normal file
98
lua/autorun/sleeping_enemies_2.lua
Normal file
@@ -0,0 +1,98 @@
|
||||
--[[
|
||||
| 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 = "Sleeping Enemies"
|
||||
|
||||
local NPC = { Name = "Burrowed Antlion",
|
||||
Class = "npc_antlion_burrowed",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Burrowed Antlion Guard",
|
||||
Class = "npc_antlionguard_burrowed",
|
||||
Category = Category }
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Burrowed Antlion Worker",
|
||||
Class = "npc_antlionworker_burrowed",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Burrowed Antlion Caveguard",
|
||||
Class = "npc_caveguard_burrowed",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
|
||||
NPC = { Name = "Burrowed Headcrab",
|
||||
Class = "npc_headcrab_burrowed",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
|
||||
NPC = { Name = "Sleeping Fastzombie A",
|
||||
Class = "npc_fastzombie_slump_a",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Fastzombie A2",
|
||||
Class = "npc_fastzombie_slump_c",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Fastzombie B",
|
||||
Class = "npc_fastzombie_slump_b",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
|
||||
NPC = { Name = "Sleeping Zombie Prone",
|
||||
Class = "npc_zombie_prone",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Zombie Slump",
|
||||
Class = "npc_zombie_slump",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Zombie Slump (Attack)",
|
||||
Class = "npc_zombie_slump_attack",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
|
||||
NPC = { Name = "Sleeping Zombine Prone",
|
||||
Class = "npc_zombine_prone",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Zombine Slump",
|
||||
Class = "npc_zombine_slump",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
|
||||
NPC = { Name = "Sleeping Zombine Slump(Attack)",
|
||||
Class = "npc_zombine_slump_attack",
|
||||
Category = Category }
|
||||
|
||||
list.Set( "NPC", NPC.Class, NPC )
|
||||
Reference in New Issue
Block a user