-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathReactorNames.java
More file actions
24 lines (20 loc) · 845 Bytes
/
ReactorNames.java
File metadata and controls
24 lines (20 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2017
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
package Reika.ReactorCraft;
public class ReactorNames {
public static final String[] rawNames = {
"raw.hf", "raw.fueldust", "raw.depdust", "raw.ammonium", "raw.lime", "raw.calcite", "raw.magnetite", "raw.thordust", "raw.emeralddust",
"raw.wastedust"
};
public static final String[] canNames = {
"can.empty", "can.uf6", "can.hf", "can.nh3", "can.na", "can.h2", "can.h3", "can.cl", "can.o", "can.co2", "can.hco2", "can.hna", "can.li",
"can.lifbe", "can.hlifbe", "can.lifbefuel"
};
}