Skip to content
This repository was archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
you
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0werD committed Dec 2, 2020
0 parents commit 1958b07
Show file tree
Hide file tree
Showing 189 changed files with 12,478 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# ReZombiePlague

## What is this?
ReZombiePlague is the result of the development of a modification for the Counter-Strike game based on the original Zombie Plague modification using modern technologies and deeper integration over the game library.

## Goals of the project
* Develop a modification architecture from scratch with the experience of previous years.
* Minimum dependencies between plugins.
* Extended API for plugins and minimum boilerplate code coverage.

## Requirements
ReHLDS, ReGameDLL, Metamod-r (or Metamod-P), AMX Mod X, ReAPI.
* Tip: Recommend using the latest versions.

## How can I help the project?
Just install it on your game server and report problems you faced.

## Credits
Thanks to projects: ReGameDLL_CS, AMX Mod X, ReAPI<br/>
Thanks to humans: wellasgood, Nvoymax, Alex, DANDY, steelzzz, Droads, Nordic Warrior, kostikovkirill, CaHTuK, Bodom, DimaS, bristol, wopox1337 and others.<br/>
77 changes: 77 additions & 0 deletions extra/addons/amxmodx/configs/plugins-rezp.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
// Cores
rezp/rz_main.amxx
rezp/rz_gamerules.amxx
rezp/rz_gamemode.amxx
rezp/rz_weapons.amxx
rezp/rz_items.amxx
rezp/rz_player.amxx
rezp/rz_player_class.amxx
rezp/rz_player_subclass.amxx
rezp/rz_player_props.amxx
rezp/rz_player_models.amxx
rezp/rz_player_sounds.amxx
rezp/rz_player_melee.amxx
rezp/rz_player_nightvision.amxx

// Game Modes
rezp/gamemodes/rz_gamemode_multi.amxx
rezp/gamemodes/rz_gamemode_swarm.amxx
rezp/gamemodes/rz_gamemode_nemesis.amxx
rezp/gamemodes/rz_gamemode_survivor.amxx
rezp/gamemodes/rz_gamemode_plague.amxx
rezp/gamemodes/rz_gamemode_assassin.amxx
rezp/gamemodes/rz_gamemode_sniper.amxx
rezp/gamemodes/rz_gamemode_lnj.amxx
rezp/gamemodes/rz_gamemode_avs.amxx

// Classes
rezp/classes/rz_class_zombie.amxx
rezp/classes/rz_class_human.amxx
rezp/classes/rz_class_nemesis.amxx
rezp/classes/rz_class_survivor.amxx
rezp/classes/rz_class_assassin.amxx
rezp/classes/rz_class_sniper.amxx

// Sub-Classes
rezp/subclasses/rz_subzombie_jumper.amxx
rezp/subclasses/rz_subzombie_sprinter.amxx
rezp/subclasses/rz_subzombie_stone.amxx
rezp/subclasses/rz_subhuman_techno.amxx
rezp/subclasses/rz_subhuman_dead.amxx

// Weapons
rezp/weapons/rz_wpn_fire_grenade.amxx
rezp/weapons/rz_wpn_frost_grenade.amxx
rezp/weapons/rz_wpn_flare_grenade.amxx
rezp/weapons/rz_wpn_infection_bomb.amxx
rezp/weapons/rz_wpn_sniperawp.amxx

// Items
rezp/items/rz_item_madness.amxx
rezp/items/rz_item_antidote.amxx
rezp/items/rz_item_grenades.amxx
rezp/items/rz_item_weapons.amxx
rezp/items/rz_item_nightvision.amxx
rezp/items/rz_item_armor.amxx

// Menus
rezp/menus/rz_menu_game.amxx
rezp/menus/rz_menu_weapons.amxx
rezp/menus/rz_menu_items.amxx
rezp/menus/rz_menu_choose_zombie.amxx
rezp/menus/rz_menu_admin.amxx
rezp/menus/rz_menu_admin_respawn.amxx
rezp/menus/rz_menu_admin_gamemodes.amxx
rezp/menus/rz_menu_admin_changeclass.amxx
rezp/menus/rz_menu_instant_zombie.amxx
rezp/menus/rz_menu_join_human.amxx

// Addons
rezp/addons/rz_addon_round_notice.amxx
rezp/addons/rz_addon_respawn.amxx
rezp/addons/rz_addon_awards.amxx
rezp/addons/rz_addon_playerinfo.amxx
rezp/addons/rz_addon_statusbar.amxx
rezp/addons/rz_addon_buyammo.amxx
rezp/addons/rz_addon_flashlight.amxx
rezp/addons/rz_addon_bleeding.amxx
43 changes: 43 additions & 0 deletions extra/addons/amxmodx/configs/rezp/main.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"server_browser_info": "Re Zombie Plague",
"custom_sky_names":
[
"space",
"blue"
],
"global_lighting": "c",
"nightvision_lighting": "z",
"roundover_ct_win": false,
"award_notice": true,
"chat_prefix": "[RZ]",
"prepare_time": 20,
"round_time": 180,
"warmup":
{
"enabled": true,
"time": 40
},
"ammopacks":
{
"enabled": true,
"join_amount": 100
},
"useless_entities":
[
"func_bomb_target",
"info_bomb_target",
"info_vip_start",
"func_vip_safetyzone",
"func_escapezone",
"func_hostage_rescue",
"info_hostage_rescue",
"hostage_entity",
"armoury_entity",
"player_weaponstrip",
"game_player_equip",
"env_fog",
"env_rain",
"env_snow",
"monster_scientist"
]
}
6 changes: 6 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/awards.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[en]
RZ_AWARD_PLAYER_KILLED = Award for neutralizing an enemy.
RZ_AWARD_PLAYER_INFECT = Award for infecting an enemy.
RZ_AWARD_TEAM_WIN = Team award.
RZ_AWARD_TEAM_LOSER = Income for losing.
RZ_AWARD_TEAM_DRAW = Team award.
7 changes: 7 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/class.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[en]
RZ_ZOMBIE = Zombie
RZ_HUMAN = Human
RZ_NEMESIS = Nemesis
RZ_SURVIVOR = Survivor
RZ_ASSASSIN = Assassin
RZ_SNIPER = Sniper
47 changes: 47 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/common.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[en]
RZ_FMT_DOLLARS = $%d
RZ_FMT_AMMOPACKS = %d ammo packs
RZ_FRIEND = Friend
RZ_ENEMY = Enemy
RZ_HEALTH = Health
RZ_SPECTATING = Spectating
RZ_AMMOPACKS = Ammo packs
RZ_CLASS = Class
RZ_TURN_INTO = Turn into
RZ_DEAD = *DEAD*
RZ_EMPTY = Empty
RZ_NEXT = Next
RZ_BACK = Back
RZ_EXIT = Exit
RZ_CLOSE = Close
RZ_AUTOSELECT = Auto Select
RZ_TIME_LEFT = Time Left
RZ_MENU_GAME_TITLE = Game Menu
RZ_MENU_GAME_SELECT_WPNS = Select Weapons
RZ_MENU_GAME_BUY_EXTRA = Buy Extra Items
RZ_MENU_GAME_JOIN_GAME = Join Game
RZ_MENU_GAME_JOIN_SPECS = Join Spectators
RZ_MENU_GAME_ADMIN = Admin Menu
RZ_MENU_WPN_TITLE = Select Weapons
RZ_MENU_WPN_TIMER = Remaining time
RZ_MENU_WPN_FIELD_WPN = Weapons
RZ_MENU_WPN_FIELD_EQUIP = Equipment
RZ_MENU_WPN_SEC_TITLE = Select
RZ_MENU_WPN_SEC_PISTOL = Pistol
RZ_MENU_WPN_SEC_SHOTGUN = Shotgun
RZ_MENU_WPN_SEC_SMG = SMG
RZ_MENU_WPN_SEC_RIFLE = Rifle
RZ_MENU_WPN_SEC_MACHINEGUN = Machine Gun
RZ_MENU_WPN_SEC_EQUIP = Equipment
RZ_MENU_WPN_SEC_MELEE = Melee
RZ_MENU_WPN_BUY_SELECT = Buy Selection
RZ_WIN_HUMAN = Humans Win!
RZ_WIN_ZOMBIE = Zombies Win!
RZ_WIN_NO_ONE = No one won...
RZ_SELECT_SUBCLASS = Select %l Class
RZ_PRESS_GAME_MENU = Press ^4«M» ^1to show the game menu
RZ_PRESS_BUY_AMMO = Press ^4«,» ^1or ^4«.» ^1to purchase ammo
RZ_WARMUP = WARMUP %d:%02d
RZ_WARMUP_END = WARMUP ENDING IN %d:%02d
RZ_WARMUP_START = WAR STARTING IN %d...
RZ_NOTICE_VIRUS_FREE = The virus has been set loose...
20 changes: 20 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/gamemode.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[en]
RZ_GAMEMODE_FMT = ~ %L ~
RZ_GAMEMODE_MULTI = Multiple Infection Mode
RZ_GAMEMODE_SWARM = Swarm Mode
RZ_GAMEMODE_NEMESIS = Nemesis Mode
RZ_GAMEMODE_SURVIVOR = Survivor Mode
RZ_GAMEMODE_PLAGUE = Plague Mode
RZ_GAMEMODE_ASSASSIN = Assassin Mode
RZ_GAMEMODE_SNIPER = Sniper Mode
RZ_GAMEMODE_LNJ = Armageddon Mode
RZ_GAMEMODE_AVS = Assassins vs Snipers Mode
RZ_GAMEMODE_NOTICE_MULTI = Multiple Infection
RZ_GAMEMODE_NOTICE_SWARM = Swarm Mode
RZ_GAMEMODE_NOTICE_NEMESIS = Nemesis Mode
RZ_GAMEMODE_NOTICE_SURVIVOR = Survivor Mode
RZ_GAMEMODE_NOTICE_PLAGUE = Plague Mode
RZ_GAMEMODE_NOTICE_ASSASSIN = Assassin Mode
RZ_GAMEMODE_NOTICE_SNIPER = Sniper Mode
RZ_GAMEMODE_NOTICE_ARMAGEDDON = Armageddon Mode
RZ_GAMEMODE_NOTICE_AVS = Assassins vs Snipers Mode
14 changes: 14 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/item.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[en]
RZ_ITEMS_TITLE = Extra Items
RZ_ITEM_MADNESS = Madness
RZ_ITEM_ANTIDOTE = Antidote
RZ_ITEM_NIGHTVISION = Nightvision
RZ_ITEM_ARMOR = Armor
RZ_ITEM_WPN_AWP = AWP Magnum Sniper
RZ_ITEM_WPN_M249 = M249 Para Machinegun
RZ_ITEM_WPN_SG550 = SG550 Auto-Sniper
RZ_ITEM_WPN_G3SG1 = G3SG1 Auto-Sniper
RZ_ITEM_NADE_INFECTION = Infection Bomb
RZ_ITEM_NADE_FIRE = Napalm Grenade
RZ_ITEM_NADE_FROST = Frost Grenade
RZ_ITEM_NADE_FLARE = Flare Grenade
11 changes: 11 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/en/subclass.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[en]
RZ_SUBZOMBIE_JUMPER_NAME = Jumper
RZ_SUBZOMBIE_JUMPER_DESC = Gravity+
RZ_SUBZOMBIE_SPRINTER_NAME = Sprinter
RZ_SUBZOMBIE_SPRINTER_DESC = Speed+
RZ_SUBZOMBIE_STONE_NAME = Stone
RZ_SUBZOMBIE_STONE_DESC = HP+
RZ_SUBHUMAN_TECHNO_NAME = Techno Dancer
RZ_SUBHUMAN_TECHNO_DESC = HP+
RZ_SUBHUMAN_DEAD_NAME = Dead Inside
RZ_SUBHUMAN_DEAD_DESC = Armor+
6 changes: 6 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/awards.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[ru]
RZ_AWARD_PLAYER_KILLED = Награда за нейтрализацию врага.
RZ_AWARD_PLAYER_INFECT = Награда за заражение врага.
RZ_AWARD_TEAM_WIN = Командная награда.
RZ_AWARD_TEAM_LOSER = Награда за проигрыш.
RZ_AWARD_TEAM_DRAW = Командная награда.
7 changes: 7 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/class.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[ru]
RZ_ZOMBIE = Зомби
RZ_HUMAN = Человек
RZ_NEMESIS = Немезида
RZ_SURVIVOR = Выживший
RZ_ASSASSIN = Убийца
RZ_SNIPER = Снайпер
47 changes: 47 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/common.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[ru]
RZ_FMT_DOLLARS = $%d
RZ_FMT_AMMOPACKS = %d кр.
RZ_FRIEND = Друг
RZ_ENEMY = Враг
RZ_HEALTH = Здоровье
RZ_SPECTATING = Наблюдение
RZ_AMMOPACKS = Кредиты
RZ_CLASS = Класс
RZ_TURN_INTO = Превратить в
RZ_DEAD = *МЕРТВ*
RZ_EMPTY = Пусто
RZ_NEXT = Далее
RZ_BACK = Назад
RZ_EXIT = Выход
RZ_CLOSE = Закрыть
RZ_AUTOSELECT = Авто-выбор
RZ_TIME_LEFT = Осталось времени
RZ_MENU_GAME_TITLE = Игровое меню
RZ_MENU_GAME_SELECT_WPNS = Выбрать оружие
RZ_MENU_GAME_BUY_EXTRA = Купить Спец-вещи
RZ_MENU_GAME_JOIN_GAME = Войти в игру
RZ_MENU_GAME_JOIN_SPECS = В зрители
RZ_MENU_GAME_ADMIN = Админ-меню
RZ_MENU_WPN_TITLE = Выбор оружия
RZ_MENU_WPN_TIMER = Осталось
RZ_MENU_WPN_FIELD_WPN = Оружие
RZ_MENU_WPN_FIELD_EQUIP = Экипировка
RZ_MENU_WPN_SEC_TITLE = Выбор
RZ_MENU_WPN_SEC_PISTOL = Пистолет
RZ_MENU_WPN_SEC_SHOTGUN = Дробовик
RZ_MENU_WPN_SEC_SMG = Пистолет-пулемет
RZ_MENU_WPN_SEC_RIFLE = Винтовка
RZ_MENU_WPN_SEC_MACHINEGUN = Тяжелое
RZ_MENU_WPN_SEC_EQUIP = Снаряжение
RZ_MENU_WPN_SEC_MELEE = Нож
RZ_MENU_WPN_BUY_SELECT = Купить
RZ_WIN_HUMAN = Люди победили!
RZ_WIN_ZOMBIE = Зомби победили!
RZ_WIN_NO_ONE = На этот раз ничья...
RZ_SELECT_SUBCLASS = Выбор класса %l
RZ_PRESS_GAME_MENU = Нажмите ^4«M» ^1чтобы открыть игровое меню
RZ_PRESS_BUY_AMMO = Нажмите ^4«,» ^1или ^4«.» ^1для покупки патронов
RZ_WARMUP = РАЗМИНКА %d:%02d
RZ_WARMUP_END = РАЗМИНКА ЗАКОНЧИТСЯ ЧЕРЕЗ %d:%02d
RZ_WARMUP_START = ВОЙНА НАЧНЕТСЯ ЧЕРЕЗ %d...
RZ_NOTICE_VIRUS_FREE = Вирус витает в воздухе...
20 changes: 20 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/gamemode.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[ru]
RZ_GAMEMODE_FMT = ~ %L ~
RZ_GAMEMODE_MULTI = Массовое Заражение
RZ_GAMEMODE_SWARM = Куча на кучу
RZ_GAMEMODE_NEMESIS = Дьявол
RZ_GAMEMODE_SURVIVOR = Выживший
RZ_GAMEMODE_PLAGUE = Чума расползается
RZ_GAMEMODE_ASSASSIN = Убийца
RZ_GAMEMODE_SNIPER = Снайпер
RZ_GAMEMODE_LNJ = Армагеддон
RZ_GAMEMODE_AVS = Убийцы против Снайперов
RZ_GAMEMODE_NOTICE_MULTI = Массовое Заражение
RZ_GAMEMODE_NOTICE_SWARM = Куча на кучу
RZ_GAMEMODE_NOTICE_NEMESIS = Дьявол
RZ_GAMEMODE_NOTICE_SURVIVOR = Выживший
RZ_GAMEMODE_NOTICE_PLAGUE = Чума расползается
RZ_GAMEMODE_NOTICE_ASSASSIN = Убийца
RZ_GAMEMODE_NOTICE_SNIPER = Снайпер
RZ_GAMEMODE_NOTICE_LNJ = Армагеддон
RZ_GAMEMODE_NOTICE_AVS = Убийцы против Снайперов
14 changes: 14 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/item.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[ru]
RZ_ITEMS_TITLE = Специальные вещи
RZ_ITEM_MADNESS = Бешенство
RZ_ITEM_ANTIDOTE = Антидот
RZ_ITEM_NIGHTVISION = Ночное видение
RZ_ITEM_ARMOR = Бронежилет
RZ_ITEM_WPN_AWP = Винтовка AWP
RZ_ITEM_WPN_M249 = Пулемет M249
RZ_ITEM_WPN_SG550 = Винтовка SG550
RZ_ITEM_WPN_G3SG1 = Винтовка G3SG1
RZ_ITEM_NADE_INFECTION = Граната-вирус
RZ_ITEM_NADE_FIRE = Граната Napalm
RZ_ITEM_NADE_FROST = Граната Frost
RZ_ITEM_NADE_FLARE = Граната Flare
11 changes: 11 additions & 0 deletions extra/addons/amxmodx/data/lang/rezp/ru/subclass.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[ru]
RZ_SUBZOMBIE_JUMPER_NAME = Попрыгунчик
RZ_SUBZOMBIE_JUMPER_DESC = Гравитация+
RZ_SUBZOMBIE_SPRINTER_NAME = Спринтер
RZ_SUBZOMBIE_SPRINTER_DESC = Скорость+
RZ_SUBZOMBIE_STONE_NAME = Камень
RZ_SUBZOMBIE_STONE_DESC = Здоровье+
RZ_SUBHUMAN_TECHNO_NAME = Техно-танцор
RZ_SUBHUMAN_TECHNO_DESC = Здоровье+
RZ_SUBHUMAN_DEAD_NAME = Мертвый внутри
RZ_SUBHUMAN_DEAD_DESC = Броня+
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added extra/addons/amxmodx/plugins/rezp/rz_items.amxx
Binary file not shown.
Binary file added extra/addons/amxmodx/plugins/rezp/rz_main.amxx
Binary file not shown.
Binary file added extra/addons/amxmodx/plugins/rezp/rz_player.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added extra/addons/amxmodx/plugins/rezp/rz_weapons.amxx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added extra/models/zombie_plague/v_grenade_fire.mdl
Binary file not shown.
Binary file added extra/models/zombie_plague/v_grenade_flare.mdl
Binary file not shown.
Binary file added extra/models/zombie_plague/v_grenade_frost.mdl
Binary file not shown.
Binary file added extra/models/zombie_plague/v_grenade_infect.mdl
Binary file not shown.
Binary file added extra/models/zombie_plague/v_knife_zombie.mdl
Binary file not shown.
Binary file added extra/sound/warcraft3/frostnova.wav
Binary file not shown.
Binary file added extra/sound/warcraft3/impalehit.wav
Binary file not shown.
Binary file added extra/sound/warcraft3/impalelaunch1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/ambience.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/grenade_explode.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/grenade_infect.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/nemesis1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/nemesis2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/nemesis_pain1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/nemesis_pain2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/nemesis_pain3.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/survivor1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/survivor2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/thunder1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/thunder2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/win_humans1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/win_humans2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_brains1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_brains2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_burn3.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_burn4.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_burn5.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_burn6.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_burn7.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_die1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_die2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_die3.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_die4.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_die5.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_fall1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_infec1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_infec2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_infec3.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_madness1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_pain1.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_pain2.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_pain3.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_pain4.wav
Binary file not shown.
Binary file added extra/sound/zombie_plague/zombie_pain5.wav
Binary file not shown.
Binary file added extra/sprites/flame.spr
Binary file not shown.
Loading

0 comments on commit 1958b07

Please sign in to comment.