2009-04-07 19:16:15 +02:00
// ============================================================================
//
2009-07-08 02:16:29 +02:00
// Zombie:Reloaded Class configuration
2009-04-07 19:16:15 +02:00
//
2009-07-15 21:21:15 +02:00
// See Class Configuration (3.7) in the manual for detailed info.
2009-04-07 19:16:15 +02:00
//
// ============================================================================
//
// SHORT DESCRIPTIONS
//
// Attribute: Values: Description:
// ----------------------------------------------------------------------------
2009-08-15 02:58:49 +02:00
// enabled yes/no Enables or disables a class.
2009-06-22 01:09:51 +02:00
// team number Specifies what team the class belongs to:
2009-04-07 19:16:15 +02:00
// 0 - Zombies
// 1 - Humans
2009-06-22 01:09:51 +02:00
// 2 - Admin mode classes (incomplete feautre!)
2009-08-15 02:58:49 +02:00
// team_default yes/no Marks the class as the default class in the team.
2009-06-22 01:09:51 +02:00
// flags number Special class flags (bit field). To combine multiple flags
// use a sum of the flag values. Available flags:
// 1 - Admins only
// 2 - Mother zombies only
2009-08-14 22:10:52 +02:00
// group text Restrict class to member of this SourceMod group. Leave blank for no restriction.
2009-04-07 19:16:15 +02:00
// name text The class name used in class menu.
// description text The class description used in class menu.
// model_path text Path to model to use. Relative to cstrike folder.
2013-04-25 09:50:08 +02:00
// model_skin_index number Model skin index to use if model support multiple skins. First skin is 0.
2009-05-12 03:12:05 +02:00
// alpha_initial number Initial transparency setting.
2009-04-07 19:16:15 +02:00
// alpha_damaged number Transparency when damaged.
// alpha_damage number How much damage to do before switching alpha.
// overlay_path text Overlay displayed at the player.
2010-08-06 15:19:26 +02:00
// nvgs yes/no Give and turn on night vision.
2009-04-07 19:16:15 +02:00
// fov number Field of view value. 90 is default.
2009-08-15 02:58:49 +02:00
// has_napalm yes/no Allows player to throw napalm grenades. Humans only.
2009-06-12 07:36:22 +02:00
// napalm_time decimal Napalm burn duration. Zombies only.
2013-01-05 03:27:58 +01:00
// immunity_mode text Special immunity modes. Some modes only works on humans or zombies:
2013-01-04 18:24:32 +01:00
// "none" - Instant infection.
2013-01-11 10:07:18 +01:00
// "kill" - Humans are instantly killed instead of turning zombies when attacked by zombies.
2013-01-06 00:25:57 +01:00
// "full" - Completely immune. Humans can't be infected, zombies don't receive damage or knock back. Careful with this, it might not be that fun.
2013-01-05 02:44:46 +01:00
// "infect" - Humans are immune to infections until HP go below a threshold. Threshold at zero enable stabbing to death.
2013-01-06 00:25:57 +01:00
// "damage" - Zombies are immune to damage from humans/grenades, but still vulnerable to knock back.
2013-01-05 22:58:43 +01:00
// "delay" - Delay infection for a certain number of seconds.
2013-01-11 10:16:48 +01:00
// "shield" - Shield against infections (humans) or knock back (zombies) for a certain amount of seconds (similar to TF2's <20> bercharge). Deploy with "zshield" command.
2013-01-04 18:24:32 +01:00
// immunity_amount number Immunity data value (humans only). Depends on the immunity mode above:
2013-01-05 02:44:46 +01:00
// "infect" - HP threshold. Infection will be allowed when HP go below this value. Zero will enable stabbing to death.
2013-01-06 00:25:57 +01:00
// "delay" - Number of seconds the infection is delayed since first hit by a zombie.
2013-01-07 03:47:06 +01:00
// "shield" - Number of seconds the shield is active.
// immunity_cooldown number Number of seconds of cooldown for temporary immunity actions, depending on mode.
2013-01-05 22:58:43 +01:00
// "delay" - Number of seconds the delay is reduced every time a zombie attack, while a delayed infection is in progress.
2013-01-06 00:25:57 +01:00
// "shield" - Number of seconds the player has to wait before the shield can be used again.
2009-08-15 02:58:49 +02:00
// no_fall_damage on/off Disables fall damage.
2009-04-07 19:16:15 +02:00
// health number How many health points to give.
// health_regen_interval decimal Sets the regeneration interval. 0 to disable.
// health_regen_amount number How much HP to give per interval.
// health_infect_gain number How much HP to give when the player infects someone. Zombies only.
2009-08-04 00:13:36 +02:00
// kill_bonus number How many points to give per kill. Zombies only.
2013-04-14 02:37:12 +02:00
// speed decimal The player speed. In LMV mode 300 is normal speed, 600 is double speed.
2009-04-07 19:16:15 +02:00
// knockback decimal Force of the knockback when shot at. Zombies only.
2009-11-22 10:50:49 +01:00
// jump_height decimal Multiplier of the players jump height. 0.0 means no jump boost, 1.0 is normal.
// jump_distance decimal Multiplier of the players jump distance. 0.0 means no forward jump boost, 1.0 is normal.
2009-04-07 19:16:15 +02:00
"classes"
{
// ------------------------------------------
//
// Zombie classes
//
// ------------------------------------------
2009-07-08 02:16:29 +02:00
"zombie_classic"
2009-04-07 19:16:15 +02:00
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-07 19:16:15 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "yes"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-07 19:16:15 +02:00
"name" "Classic"
"description" "Need brains!!! Arrrrggghh!"
// Model
2013-01-07 03:47:06 +01:00
"model_path" "models/player/zh/zh_corpse002.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-07 19:16:15 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-07 19:16:15 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "no"
2009-04-07 19:16:15 +02:00
"napalm_time" "10.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-04-07 19:16:15 +02:00
2013-01-07 03:47:06 +01:00
"health" "3200"
2009-04-07 19:16:15 +02:00
"health_regen_interval" "0.0"
"health_regen_amount" "0"
2013-01-07 03:47:06 +01:00
"health_infect_gain" "500"
2009-04-07 19:16:15 +02:00
"kill_bonus" "2"
2010-10-15 13:29:42 +02:00
"speed" "390"
2013-01-07 03:47:06 +01:00
"knockback" "3.2"
2009-06-23 01:37:26 +02:00
"jump_height" "1.1"
"jump_distance" "1.2"
2009-04-07 19:16:15 +02:00
}
2009-07-08 02:16:29 +02:00
"zombie_fast"
2009-04-07 19:16:15 +02:00
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-07 19:16:15 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-07 19:16:15 +02:00
"name" "Fast"
"description" "-HP | +Speed | +Jump | +Knockback"
// Model
2013-01-07 03:47:06 +01:00
"model_path" "models/player/zh/zh_charple001.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-07 19:16:15 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-07 19:16:15 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "no"
2013-01-07 03:47:06 +01:00
"napalm_time" "7.0"
2009-04-07 19:16:15 +02:00
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-04-07 19:16:15 +02:00
2013-01-07 03:47:06 +01:00
"health" "2500"
2009-04-07 19:16:15 +02:00
"health_regen_interval" "0.0"
"health_regen_amount" "0"
2013-01-07 03:47:06 +01:00
"health_infect_gain" "400"
2009-04-07 19:16:15 +02:00
"kill_bonus" "2"
2010-10-15 13:29:42 +02:00
"speed" "420"
2013-01-07 03:47:06 +01:00
"knockback" "4.0"
2009-06-23 01:37:26 +02:00
"jump_height" "1.3"
"jump_distance" "1.2"
2009-04-07 19:16:15 +02:00
}
2009-07-08 02:16:29 +02:00
"zombie_mutated"
2009-04-07 19:16:15 +02:00
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-07 19:16:15 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-07 19:16:15 +02:00
"name" "Mutated"
"description" "+HP | -Speed | +Jump | +Knockback"
// Model
"model_path" "models/player/zh/zh_zombie003.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-07 19:16:15 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-07 19:16:15 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "no"
2009-04-07 19:16:15 +02:00
"napalm_time" "15.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-04-07 19:16:15 +02:00
2009-05-10 18:49:47 +02:00
"health" "3500"
2009-04-07 19:16:15 +02:00
"health_regen_interval" "0.0"
"health_regen_amount" "0"
2009-05-10 18:49:47 +02:00
"health_infect_gain" "850"
2009-04-07 19:16:15 +02:00
"kill_bonus" "2"
2010-10-15 13:29:42 +02:00
"speed" "270"
2009-04-25 14:19:14 +02:00
"knockback" "3.5"
2009-06-23 01:37:26 +02:00
"jump_height" "1.3"
"jump_distance" "1.3"
2009-04-07 19:16:15 +02:00
}
2009-07-08 02:16:29 +02:00
"zombie_heavy"
2009-04-07 19:16:15 +02:00
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-07 19:16:15 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-07 19:16:15 +02:00
"name" "Heavy"
2013-01-07 03:47:06 +01:00
"description" "+HP | -Speed | -Knockback"
2009-04-07 19:16:15 +02:00
// Model
"model_path" "models/player/ics/hellknight_red/t_guerilla.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-07 19:16:15 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-07 19:16:15 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "no"
2013-01-07 03:47:06 +01:00
"napalm_time" "10.0"
2009-04-07 19:16:15 +02:00
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-04-07 19:16:15 +02:00
2013-01-07 03:47:06 +01:00
"health" "5500"
2009-04-07 19:16:15 +02:00
"health_regen_interval" "0.0"
"health_regen_amount" "0"
2013-01-07 03:47:06 +01:00
"health_infect_gain" "2000"
2009-04-07 19:16:15 +02:00
"kill_bonus" "2"
2013-01-07 03:47:06 +01:00
"speed" "250"
"knockback" "2.0"
"jump_height" "1.0"
"jump_distance" "1.0"
2009-04-07 19:16:15 +02:00
}
2009-07-08 02:16:29 +02:00
"mother_zombie"
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-07-08 02:16:29 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-07-08 02:16:29 +02:00
"flags" "2"
2009-08-14 22:10:52 +02:00
"group" ""
2009-07-08 02:16:29 +02:00
"name" "Mother zombie"
"description" "+HP regen | +Speed | +Jump | -Knockback"
// Model
2013-01-07 03:47:06 +01:00
"model_path" "models/player/zh/zh_zombie003.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-07-08 02:16:29 +02:00
"alpha_initial" "255"
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2013-01-07 03:47:06 +01:00
"fov" "90"
2009-07-08 02:16:29 +02:00
// Effects
"has_napalm" "0"
"napalm_time" "5.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-07-08 02:16:29 +02:00
2013-01-07 03:47:06 +01:00
"health" "3000"
2009-07-08 02:16:29 +02:00
"health_regen_interval" "0.25"
"health_regen_amount" "10"
2013-01-07 03:47:06 +01:00
"health_infect_gain" "1000"
2009-11-22 10:50:49 +01:00
"kill_bonus" "4"
2009-07-08 02:16:29 +02:00
2010-10-15 13:29:42 +02:00
"speed" "432"
2013-01-07 03:47:06 +01:00
"knockback" "2.3"
2009-07-08 02:16:29 +02:00
"jump_height" "1.2"
"jump_distance" "1.3"
}
"mother_zombie_admin"
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-07-08 02:16:29 +02:00
"team" "0"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-07-08 02:16:29 +02:00
"flags" "3"
2009-08-14 22:10:52 +02:00
"group" ""
2009-07-08 02:16:29 +02:00
"name" "Admin mother zombie"
"description" "+HP regen | +Speed | +Jump | -Knockback"
// Model
"model_path" "models/player/zh/zh_charple001.mdl"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-07-08 02:16:29 +02:00
"alpha_initial" "255"
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" "overlays/zr/zvision"
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2013-01-07 03:47:06 +01:00
"fov" "90"
2009-07-08 02:16:29 +02:00
// Effects
2009-12-29 02:40:31 +01:00
"has_napalm" "no"
2009-07-08 02:16:29 +02:00
"napalm_time" "3.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-07-08 02:16:29 +02:00
"health" "3500"
"health_regen_interval" "0.25"
"health_regen_amount" "10"
2013-01-07 03:47:06 +01:00
"health_infect_gain" "1000"
2009-07-08 02:16:29 +02:00
"kill_bonus" "1"
2010-10-15 13:29:42 +02:00
"speed" "486"
2013-01-07 03:47:06 +01:00
"knockback" "2.3"
2009-07-08 02:16:29 +02:00
"jump_height" "1.2"
"jump_distance" "1.3"
}
2009-04-07 19:16:15 +02:00
// ------------------------------------------
//
// Human classes
//
// ------------------------------------------
2009-04-25 14:19:14 +02:00
"human_normal"
2009-04-07 19:16:15 +02:00
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-07 19:16:15 +02:00
"team" "1"
2009-08-15 02:58:49 +02:00
"team_default" "yes"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-07 19:16:15 +02:00
2009-04-25 14:19:14 +02:00
"name" "Normal Human"
"description" "Default Counter-Strike settings"
2009-04-07 19:16:15 +02:00
// Model
2009-04-25 14:19:14 +02:00
"model_path" "default"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-07 19:16:15 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" ""
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-07 19:16:15 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "yes"
2009-04-07 19:16:15 +02:00
"napalm_time" "0.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "no"
2009-04-07 19:16:15 +02:00
"health" "100"
"health_regen_interval" "0.0"
"health_regen_amount" "0"
"health_infect_gain" "0"
"kill_bonus" "2"
2010-10-15 13:29:42 +02:00
"speed" "300"
2009-04-07 19:16:15 +02:00
"knockback" "0"
2009-06-23 01:37:26 +02:00
"jump_height" "1.0"
"jump_distance" "1.0"
2009-04-25 14:19:14 +02:00
}
2009-07-08 02:16:29 +02:00
"human_vip"
{
// General
2009-12-11 16:24:13 +01:00
"enabled" "no"
2009-07-08 02:16:29 +02:00
"team" "1"
2009-08-15 02:58:49 +02:00
"team_default" "yes"
2009-07-08 02:16:29 +02:00
"flags" "0"
2013-01-07 03:47:06 +01:00
"group" "" // Write the name of a SourceMod group for vip players ("zr_vip" for instance), then make it in SourceMod.
2009-07-08 02:16:29 +02:00
"name" "VIP Human"
"description" "Human class for important players"
// Model
"model_path" "default"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-07-08 02:16:29 +02:00
"alpha_initial" "255"
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" ""
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-07-08 02:16:29 +02:00
"fov" "90"
// Effects
2009-12-29 02:40:31 +01:00
"has_napalm" "yes"
2009-07-08 02:16:29 +02:00
"napalm_time" "0.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-11-22 10:50:49 +01:00
"no_fall_damage" "yes"
2009-07-08 02:16:29 +02:00
"health" "200"
"health_regen_interval" "1.0"
"health_regen_amount" "10"
"health_infect_gain" "0"
2009-11-22 10:50:49 +01:00
"kill_bonus" "1"
2009-07-08 02:16:29 +02:00
2010-10-15 13:29:42 +02:00
"speed" "300"
2009-07-08 02:16:29 +02:00
"knockback" "0"
2009-11-22 10:50:49 +01:00
"jump_height" "1.2"
"jump_distance" "1.2"
2009-07-08 02:16:29 +02:00
}
"human_admin"
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-07-08 02:16:29 +02:00
"team" "1"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-07-08 02:16:29 +02:00
"flags" "1"
2009-08-14 22:10:52 +02:00
"group" ""
2009-07-08 02:16:29 +02:00
"name" "Admin Human"
"description" "Human class for admins"
// Model
"model_path" "default"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-07-08 02:16:29 +02:00
"alpha_initial" "255"
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" ""
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-07-08 02:16:29 +02:00
"fov" "90"
// Effects
2009-12-29 02:40:31 +01:00
"has_napalm" "yes"
2009-07-08 02:16:29 +02:00
"napalm_time" "0.0"
2013-01-04 18:24:32 +01:00
// Player behavior
"immunity_mode" "none"
2013-01-05 02:44:46 +01:00
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-08-15 02:58:49 +02:00
"no_fall_damage" "yes"
2009-07-08 02:16:29 +02:00
"health" "200"
"health_regen_interval" "1.0"
"health_regen_amount" "10"
"health_infect_gain" "0"
2009-11-22 10:50:49 +01:00
"kill_bonus" "1"
2009-07-08 02:16:29 +02:00
2010-10-15 13:29:42 +02:00
"speed" "360"
2009-07-08 02:16:29 +02:00
"knockback" "0"
2009-11-22 10:50:49 +01:00
"jump_height" "1.2"
"jump_distance" "1.2"
2009-07-08 02:16:29 +02:00
}
2009-04-25 14:19:14 +02:00
"human_speedy"
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-25 14:19:14 +02:00
"team" "1"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-25 14:19:14 +02:00
"name" "Speedy"
2013-01-07 03:47:06 +01:00
"description" "+Speed"
2009-04-25 14:19:14 +02:00
// Model
"model_path" "default"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-25 14:19:14 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" ""
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-25 14:19:14 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "no"
2009-04-25 14:19:14 +02:00
"napalm_time" "0.0"
2013-01-04 18:24:32 +01:00
// Player behavior
2013-01-06 00:25:57 +01:00
"immunity_mode" "none"
"immunity_amount" "1"
"immunity_cooldown" "60"
2009-04-25 14:19:14 +02:00
"no_fall_damage" "0"
"health" "100"
"health_regen_interval" "0.0"
"health_regen_amount" "0"
"health_infect_gain" "0"
"kill_bonus" "1"
2010-10-15 13:29:42 +02:00
"speed" "360"
2009-04-25 14:19:14 +02:00
"knockback" "0"
2009-06-23 01:37:26 +02:00
"jump_height" "1.0"
"jump_distance" "1.0"
2009-04-25 14:19:14 +02:00
}
"human_light"
{
// General
2009-08-15 02:58:49 +02:00
"enabled" "yes"
2009-04-25 14:19:14 +02:00
"team" "1"
2009-08-15 02:58:49 +02:00
"team_default" "no"
2009-06-22 01:09:51 +02:00
"flags" "0"
2009-08-14 22:10:52 +02:00
"group" ""
2009-04-25 14:19:14 +02:00
"name" "Light"
2013-01-07 03:47:06 +01:00
"description" "-Speed | +Jump | +Immunity"
2009-04-25 14:19:14 +02:00
// Model
"model_path" "default"
2013-04-25 09:50:08 +02:00
"model_skin_index" "0"
2009-05-12 03:58:43 +02:00
"alpha_initial" "255"
2009-04-25 14:19:14 +02:00
"alpha_damaged" "255"
"alpha_damage" "0"
// Hud
"overlay_path" ""
2009-08-15 02:58:49 +02:00
"nvgs" "no"
2009-04-25 14:19:14 +02:00
"fov" "90"
// Effects
2009-08-15 02:58:49 +02:00
"has_napalm" "yes"
2009-04-25 14:19:14 +02:00
"napalm_time" "0.0"
2013-01-04 18:24:32 +01:00
// Player behavior
2013-01-07 03:47:06 +01:00
"immunity_mode" "infect" // Invulnerable to infection,
"immunity_amount" "25" // until HP go below 25.
2013-01-05 02:44:46 +01:00
"immunity_cooldown" "60"
2009-11-22 10:50:49 +01:00
"no_fall_damage" "yes"
2009-04-25 14:19:14 +02:00
"health" "100"
"health_regen_interval" "0.0"
"health_regen_amount" "0"
"health_infect_gain" "0"
"kill_bonus" "1"
2010-10-15 13:29:42 +02:00
"speed" "260"
2009-04-25 14:19:14 +02:00
"knockback" "0"
2013-01-07 03:47:06 +01:00
"jump_height" "1.4"
"jump_distance" "1.4"
2009-04-07 19:16:15 +02:00
}
}