Advertisement
Snopel

PlayerStats

Apr 11th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.31 KB | None | 0 0
  1. public class PlayerStats
  2. {
  3.     public static PlayerStats player = new PlayerStats();
  4.    
  5.     //Player Stats
  6.     String str_player_Name = "Nothing"; //the player's name
  7.     int int_player_Level = 0; //the level of the player
  8.     int int_player_maxLevel = 20; //the max level the player can reach
  9.     int int_player_Exp = 0; //the player's exp points
  10.     int int_player_maxExp = 2; //the max exp a player can have
  11.     int int_player_Score = 0; //the player's score
  12.    
  13.     //Player Ingame Stats
  14.     int int_player_skillPoints = 3; //the player's skill points
  15.     int int_player_Skill = 0; //the player's skill level
  16.     int int_player_maxSkill = 5; //the max skill level the player can reach
  17.     double db_player_Speed = 1.05; //the player's speed
  18.     double db_player_maxSpeed = 2.8; //the max speed level the player can reach
  19.     int int_player_Energy = 0; //the player's energy
  20.     int int_player_maxEnergy  = 40; //the max energy the player can reach
  21.     int int_player_Regen = 0; //the player's energy regen
  22.     int int_player_maxRegen = 40; //the max regen the player can reach
  23.    
  24.     //Ability Stats
  25.     String str_player_Ability = "Nothing"; //the player's chosen ability
  26.     int int_player_ability_Cost; //the cost of the player's ability in energy
  27.     boolean bol_player_ability_canUse; //
  28.          
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement