Advertisement
Fleethan

Untitled

Mar 1st, 2017
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.26 KB | None | 0 0
  1. /**
  2.  * Write a description of class GunStats here.
  3.  *
  4.  * @author (your name)
  5.  * @version (a version number or a date)
  6.  */
  7. public class GunStats  
  8. {
  9.     public GunStats() {
  10.         public static Object[][] wepStats = {
  11.           //{"Name of wep", "reloadTime", melee (false)/ranged (true) (booleean), damage (int), cost (int), "storeDescription"}
  12.             {"Knife", 5, false, 34, 0, "Your Generic Kitchen Knife"},
  13.             {"Hammer", 8, false, 80, 4, "A Hammer From A Basement (Does a bit of damage)"},
  14.             {"Pistol", 10, true, 50, 10, "The Five-Seven From CS:GO"},
  15.             {"SMG", 3, true, 40, 20, "Your Too Slow..."}
  16.             };
  17.         public static Object[][] etcStoreItems = {
  18.           //{"Name of item", "ability", "ability options", cost (int), "storeDescription"}
  19.             {"Life Enhancement (+20)", "IncreaseMaxLife", "20", 20, "Enhance Your Life With Chuck Norris' Powers"},
  20.             {"Life Enhancement (+50)", "IncreaseMaxLife", "50", 50, "Enhance Your Life With Mr Ellis' Macbook"},
  21.             {"TheCommunityOfReddit", "DestroyAll", "ACommunityCalledReddit", 50, "Call Upon The Community Of Reddit"},
  22.             {"Ellis' Divine Wrath", "DestroyAll", "EllisMode", 100, "The Zombies Have Angered Mr Ellis..."}
  23.         };
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement