Move dusts and smalldusts to json

This commit is contained in:
ProfessorProspector 2016-12-11 11:34:56 -08:00
parent 3da6083c68
commit 8012abee3b
133 changed files with 700 additions and 77 deletions

View file

@ -11,14 +11,14 @@ import techreborn.lib.ModInfo;
import java.security.InvalidParameterException;
public class ItemDusts extends ItemTextureBase {
public class ItemDusts extends ItemTRNoDestroy {
public static final String[] types = new String[] { "almandine", "aluminum", "andradite", "ashes", "basalt",
"bauxite", "brass", "bronze", "calcite", "charcoal", "chrome", "cinnabar", "clay", "coal", "copper",
"darkAshes", "diamond", "electrum", "emerald", "enderEye", "enderPearl", "endstone", "flint", "galena",
"dark_ashes", "diamond", "electrum", "emerald", "ender_eye", "ender_pearl", "endstone", "flint", "galena",
"gold", "grossular", "invar", "iron", "lazurite", "lead", "magnesium", "manganese", "marble", "netherrack",
"nickel", "obsidian", "peridot", "phosphorous", "platinum", "pyrite", "pyrope", "redGarnet", ModItems.META_PLACEHOLDER,
"ruby", "saltpeter", "sapphire", "sawDust", "silver", "sodalite", "spessartine", "sphalerite", "steel",
"sulfur", "tin", "titanium", "tungsten", "uvarovite", ModItems.META_PLACEHOLDER, "yellowGarnet", "zinc",
"nickel", "obsidian", "peridot", "phosphorous", "platinum", "pyrite", "pyrope", "red_garnet", ModItems.META_PLACEHOLDER,
"ruby", "saltpeter", "sapphire", "saw_dust", "silver", "sodalite", "spessartine", "sphalerite", "steel",
"sulfur", "tin", "titanium", "tungsten", "uvarovite", ModItems.META_PLACEHOLDER, "yellow_garnet", "zinc",
"olivine", "andesite", "diorite", "granite" };
public ItemDusts() {
@ -74,17 +74,4 @@ public class ItemDusts extends ItemTextureBase {
}
}
@Override
public String getTextureName(int damage) {
if (types[damage].equals("%NULL%")) {
damage = 0;
}
return ModInfo.MOD_ID + ":items/dust/" + types[damage] + "Dust";
}
@Override
public int getMaxMeta() {
return types.length;
}
}

View file

@ -11,15 +11,15 @@ import techreborn.lib.ModInfo;
import java.security.InvalidParameterException;
public class ItemDustsSmall extends ItemTextureBase {
public class ItemDustsSmall extends ItemTRNoDestroy {
public static final String[] types = new String[] { "almandine", "aluminum", "andradite", "ashes", "basalt",
"bauxite", "brass", "bronze", "calcite", "charcoal", "chrome", "cinnabar", "clay", "coal", "copper",
"darkAshes", "diamond", "electrum", "emerald", "enderEye", "enderPearl", "endstone", "flint", "galena",
"dark_ashes", "diamond", "electrum", "emerald", "ender_eye", "ender_pearl", "endstone", "flint", "galena",
"gold", "grossular", "invar", "iron", "lazurite", "lead", "magnesium", "manganese", "marble", "netherrack",
"nickel", "obsidian", "peridot", "phosphorous", "platinum", "pyrite", "pyrope", "redGarnet", ModItems.META_PLACEHOLDER,
"ruby", "saltpeter", "sapphire", "sawDust", "silver", "sodalite", "spessartine", "sphalerite", "steel",
"sulfur", "tin", "titanium", "tungsten", "uvarovite", ModItems.META_PLACEHOLDER, "yellowGarnet", "zinc",
"nickel", "obsidian", "peridot", "phosphorous", "platinum", "pyrite", "pyrope", "red_garnet", ModItems.META_PLACEHOLDER,
"ruby", "saltpeter", "sapphire", "saw_dust", "silver", "sodalite", "spessartine", "sphalerite", "steel",
"sulfur", "tin", "titanium", "tungsten", "uvarovite", ModItems.META_PLACEHOLDER, "yellow_garnet", "zinc",
"olivine", "redstone", "glowstone", "andesite", "diorite", "granite" };
public ItemDustsSmall() {
@ -64,17 +64,4 @@ public class ItemDustsSmall extends ItemTextureBase {
}
}
@Override
public String getTextureName(int damage) {
if (types[damage].equals(ModItems.META_PLACEHOLDER)) {
damage = 0;
}
return ModInfo.MOD_ID + ":items/smallDust/small" + StringUtils.toFirstCapital(types[damage]) + "Dust";
}
@Override
public int getMaxMeta() {
return types.length;
}
}