mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 21:33:46 +03:00
35 lines
861 B
Lua
35 lines
861 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/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
local Category = "Sleeping Enemies"
|
||
|
|
|
||
|
|
local NPC = { Name = "PoisonzombieSE",
|
||
|
|
Class = "npc_poisonzombie_slump",
|
||
|
|
Category = Category }
|
||
|
|
|
||
|
|
list.Set( "NPC", NPC.Class, NPC )
|
||
|
|
|
||
|
|
local NPC = { Name = "ZombieSEb(Attack)",
|
||
|
|
Class = "npc_zombie_slump_attack",
|
||
|
|
Category = Category }
|
||
|
|
|
||
|
|
list.Set( "NPC", NPC.Class, NPC )
|
||
|
|
|
||
|
|
local NPC = { Name = "ZombineSEb(Attack)",
|
||
|
|
Class = "npc_zombine_slump_attack",
|
||
|
|
Category = Category }
|
||
|
|
|
||
|
|
list.Set( "NPC", NPC.Class, NPC )
|
||
|
|
|
||
|
|
local NPC = { Name = "FastzombieSEc",
|
||
|
|
Class = "npc_fastzombie_slump_c",
|
||
|
|
Category = Category }
|
||
|
|
|
||
|
|
list.Set( "NPC", NPC.Class, NPC )
|