Stores all of BuildCraft's items, from all of its modules. If any of them have been disabled by the user (or it the module is not installed) then they will be null. This is the equivalent of Items
| 16 | /** Stores all of BuildCraft's items, from all of its modules. If any of them have been disabled by the user (or it the |
| 17 | * module is not installed) then they will be null. This is the equivalent of {@link Items} */ |
| 18 | public class BCItems { |
| 19 | private static final boolean DEBUG = BCDebugging.shouldDebugLog("api.items"); |
| 20 | |
| 21 | // The (optional) items in BC LIB, and has other rules for when they are enabled. |
| 22 | public static final Item LIB_GUIDE; |
| 23 | public static final Item LIB_DEBUGGER; |
| 24 | |
| 25 | // BC Core |
| 26 | public static final Item CORE_WRENCH; |
| 27 | public static final Item CORE_DIAMOND_SHARD; |
| 28 | public static final Item CORE_LIST; |
| 29 | public static final Item CORE_MAP_LOCATION; |
| 30 | public static final Item CORE_PAINTBRUSH; |
| 31 | public static final Item CORE_GEAR_WOOD; |
| 32 | public static final Item CORE_GEAR_STONE; |
| 33 | public static final Item CORE_GEAR_IRON; |
| 34 | public static final Item CORE_GEAR_GOLD; |
| 35 | public static final Item CORE_GEAR_DIAMOND; |
| 36 | public static final Item CORE_MARKER_CONNECTOR; |
| 37 | |
| 38 | // BC Builders |
| 39 | public static final Item BUILDERS_SINGLE_SCHEMATIC; |
| 40 | public static final Item BUILDERS_BLUEPRINT; |
| 41 | public static final Item BUILDERS_TEMPLATE; |
| 42 | |
| 43 | // BC Energy |
| 44 | public static final Item ENERGY_GLOB_OF_OIL; |
| 45 | |
| 46 | // BC Factory |
| 47 | public static final Item FACTORY_PLASTIC_SHEET; |
| 48 | |
| 49 | // BC Robotics |
| 50 | public static final Item ROBOTICS_REDSTONE_BOARD; |
| 51 | public static final Item ROBOTICS_ROBOT; |
| 52 | public static final Item ROBOTICS_ROBOT_GOGGLES; |
| 53 | public static final Item ROBOTICS_PLUGGABLE_ROBOT_STATION; |
| 54 | |
| 55 | // BC Silicon |
| 56 | public static final Item SILICON_REDSTONE_CLIPSET; |
| 57 | |
| 58 | // BC Transport |
| 59 | public static final Item TRANSPORT_WATERPROOF; |
| 60 | public static final Item TRANSPORT_GATE_COPIER; |
| 61 | public static final Item TRANSPORT_PLUGGABLE_GATE; |
| 62 | public static final Item TRANSPORT_PLUGGABLE_WIRE; |
| 63 | public static final Item TRANSPORT_PLUGGABLE_BLOCKER; |
| 64 | public static final Item TRANSPORT_PLUGGABLE_LENS; |
| 65 | public static final Item TRANSPORT_PLUGGABLE_POWER_ADAPTOR; |
| 66 | public static final Item TRANSPORT_PLUGGABLE_FACADE; |
| 67 | |
| 68 | public static final Item TRANSPORT_PIPE_WOOD_ITEM; |
| 69 | public static final Item TRANSPORT_PIPE_WOOD_FLUID; |
| 70 | public static final Item TRANSPORT_PIPE_WOOD_POWER; |
| 71 | |
| 72 | // ... a few more needed... |
| 73 | |
| 74 | public static final Item TRANSPORT_PIPE_DIAMOND_ITEM; |
| 75 |
nothing calls this directly
no test coverage detected