chumanista

Untitled

Jun 29th, 2018
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 KB | None | 0 0
  1. package com.chumanista.youtube;
  2.  
  3. import org.bukkit.inventory.ItemStack;
  4.  
  5. public class ItemToDrop {
  6.    
  7.     private ItemStack fromPremiumCase;
  8.     private ItemStack drop;
  9.     private double chance;
  10.     private int minAmount;
  11.     private int maxAmount;
  12.    
  13.     public ItemStack getPremiumCase() {
  14.         return fromPremiumCase;
  15.     }
  16.    
  17.     public void setPremiumCase(ItemStack fromPremiumCase) {
  18.         this.fromPremiumCase = fromPremiumCase;
  19.     }
  20.    
  21.     public ItemStack getDrop() {
  22.         return drop;
  23.     }
  24.    
  25.     public void setDrop(ItemStack drop) {
  26.         this.drop = drop;
  27.     }
  28.    
  29.     public double getChance() {
  30.         return chance;
  31.     }
  32.    
  33.     public void setChance(double chance) {
  34.         this.chance = chance;
  35.     }
  36.    
  37.     public int getMinAmount() {
  38.         return minAmount;
  39.     }
  40.    
  41.     public void setMinAmount(int minAmount) {
  42.         this.minAmount = minAmount;
  43.     }
  44.    
  45.     public int getMaxAmount() {
  46.         return maxAmount;
  47.     }
  48.    
  49.     public void setMaxAmount(int maxAmount) {
  50.         this.maxAmount = maxAmount;
  51.     }
  52.    
  53. }
Add Comment
Please, Sign In to add comment