spartanboy56

weapons

Jan 18th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.UUID;
  4.  
  5.  
  6.  
  7. /**
  8. * Created by Pappy on 1/13/2016.
  9. */
  10. public class weapons {
  11.  
  12. String WeaponID;
  13.  
  14. String weapType;
  15. String hilt;
  16. String blade;
  17. String buff;
  18. int damage;
  19. int speed;
  20. int buffEffect;
  21. String name = hilt + " " + blade + " " + weapType;
  22.  
  23. @Override
  24. public String toString(){
  25. return name;}
  26.  
  27.  
  28. public weapons(String Hilt, String Blade, String Buff, int Speed, int Damage, int BuffEffect, String WeapID,String Weaptype ){
  29.  
  30. weapType = Weaptype;
  31. WeaponID = WeapID;
  32. hilt = Hilt;
  33. blade = Blade;
  34. buff = Buff;
  35. speed = Speed;
  36. damage = Damage;
  37. buffEffect = BuffEffect;
  38. name = hilt + " " + blade + " " + weapType;
  39.  
  40.  
  41. }
  42.  
  43.  
  44.  
  45. }
Add Comment
Please, Sign In to add comment