OSDN Git Service

af3e3333eff7ccaa781b95454c751ef697355ffe
[chemicraft/chemicraft.git] / common / pcc / chemicraft / ChemiCraftRegisterCompounds.java
1 package pcc.chemicraft;
2
3 public class ChemiCraftRegisterCompounds extends ChemiCraftRegister {
4
5         public ChemiCraftRegisterCompounds(ChemiCraft mod) {
6                 super(mod);
7         }
8
9         @Override
10         public void start() {
11                 this.mod.api.addCompound("ja_JP", "ChlorousAcid", "亜塩素酸");
12                 this.mod.api.addCompound("ja_JP", "CarbonMonoxide", "一酸化炭素");
13                 this.mod.api.addCompound("ja_JP", "CarbonDioxide", "二酸化炭素");
14                 this.mod.api.addCompound("ja_JP", "Water", "水");
15                 this.mod.api.addCompound("ja_JP", "SodiumChloride", "塩化ナトリウム");
16                 this.mod.api.addCompound("ja_JP", "SodiumBicarbonate", "重曹");
17         }
18
19 }