forked from MagicBane/Server
deposit limits added to type
This commit is contained in:
+26
-24
@@ -2663,38 +2663,40 @@ public class Enum {
|
|||||||
|
|
||||||
public enum ResourceType implements EnumBitSetHelper<ResourceType> {
|
public enum ResourceType implements EnumBitSetHelper<ResourceType> {
|
||||||
|
|
||||||
STONE(1580000, 74856115),
|
GOLD(7, 2308551, 100000000),
|
||||||
TRUESTEEL(1580001, -317484979),
|
ADAMANT(1580003, -1741189964, 1000),
|
||||||
IRON(1580002, 2504297),
|
AGATE(1580009, 75173057, 2000),
|
||||||
ADAMANT(1580003, -1741189964),
|
ANTIMONY(1580014, 452320058, 1000),
|
||||||
LUMBER(1580004, -1603256692),
|
AZOTH(1580012, 78329697, 2000),
|
||||||
OAK(1580005, 74767),
|
BLOODSTONE(1580020, -1569826353, 500),
|
||||||
BRONZEWOOD(1580006, 1334770447),
|
BRONZEWOOD(1580006, 1334770447, 500),
|
||||||
MANDRAKE(1580007, 1191391799),
|
COAL(1580008, 2559427, 3000),
|
||||||
COAL(1580008, 2559427),
|
DIAMOND(1580010, -1730704107, 2000),
|
||||||
AGATE(1580009, 75173057),
|
GALVOR(1580017, -1596311545, 2000),
|
||||||
DIAMOND(1580010, -1730704107),
|
IRON(1580002, 2504297, 2000),
|
||||||
ONYX(1580011, 2977263),
|
LUMBER(1580004, -1603256692, 10000),
|
||||||
AZOTH(1580012, 78329697),
|
MANDRAKE(1580007, 1191391799, 1000),
|
||||||
ORICHALK(1580013, -2036290524),
|
MITHRIL(1580021, -1761257186, 500),
|
||||||
ANTIMONY(1580014, 452320058),
|
OAK(1580005, 74767, 3000),
|
||||||
SULFUR(1580015, -1586349421),
|
OBSIDIAN(1580019, -697973233, 500),
|
||||||
QUICKSILVER(1580016, -472884509),
|
ONYX(1580011, 2977263, 1000),
|
||||||
GALVOR(1580017, -1596311545),
|
ORICHALK(1580013, -2036290524, 3000),
|
||||||
WORMWOOD(1580018, 1532478436),
|
QUICKSILVER(1580016, -472884509, 1000),
|
||||||
OBSIDIAN(1580019, -697973233),
|
STONE(1580000, 74856115, 10000),
|
||||||
BLOODSTONE(1580020, -1569826353),
|
SULFUR(1580015, -1586349421, 1000),
|
||||||
MITHRIL(1580021, -1761257186),
|
TRUESTEEL(1580001, -317484979, 2000),
|
||||||
GOLD(7, 2308551);
|
WORMWOOD(1580018, 1532478436, 500);
|
||||||
|
|
||||||
public static HashMap<Integer, ResourceType> resourceLookup = new HashMap<>();
|
public static HashMap<Integer, ResourceType> resourceLookup = new HashMap<>();
|
||||||
public static HashMap<Integer, ResourceType> hashLookup = new HashMap<>();
|
public static HashMap<Integer, ResourceType> hashLookup = new HashMap<>();
|
||||||
public int templateID;
|
public int templateID;
|
||||||
public int hash;
|
public int hash;
|
||||||
|
public int deposit_limit;
|
||||||
|
|
||||||
ResourceType(int templateID, int hash) {
|
ResourceType(int templateID, int hash, int deposit_limit) {
|
||||||
this.templateID = templateID;
|
this.templateID = templateID;
|
||||||
this.hash = hash;
|
this.hash = hash;
|
||||||
|
this.deposit_limit = deposit_limit;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void InitializeResourceTypes() {
|
public static void InitializeResourceTypes() {
|
||||||
|
|||||||
Reference in New Issue
Block a user