Advertisement
Guest User

Untitled

a guest
May 21st, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.34 KB | None | 0 0
  1. --[[
  2.     Play Types
  3.    
  4.     --Forwards--
  5.     1. Enforcer
  6.     2. Grinder
  7.     3. Playmaker
  8.     4. Power
  9.     5. Sniper
  10.     6. Two-Way
  11.    
  12.     --Defensemen--
  13.     1. Defensive
  14.     2. Enforcer
  15.     3. Offensive
  16.     4. Two-Way
  17.    
  18.     --Goalie--
  19.     1. Stand-Up
  20.     2. Hybrid
  21.     3. Butterfly
  22.    
  23. --]]
  24.  
  25. --[[
  26.     How to fill out player template
  27.    
  28.     1. Skills
  29.         Each skill determines a player's individual talents on a specific subject
  30.         A. Dangling
  31.         B. Defense
  32.         C. Faceoff
  33.         D. Passing
  34.         E. Shooting
  35.        
  36.     2. Overall
  37.         Overall is the player's overall talent level based upon his indivual skills
  38.        
  39.     3. Type
  40.         Type can be 3 different strings
  41.         A. Offense
  42.         B. Defense
  43.         C. Goalie
  44.    
  45.     4. Position (Inside Type(See above(4)))
  46.         Position is the players position dependant on Type (See above(4))
  47.         There are 6 positions
  48.         A. Left-Wing
  49.         B. Center
  50.         C. Right-Wing
  51.         D. Right-Defenseman
  52.         E. Left-Defenseman
  53.         F. Goalie
  54.        
  55.     5. PlayerType (Inside Type(See above))
  56.         PlayerType is the player's play style dependant on their Type(See above(4))
  57.         There are 13 different player types
  58.        
  59.         --Offense--
  60.         A. Enforcer
  61.         B. Griner
  62.         C. Playmaker
  63.         D. Power
  64.         E. Sniper
  65.         F. Two-Way
  66.        
  67.         --Defense--
  68.         A. Defensive
  69.         B. Enforcer
  70.         C. Offensive
  71.         D. Two-Way
  72.        
  73.         --Goalie--
  74.         A. Stand-Up
  75.         B. Hybrid
  76.         C. Butterfly
  77.        
  78.     6. Goalie
  79.         Just check true if the player is a goalie, false if player is not a goalie
  80.        
  81.     7. Contract
  82.         The contract value shows game many games the player can play.
  83.         You must use a contract booster for the player to play if his contract value is 0.
  84.    
  85. --]]
  86.  
  87. --[[
  88.     Player Type Details
  89.    
  90.     1. Offense
  91.         A. Enforcer
  92.             An enforcer is more likely to get penalties and will produce low ammount of points but will increase team morale.
  93.         B. Sniper
  94.             A sniper will produce high ammounts of goals but will have weaker defense along with little assists.
  95.         C. Playmaker
  96.             A playmaker will accumulate high ammounts of assists and a good ammount of goals with solid defense, the most well rounded player type.
  97.         D. Power
  98.             A power forward will collect average points, very good at faceoffs and will physicly help your team in matchups.
  99.         E. Grinder
  100.             A grinder will help you win puck battles and will as it says grind.
  101.         F. Two-Way
  102.             A Two-Way forward will be good at offense and defence, very well rounded and will help your team in every single aspect.
  103.            
  104.     2. Defense
  105.         A. Offensive
  106.             An offensive defenseman will rack up a good ammount of points but will lack defensively from time to time.
  107.         B. Defensive
  108.             The contrary to the Offensive player type, will rack up low ammounts of points but makes up for it in his defensive abilities.
  109.         C. Enforcer
  110.             This man will smack anyone who tries to mess with your goalie, do NOT piss him off.
  111.         D. Two-Way
  112.             This is the most well rounded defensive player on the ice, will rack up average points and will also perform very well on the defensive end.
  113.            
  114.     3. Goalie
  115.         (Disclaimer)
  116.         Since this game will purely run on simulation the type of goalie doesn't really matter but for the sake of realism I will include it.
  117.             A. Stand-Up
  118.                 The Stand-Up goalie will make better saves on high shots but will lack on low shots.
  119.             B. Butterfly
  120.                 Againa a contrary to the Stand-Up goalie will make good low saves but will lack on higher shots.
  121.             C. Hybrid
  122.                 The most well-rounded goalie will make good saves on high and low saves
  123. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement