2017-10-04 17:05:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of Industrial Wires.
|
2018-02-28 21:06:33 +01:00
|
|
|
* Copyright (C) 2016-2018 malte0811
|
2017-10-04 17:05:04 +02:00
|
|
|
* Industrial Wires is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Industrial Wires is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Industrial Wires. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-09-03 20:35:23 +02:00
|
|
|
package malte0811.industrialwires.util;
|
2017-10-04 17:05:04 +02:00
|
|
|
|
|
|
|
public final class NBTKeys {
|
|
|
|
|
|
|
|
//General
|
2018-04-06 17:29:26 +02:00
|
|
|
public static final String ENERGY = "energy";
|
|
|
|
public static final String BUFFER = "buffer";
|
|
|
|
public static final String DIRECTION = "dir";
|
2017-10-04 17:05:04 +02:00
|
|
|
public static final String TYPE = "type";
|
2018-02-08 22:08:21 +01:00
|
|
|
public static final String BUFFER_IN = "inBuffer";
|
|
|
|
public static final String BUFFER_OUT = "outBuffer";
|
2018-04-06 17:29:26 +02:00
|
|
|
public static final String VERSION = "version";
|
2017-10-04 17:05:04 +02:00
|
|
|
|
|
|
|
//Control panels
|
|
|
|
public static final String HEIGHT = "height";
|
|
|
|
public static final String ANGLE = "angle";
|
|
|
|
public static final String COLOR = "color";
|
|
|
|
public static final String RS_CHANNEL = "rsChannel";
|
|
|
|
public static final String RS_ID = "rsId";
|
|
|
|
public static final String HAS_SECOND_CHANNEL = "has2ndChannel";
|
|
|
|
public static final String RS_CHANNEL2 = "rsChannel2";
|
|
|
|
public static final String RS_ID2 = "rsId2";
|
|
|
|
public static final String TEXT = "text";
|
|
|
|
public static final String HORIZONTAL = "horizontal";
|
|
|
|
public static final String LENGTH = "length";
|
|
|
|
public static final String LATCHING = "latching";
|
|
|
|
public static final String WIDE = "wide";
|
|
|
|
public static final String LOCK_ID = "lockId";
|
|
|
|
public static final String RING_KEYS = "ringkeys";
|
|
|
|
public static final String NAME = "name";
|
|
|
|
public static final String ID = "cfgId";
|
|
|
|
public static final String VALUE = "value";
|
|
|
|
|
|
|
|
//HV
|
|
|
|
public static final String STAGES = "stages";
|
|
|
|
public static final String HAS_CONN = "hasConn";
|
|
|
|
public static final String CAP_VOLTAGES = "capVoltages";
|
|
|
|
|
|
|
|
//Mechanical
|
|
|
|
public static final String PARTS = "parts";
|
|
|
|
public static final String POS = "pos";
|
|
|
|
public static final String SPEED = "speed";
|
2018-02-17 20:37:53 +01:00
|
|
|
public static final String TEXTURE = "texture";
|
|
|
|
public static final String AC = "Ac";
|
2018-02-28 21:03:26 +01:00
|
|
|
public static final String WAVEFORM = "Wf";
|
2018-03-02 22:05:27 +01:00
|
|
|
public static final String MAX_SPEED = "maxSpeed";
|
2018-06-16 19:15:15 +02:00
|
|
|
public static final String SIDE_CONFIG = "sideConfig";
|
2018-02-17 20:37:53 +01:00
|
|
|
|
2018-02-08 22:08:21 +01:00
|
|
|
|
|
|
|
private NBTKeys() {}
|
2017-10-04 17:05:04 +02:00
|
|
|
}
|