hedgewars/uStats.pas
changeset 15470 846b5f879408
parent 15220 ceb289e8a582
child 15824 681db3039ad7
equal deleted inserted replaced
15469:1e3761ecfc13 15470:846b5f879408
    69     Kills       : LongWord = 0;         // Killed hedgehogs in turn (including those that died by Sudden Death water rise)
    69     Kills       : LongWord = 0;         // Killed hedgehogs in turn (including those that died by Sudden Death water rise)
    70     KillsTotal  : LongWord = 0;         // Total killed hedgehogs in game
    70     KillsTotal  : LongWord = 0;         // Total killed hedgehogs in game
    71     HitTargets  : LongWord = 0;         // Target (gtTarget) hits in turn
    71     HitTargets  : LongWord = 0;         // Target (gtTarget) hits in turn
    72     AmmoUsedCount : Longword = 0;       // Number of times an ammo has been used this turn
    72     AmmoUsedCount : Longword = 0;       // Number of times an ammo has been used this turn
    73     AmmoDamagingUsed : boolean = false; // true if damaging ammo was used in turn
    73     AmmoDamagingUsed : boolean = false; // true if damaging ammo was used in turn
    74     FirstBlood  : boolean = false;      // true if the “First blood” taunt has been used in this game
    74     FirstBlood  : boolean = false;      // true if the "First blood" taunt has been used in this game
    75     StepFirstBlood : boolean = false;   // true if the “First blood” taunt is to be used this turn
    75     StepFirstBlood : boolean = false;   // true if the "First blood" taunt is to be used this turn
    76     LeaveMeAlone : boolean = false;     // true if the “Leave me alone” taunt is to be used this turn
    76     LeaveMeAlone : boolean = false;     // true if the "Leave me alone" taunt is to be used this turn
    77     SkippedTurns: LongWord = 0;         // number of skipped turns in game
    77     SkippedTurns: LongWord = 0;         // number of skipped turns in game
    78     isTurnSkipped: boolean = false;     // true if this turn was skipped
    78     isTurnSkipped: boolean = false;     // true if this turn was skipped
    79     vpHurtSameClan: PVoicepack = nil;   // voicepack of current clan (used for taunts)
    79     vpHurtSameClan: PVoicepack = nil;   // voicepack of current clan (used for taunts)
    80     vpHurtEnemy: PVoicepack = nil;      // voicepack of enemy (used for taunts)
    80     vpHurtEnemy: PVoicepack = nil;      // voicepack of enemy (used for taunts)
    81 
    81