mcMMO/src/main/java/com/gmail/nossr50/dumpster/CustomEntity.java
nossr50 084b5edf1f Crimes were commited today.
PrimarySkillType was a mess... SkillTools is not much better though.
2019-07-04 04:41:08 -07:00

46 lines
1.3 KiB
Java

//package com.gmail.nossr50.datatypes.mods;
//
//import org.bukkit.inventory.ItemStack;
//
//public class CustomEntity {
// private double xpMultiplier;
// private boolean canBeTamed;
// private int tamingXP;
// private boolean canBeSummoned;
// private ItemStack callOfTheWildItem;
// private int callOfTheWildAmount;
//
// public CustomEntity(double xpMultiplier, boolean canBeTamed, int tamingXP, boolean canBeSummoned, ItemStack callOfTheWildItem, int callOfTheWildAmount) {
// this.xpMultiplier = xpMultiplier;
// this.canBeTamed = canBeTamed;
// this.tamingXP = tamingXP;
// this.canBeSummoned = canBeSummoned;
// this.callOfTheWildItem = callOfTheWildItem;
// this.callOfTheWildAmount = callOfTheWildAmount;
// }
//
// public double getXpMultiplier() {
// return xpMultiplier;
// }
//
// public boolean canBeTamed() {
// return canBeTamed;
// }
//
// public int getTamingXP() {
// return tamingXP;
// }
//
// public boolean canBeSummoned() {
// return canBeSummoned;
// }
//
// public ItemStack getCallOfTheWildItem() {
// return callOfTheWildItem;
// }
//
// public int getCallOfTheWildAmount() {
// return callOfTheWildAmount;
// }
//}