OSDN Git Service

tc
[chemicraft/chemicraft.git] / common / pcc / chemicraft / base / ChemiCraftRegisterCompounds.java
1 package pcc.chemicraft.base;
2
3 /**
4  * 化合物を追加します
5  * @author mozipi,ponkotate
6  */
7 public class ChemiCraftRegisterCompounds extends ChemiCraftBaseRegister {
8
9         public ChemiCraftRegisterCompounds(ChemiCraftBase mod) {
10                 super(mod);
11         }
12
13         @Override
14         public void start() {
15                 this.mod.api.addCompound("ja_JP", "ChlorousAcid", "亜塩素酸");
16                 this.mod.api.addCompound("ja_JP", "CarbonMonoxide", "一酸化炭素");
17                 this.mod.api.addCompound("ja_JP", "CarbonDioxide", "二酸化炭素");
18                 this.mod.api.addCompound("ja_JP", "Water", "水");
19                 this.mod.api.addCompound("ja_JP", "SodiumChloride", "塩化ナトリウム");
20                 this.mod.api.addCompound("ja_JP", "SodiumBicarbonate", "重曹");
21         }
22
23 }