mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-31 19:45:26 +02:00
Crimes were commited today.
PrimarySkillType was a mess... SkillTools is not much better though.
This commit is contained in:
25
src/main/java/com/gmail/nossr50/dumpster/CustomBlock.java
Normal file
25
src/main/java/com/gmail/nossr50/dumpster/CustomBlock.java
Normal 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;
|
||||
// }
|
||||
//}
|
45
src/main/java/com/gmail/nossr50/dumpster/CustomEntity.java
Normal file
45
src/main/java/com/gmail/nossr50/dumpster/CustomEntity.java
Normal 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;
|
||||
// }
|
||||
//}
|
25
src/main/java/com/gmail/nossr50/dumpster/CustomTool.java
Normal file
25
src/main/java/com/gmail/nossr50/dumpster/CustomTool.java
Normal 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;
|
||||
// }
|
||||
//}
|
Reference in New Issue
Block a user