RovkirHexus

Weapons

Jun 8th, 2016
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. package feAttempt;
  2.  
  3. public class Weapons {
  4.     public static Weapon ironSword;
  5.     public static Weapon ironAxe;
  6.     public static Weapon ironLance;
  7.     public static Weapon ironBow;
  8.     public static Weapon fire;
  9.     public static Weapon ironDagger;
  10.    
  11.     public static void createWeapons(){
  12.         ironSword = new Weapon(0, 5, 95, 5, 0, 1, 1);
  13.         ironAxe = new Weapon(1, 8, 75, 10, 0, 1, 1);
  14.         ironLance = new Weapon(2, 7, 80, 8, 0, 1, 1);
  15.         fire = new Weapon(0, 5, 90, 4, 0 , 1, 2);
  16.         ironBow = new Weapon(1, 6, 85, 5, 0, 2, 2);
  17.         ironDagger = new Weapon(2, 5, 90, 3, 0, 1, 1);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment