mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
85 lines
1.0 KiB
Java
85 lines
1.0 KiB
Java
package com.hbm.blocks;
|
|
|
|
public class BlockEnums {
|
|
|
|
public static enum EnumStoneType {
|
|
SULFUR,
|
|
ASBESTOS,
|
|
HEMATITE,
|
|
MALACHITE,
|
|
LIMESTONE,
|
|
BAUXITE
|
|
}
|
|
|
|
public static enum EnumMeteorType {
|
|
IRON,
|
|
COPPER,
|
|
ALUMINIUM,
|
|
RAREEARTH,
|
|
COBALT
|
|
}
|
|
|
|
public static enum EnumBiomeType {
|
|
DESERT,
|
|
WOODLAND
|
|
}
|
|
|
|
public static enum EnumStalagmiteType {
|
|
SULFUR,
|
|
ASBESTOS
|
|
}
|
|
|
|
public static enum EnumCMMaterials {
|
|
STEEL,
|
|
ALLOY,
|
|
DESH,
|
|
TCALLOY
|
|
}
|
|
|
|
public static enum EnumCMEngines {
|
|
STANDARD,
|
|
DESH,
|
|
BISMUTH
|
|
}
|
|
|
|
public static enum EnumCMCircuit {
|
|
ALUMINIUM,
|
|
COPPER,
|
|
RED_COPPER,
|
|
GOLD,
|
|
SCHRABIDIUM
|
|
}
|
|
|
|
/** DECO / STRUCTURE ENUMS */
|
|
//i apologize in advance
|
|
|
|
public static enum TileType {
|
|
LARGE,
|
|
SMALL
|
|
}
|
|
|
|
public static enum LightstoneType {
|
|
UNREFINED,
|
|
TILE,
|
|
BRICKS,
|
|
BRICKS_CHISELED,
|
|
CHISELED
|
|
}
|
|
|
|
public static enum DecoComputerEnum {
|
|
IBM_300PL
|
|
}
|
|
|
|
public static enum DecoCabinetEnum {
|
|
GREEN,
|
|
STEEL
|
|
}
|
|
|
|
public static enum LightType {
|
|
INCANDESCENT,
|
|
FLUORESCENT,
|
|
HALOGEN
|
|
}
|
|
|
|
}
|