X-Isle Script File
-- Description: Defines the rules of the default game(Single player)
-- Created by Alberto Demichelis
--------------------------------------------------------------------
GameRules = {
InitialPlayerProperties = {
health = 255, -- range: 0=dead .. 255=full health
-- we do not have armor in FarCry right now
-- [marco] we do,initially is set to 0 though
armor = 0,
},
m_nMusicId=0,
-- damage modifier tables { head, heart, body, arm, leg, explosion }
ai_to_player_damage = { 1, 1, 1, 0.5, 0.5, 0.5 },
player_to_ai_damage = { 10, 2.0, 1, 0.5, 0.5, 1 },
ai_to_ai_damage = { 0.5, 0.4, 0.4, 0.15, 0.15, 0.15 },
player_to_player_damage = { 3, 1, 1, 0.5, 0.5, 0.5 },