Crimes were commited today.

PrimarySkillType was a mess... SkillTools is not much better though.
This commit is contained in:
nossr50
2019-07-04 04:41:08 -07:00
parent 8b39224cbc
commit 084b5edf1f
66 changed files with 1143 additions and 984 deletions

View File

@@ -0,0 +1,25 @@
//package com.gmail.nossr50.datatypes.mods;
//
//public class CustomBlock {
// private int xpGain;
// private boolean canDoubleDrop;
// private int smeltingXpGain;
//
// public CustomBlock(int xpGain, boolean canDoubleDrop, int smeltingXpGain) {
// this.xpGain = xpGain;
// this.canDoubleDrop = canDoubleDrop;
// this.smeltingXpGain = smeltingXpGain;
// }
//
// public int getXpGain() {
// return xpGain;
// }
//
// public boolean isDoubleDropEnabled() {
// return canDoubleDrop;
// }
//
// public int getSmeltingXpGain() {
// return smeltingXpGain;
// }
//}

View File

@@ -0,0 +1,45 @@
//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;
// }
//}

View File

@@ -0,0 +1,25 @@
//package com.gmail.nossr50.datatypes.mods;
//
//public class CustomTool {
// private double xpMultiplier;
// private boolean abilityEnabled;
// private int tier;
//
// public CustomTool(int tier, boolean abilityEnabled, double xpMultiplier) {
// this.xpMultiplier = xpMultiplier;
// this.abilityEnabled = abilityEnabled;
// this.tier = tier;
// }
//
// public double getXpMultiplier() {
// return xpMultiplier;
// }
//
// public boolean isAbilityEnabled() {
// return abilityEnabled;
// }
//
// public int getTier() {
// return tier;
// }
//}