예제 #1
0
 public Bomb(int many)
 {
     amount = many;
     name   = "Bomb";
     icon   = new I_Ranged_2(1, Color.RAYWHITE);
     cost   = 150;
     party  = false;
     die    = new int[2] {
         3, 6
     };
 }
예제 #2
0
 public Javelin(int many)
 {
     amount = many;
     name   = "Javelin";
     icon   = new I_Ranged_2(6, Color.RAYWHITE);
     cost   = 2;
     party  = false;
     die    = new int[2] {
         1, 6
     };
     add = 0;
     fx  = new Pierce();
 }