mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-01-11 18:37:40 +01:00
Freshen colorschemes to 1.18, deprecate dead RPs, drop block number
mappings
This commit is contained in:
parent
59a8074453
commit
a3df8251f9
@ -12,252 +12,258 @@ import org.dynmap.debug.Debug;
|
||||
import org.dynmap.renderer.DynmapBlockState;
|
||||
|
||||
public class ColorScheme {
|
||||
private static final HashMap<String, ColorScheme> cache = new HashMap<String, ColorScheme>();
|
||||
private static final HashMap<String, ColorScheme> cache = new HashMap<String, ColorScheme>();
|
||||
|
||||
public String name;
|
||||
/* Switch to arrays - faster than map */
|
||||
public final Color[][] colors; /* [global-state-idx][step] */
|
||||
public final Color[][] biomecolors; /* [Biome.ordinal][step] */
|
||||
public final Color[][] raincolors; /* [rain * 63][step] */
|
||||
public final Color[][] tempcolors; /* [temp * 63][step] */
|
||||
public String name;
|
||||
/* Switch to arrays - faster than map */
|
||||
public final Color[][] colors; /* [global-state-idx][step] */
|
||||
public final Color[][] biomecolors; /* [Biome.ordinal][step] */
|
||||
public final Color[][] raincolors; /* [rain * 63][step] */
|
||||
public final Color[][] tempcolors; /* [temp * 63][step] */
|
||||
|
||||
public ColorScheme(String name, Color[][] colors, Color[][] biomecolors, Color[][] raincolors, Color[][] tempcolors) {
|
||||
this.name = name;
|
||||
this.colors = colors;
|
||||
this.biomecolors = biomecolors;
|
||||
this.raincolors = raincolors;
|
||||
this.tempcolors = tempcolors;
|
||||
}
|
||||
public ColorScheme(String name, Color[][] colors, Color[][] biomecolors, Color[][] raincolors,
|
||||
Color[][] tempcolors) {
|
||||
this.name = name;
|
||||
this.colors = colors;
|
||||
this.biomecolors = biomecolors;
|
||||
this.raincolors = raincolors;
|
||||
this.tempcolors = tempcolors;
|
||||
}
|
||||
|
||||
private static File getColorSchemeDirectory(DynmapCore core) {
|
||||
return new File(core.getDataFolder(), "colorschemes");
|
||||
}
|
||||
private static File getColorSchemeDirectory(DynmapCore core) {
|
||||
return new File(core.getDataFolder(), "colorschemes");
|
||||
}
|
||||
|
||||
public static ColorScheme getScheme(DynmapCore core, String name) {
|
||||
if (name == null)
|
||||
name = "default";
|
||||
ColorScheme scheme = cache.get(name);
|
||||
if (scheme == null) {
|
||||
scheme = loadScheme(core, name);
|
||||
cache.put(name, scheme);
|
||||
}
|
||||
return scheme;
|
||||
}
|
||||
public static ColorScheme getScheme(DynmapCore core, String name) {
|
||||
if (name == null)
|
||||
name = "default";
|
||||
ColorScheme scheme = cache.get(name);
|
||||
if (scheme == null) {
|
||||
scheme = loadScheme(core, name);
|
||||
cache.put(name, scheme);
|
||||
}
|
||||
return scheme;
|
||||
}
|
||||
|
||||
public static ColorScheme loadScheme(DynmapCore core, String name) {
|
||||
File colorSchemeFile = new File(getColorSchemeDirectory(core), name + ".txt");
|
||||
Color[][] colors = new Color[DynmapBlockState.getGlobalIndexMax()][];
|
||||
Color[][] biomecolors = new Color[BiomeMap.values().length][];
|
||||
Color[][] raincolors = new Color[64][];
|
||||
Color[][] tempcolors = new Color[64][];
|
||||
|
||||
/* Default the biome color */
|
||||
for(int i = 0; i < biomecolors.length; i++) {
|
||||
Color[] c = new Color[5];
|
||||
int red = 0x80 | (0x40 * ((i >> 0) & 1)) | (0x20 * ((i >> 3) & 1)) | (0x10 * ((i >> 6) & 1));
|
||||
int green = 0x80 | (0x40 * ((i >> 1) & 1)) | (0x20 * ((i >> 4) & 1)) | (0x10 * ((i >> 7) & 1));
|
||||
int blue = 0x80 | (0x40 * ((i >> 2) & 1)) | (0x20 * ((i >> 5) & 1));
|
||||
c[0] = new Color(red, green, blue);
|
||||
c[3] = new Color(red*4/5, green*4/5, blue*4/5);
|
||||
c[1] = new Color(red/2, green/2, blue/2);
|
||||
c[2] = new Color(red*2/5, green*2/5, blue*2/5);
|
||||
c[4] = new Color((c[1].getRed()+c[3].getRed())/2, (c[1].getGreen()+c[3].getGreen())/2, (c[1].getBlue()+c[3].getBlue())/2, (c[1].getAlpha()+c[3].getAlpha())/2);
|
||||
|
||||
biomecolors[i] = c;
|
||||
}
|
||||
|
||||
InputStream stream;
|
||||
try {
|
||||
Debug.debug("Loading colors from '" + colorSchemeFile + "'...");
|
||||
stream = new FileInputStream(colorSchemeFile);
|
||||
public static ColorScheme loadScheme(DynmapCore core, String name) {
|
||||
File colorSchemeFile = new File(getColorSchemeDirectory(core), name + ".txt");
|
||||
Color[][] colors = new Color[DynmapBlockState.getGlobalIndexMax()][];
|
||||
Color[][] biomecolors = new Color[BiomeMap.values().length][];
|
||||
Color[][] raincolors = new Color[64][];
|
||||
Color[][] tempcolors = new Color[64][];
|
||||
|
||||
Scanner scanner = new Scanner(stream);
|
||||
while (scanner.hasNextLine()) {
|
||||
String line = scanner.nextLine();
|
||||
if (line.startsWith("#") || line.equals("")) {
|
||||
continue;
|
||||
}
|
||||
/* Make parser less pedantic - tabs or spaces should be fine */
|
||||
String[] split = line.split("[\t ]");
|
||||
int cnt = 0;
|
||||
for(String s: split) { if(s.length() > 0) cnt++; }
|
||||
String[] nsplit = new String[cnt];
|
||||
cnt = 0;
|
||||
for(String s: split) { if(s.length() > 0) { nsplit[cnt] = s; cnt++; } }
|
||||
split = nsplit;
|
||||
if (split.length < 17) {
|
||||
continue;
|
||||
}
|
||||
Integer id = null;
|
||||
Integer dat = null;
|
||||
boolean isbiome = false;
|
||||
boolean istemp = false;
|
||||
boolean israin = false;
|
||||
DynmapBlockState state = null;
|
||||
int idx = split[0].indexOf(':');
|
||||
if(idx > 0) { /* ID:data - data color OR blockstate - data color */
|
||||
if (Character.isDigit(split[0].charAt(0))) {
|
||||
id = Integer.parseInt(split[0].substring(0, idx));
|
||||
dat = Integer.parseInt(split[0].substring(idx+1));
|
||||
state = DynmapBlockState.getStateByLegacyBlockID(id);
|
||||
if (state != null) {
|
||||
state = state.getState(dat);
|
||||
}
|
||||
}
|
||||
else {
|
||||
String[] vsplit = split[0].split("[\\[\\]]");
|
||||
//Log.info(String.format("split[0]=%s,vsplit[0]=%s,vsplit[1]=%s", split[0], vsplit[0], vsplit.length > 1 ? vsplit[1] : ""));
|
||||
if (vsplit.length > 1) {
|
||||
state = DynmapBlockState.getStateByNameAndState(vsplit[0], vsplit[1]);
|
||||
}
|
||||
else {
|
||||
state = DynmapBlockState.getBaseStateByName(vsplit[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if(split[0].charAt(0) == '[') { /* Biome color data */
|
||||
String bio = split[0].substring(1);
|
||||
idx = bio.indexOf(']');
|
||||
if(idx >= 0) bio = bio.substring(0, idx);
|
||||
isbiome = true;
|
||||
id = -1;
|
||||
BiomeMap[] bm = BiomeMap.values();
|
||||
for(int i = 0; i < bm.length; i++) {
|
||||
if(bm[i].toString().equalsIgnoreCase(bio)) {
|
||||
id = i;
|
||||
break;
|
||||
}
|
||||
else if(bio.equalsIgnoreCase("BIOME_" + i)) {
|
||||
id = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(id < 0) { /* Not biome - check for rain or temp */
|
||||
if(bio.startsWith("RAINFALL-")) {
|
||||
try {
|
||||
double v = Double.parseDouble(bio.substring(9));
|
||||
if((v >= 0) && (v <= 1.00)) {
|
||||
id = (int)(v * 63.0);
|
||||
israin = true;
|
||||
}
|
||||
} catch (NumberFormatException nfx) {
|
||||
}
|
||||
}
|
||||
else if(bio.startsWith("TEMPERATURE-")) {
|
||||
try {
|
||||
double v = Double.parseDouble(bio.substring(12));
|
||||
if((v >= 0) && (v <= 1.00)) {
|
||||
id = (int)(v * 63.0);
|
||||
istemp = true;
|
||||
}
|
||||
} catch (NumberFormatException nfx) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
id = Integer.parseInt(split[0]);
|
||||
state = DynmapBlockState.getStateByLegacyBlockID(id);
|
||||
}
|
||||
|
||||
Color[] c = new Color[5];
|
||||
/* Default the biome color */
|
||||
for (int i = 0; i < biomecolors.length; i++) {
|
||||
Color[] c = new Color[5];
|
||||
int red = 0x80 | (0x40 * ((i >> 0) & 1)) | (0x20 * ((i >> 3) & 1)) | (0x10 * ((i >> 6) & 1));
|
||||
int green = 0x80 | (0x40 * ((i >> 1) & 1)) | (0x20 * ((i >> 4) & 1)) | (0x10 * ((i >> 7) & 1));
|
||||
int blue = 0x80 | (0x40 * ((i >> 2) & 1)) | (0x20 * ((i >> 5) & 1));
|
||||
c[0] = new Color(red, green, blue);
|
||||
c[3] = new Color(red * 4 / 5, green * 4 / 5, blue * 4 / 5);
|
||||
c[1] = new Color(red / 2, green / 2, blue / 2);
|
||||
c[2] = new Color(red * 2 / 5, green * 2 / 5, blue * 2 / 5);
|
||||
c[4] = new Color((c[1].getRed() + c[3].getRed()) / 2, (c[1].getGreen() + c[3].getGreen()) / 2,
|
||||
(c[1].getBlue() + c[3].getBlue()) / 2, (c[1].getAlpha() + c[3].getAlpha()) / 2);
|
||||
|
||||
/* store colors by raycast sequence number */
|
||||
c[0] = new Color(Integer.parseInt(split[1]), Integer.parseInt(split[2]), Integer.parseInt(split[3]), Integer.parseInt(split[4]));
|
||||
c[3] = new Color(Integer.parseInt(split[5]), Integer.parseInt(split[6]), Integer.parseInt(split[7]), Integer.parseInt(split[8]));
|
||||
c[1] = new Color(Integer.parseInt(split[9]), Integer.parseInt(split[10]), Integer.parseInt(split[11]), Integer.parseInt(split[12]));
|
||||
c[2] = new Color(Integer.parseInt(split[13]), Integer.parseInt(split[14]), Integer.parseInt(split[15]), Integer.parseInt(split[16]));
|
||||
/* Blended color - for 'smooth' option on flat map */
|
||||
c[4] = new Color((c[1].getRed()+c[3].getRed())/2, (c[1].getGreen()+c[3].getGreen())/2, (c[1].getBlue()+c[3].getBlue())/2, (c[1].getAlpha()+c[3].getAlpha())/2);
|
||||
biomecolors[i] = c;
|
||||
}
|
||||
|
||||
if (isbiome) {
|
||||
if(istemp) {
|
||||
tempcolors[id] = c;
|
||||
}
|
||||
else if(israin) {
|
||||
raincolors[id] = c;
|
||||
}
|
||||
else if((id >= 0) && (id < biomecolors.length))
|
||||
biomecolors[id] = c;
|
||||
}
|
||||
else if (state != null) {
|
||||
int stateid = state.globalStateIndex;
|
||||
colors[stateid] = c;
|
||||
}
|
||||
}
|
||||
scanner.close();
|
||||
/* Last, push base color into any open slots in data colors list */
|
||||
for (int i = 0; i < colors.length; i++) {
|
||||
if (colors[i] == null) {
|
||||
DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i); // Get state
|
||||
DynmapBlockState bsbase = bs.baseState;
|
||||
if ((bsbase != null) && (colors[bsbase.globalStateIndex] != null)) {
|
||||
colors[i] = colors[bsbase.globalStateIndex];
|
||||
}
|
||||
}
|
||||
}
|
||||
/* And interpolate any missing rain and temperature colors */
|
||||
interpolateColorTable(tempcolors);
|
||||
interpolateColorTable(raincolors);
|
||||
} catch (RuntimeException e) {
|
||||
Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "').", e);
|
||||
return null;
|
||||
} catch (FileNotFoundException e) {
|
||||
Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "'): File not found.", e);
|
||||
}
|
||||
return new ColorScheme(name, colors, biomecolors, raincolors, tempcolors);
|
||||
}
|
||||
|
||||
public static void interpolateColorTable(Color[][] c) {
|
||||
int idx = -1;
|
||||
for(int k = 0; k < c.length; k++) {
|
||||
if(c[k] == null) { /* Missing? */
|
||||
if((idx >= 0) && (k == (c.length-1))) { /* We're last - so fill forward from last color */
|
||||
for(int kk = idx+1; kk <= k; kk++) {
|
||||
c[kk] = c[idx];
|
||||
}
|
||||
}
|
||||
/* Skip - will backfill when we find next color */
|
||||
}
|
||||
else if(idx == -1) { /* No previous color, just backfill this color */
|
||||
for(int kk = 0; kk < k; kk++) {
|
||||
c[kk] = c[k];
|
||||
}
|
||||
idx = k; /* This is now last defined color */
|
||||
}
|
||||
else { /* Else, interpolate between last idx and this one */
|
||||
int cnt = c[k].length;
|
||||
for(int kk = idx+1; kk < k; kk++) {
|
||||
double interp = (double)(kk-idx)/(double)(k-idx);
|
||||
Color[] cc = new Color[cnt];
|
||||
for(int jj = 0; jj < cnt; jj++) {
|
||||
cc[jj] = new Color(
|
||||
(int)((1.0-interp)*c[idx][jj].getRed() + interp*c[k][jj].getRed()),
|
||||
(int)((1.0-interp)*c[idx][jj].getGreen() + interp*c[k][jj].getGreen()),
|
||||
(int)((1.0-interp)*c[idx][jj].getBlue() + interp*c[k][jj].getBlue()),
|
||||
(int)((1.0-interp)*c[idx][jj].getAlpha() + interp*c[k][jj].getAlpha()));
|
||||
}
|
||||
c[kk] = cc;
|
||||
}
|
||||
idx = k;
|
||||
}
|
||||
}
|
||||
}
|
||||
public Color[] getRainColor(double rain) {
|
||||
int idx = (int)(rain * 63.0);
|
||||
if((idx >= 0) && (idx < raincolors.length))
|
||||
return raincolors[idx];
|
||||
else
|
||||
return null;
|
||||
}
|
||||
public Color[] getTempColor(double temp) {
|
||||
int idx = (int)(temp * 63.0);
|
||||
if((idx >= 0) && (idx < tempcolors.length))
|
||||
return tempcolors[idx];
|
||||
else
|
||||
return null;
|
||||
}
|
||||
public static void reset() {
|
||||
cache.clear();
|
||||
}
|
||||
InputStream stream;
|
||||
// Get defaults from biome_rainfall_temp.txt - let custom file override after
|
||||
File files[] = {
|
||||
new File(getColorSchemeDirectory(core), "biome_rainfall_temp.txt"),
|
||||
new File(getColorSchemeDirectory(core), "default.txt"),
|
||||
colorSchemeFile };
|
||||
try {
|
||||
for (int fidx = 0; fidx < files.length; fidx++) {
|
||||
Debug.debug("Loading colors from '" + files[fidx] + "' for " + name + "...");
|
||||
stream = new FileInputStream(files[fidx]);
|
||||
|
||||
Scanner scanner = new Scanner(stream);
|
||||
while (scanner.hasNextLine()) {
|
||||
String line = scanner.nextLine();
|
||||
if (line.startsWith("#") || line.equals("")) {
|
||||
continue;
|
||||
}
|
||||
/* Make parser less pedantic - tabs or spaces should be fine */
|
||||
String[] split = line.split("[\t ]");
|
||||
int cnt = 0;
|
||||
for (String s : split) {
|
||||
if (s.length() > 0)
|
||||
cnt++;
|
||||
}
|
||||
String[] nsplit = new String[cnt];
|
||||
cnt = 0;
|
||||
for (String s : split) {
|
||||
if (s.length() > 0) {
|
||||
nsplit[cnt] = s;
|
||||
cnt++;
|
||||
}
|
||||
}
|
||||
split = nsplit;
|
||||
if (split.length < 17) {
|
||||
continue;
|
||||
}
|
||||
Integer id = null;
|
||||
Integer dat = null;
|
||||
boolean isbiome = false;
|
||||
boolean istemp = false;
|
||||
boolean israin = false;
|
||||
DynmapBlockState state = null;
|
||||
int idx = split[0].indexOf(':');
|
||||
if (idx > 0) { /* ID:data - data color OR blockstate - data color */
|
||||
String[] vsplit = split[0].split("[\\[\\]]");
|
||||
// Log.info(String.format("split[0]=%s,vsplit[0]=%s,vsplit[1]=%s", split[0],
|
||||
// vsplit[0], vsplit.length > 1 ? vsplit[1] : ""));
|
||||
if (vsplit.length > 1) {
|
||||
state = DynmapBlockState.getStateByNameAndState(vsplit[0], vsplit[1]);
|
||||
} else {
|
||||
state = DynmapBlockState.getBaseStateByName(vsplit[0]);
|
||||
}
|
||||
} else if (split[0].charAt(0) == '[') { /* Biome color data */
|
||||
String bio = split[0].substring(1);
|
||||
idx = bio.indexOf(']');
|
||||
if (idx >= 0)
|
||||
bio = bio.substring(0, idx);
|
||||
isbiome = true;
|
||||
id = -1;
|
||||
BiomeMap[] bm = BiomeMap.values();
|
||||
for (int i = 0; i < bm.length; i++) {
|
||||
if (bm[i].toString().equalsIgnoreCase(bio)) {
|
||||
id = i;
|
||||
break;
|
||||
} else if (bio.equalsIgnoreCase("BIOME_" + i)) {
|
||||
id = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (id < 0) { /* Not biome - check for rain or temp */
|
||||
if (bio.startsWith("RAINFALL-")) {
|
||||
try {
|
||||
double v = Double.parseDouble(bio.substring(9));
|
||||
if ((v >= 0) && (v <= 1.00)) {
|
||||
id = (int) (v * 63.0);
|
||||
israin = true;
|
||||
}
|
||||
} catch (NumberFormatException nfx) {
|
||||
}
|
||||
} else if (bio.startsWith("TEMPERATURE-")) {
|
||||
try {
|
||||
double v = Double.parseDouble(bio.substring(12));
|
||||
if ((v >= 0) && (v <= 1.00)) {
|
||||
id = (int) (v * 63.0);
|
||||
istemp = true;
|
||||
}
|
||||
} catch (NumberFormatException nfx) {
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
id = Integer.parseInt(split[0]);
|
||||
state = DynmapBlockState.getStateByLegacyBlockID(id);
|
||||
}
|
||||
|
||||
Color[] c = new Color[5];
|
||||
|
||||
/* store colors by raycast sequence number */
|
||||
c[0] = new Color(Integer.parseInt(split[1]), Integer.parseInt(split[2]), Integer.parseInt(split[3]),
|
||||
Integer.parseInt(split[4]));
|
||||
c[3] = new Color(Integer.parseInt(split[5]), Integer.parseInt(split[6]), Integer.parseInt(split[7]),
|
||||
Integer.parseInt(split[8]));
|
||||
c[1] = new Color(Integer.parseInt(split[9]), Integer.parseInt(split[10]),
|
||||
Integer.parseInt(split[11]), Integer.parseInt(split[12]));
|
||||
c[2] = new Color(Integer.parseInt(split[13]), Integer.parseInt(split[14]),
|
||||
Integer.parseInt(split[15]), Integer.parseInt(split[16]));
|
||||
/* Blended color - for 'smooth' option on flat map */
|
||||
c[4] = new Color((c[1].getRed() + c[3].getRed()) / 2, (c[1].getGreen() + c[3].getGreen()) / 2,
|
||||
(c[1].getBlue() + c[3].getBlue()) / 2, (c[1].getAlpha() + c[3].getAlpha()) / 2);
|
||||
|
||||
if (isbiome) {
|
||||
if (istemp) {
|
||||
tempcolors[id] = c;
|
||||
} else if (israin) {
|
||||
raincolors[id] = c;
|
||||
} else if ((id >= 0) && (id < biomecolors.length))
|
||||
biomecolors[id] = c;
|
||||
} else if (state != null) {
|
||||
int stateid = state.globalStateIndex;
|
||||
colors[stateid] = c;
|
||||
}
|
||||
}
|
||||
scanner.close();
|
||||
}
|
||||
/* Last, push base color into any open slots in data colors list */
|
||||
for (int i = 0; i < colors.length; i++) {
|
||||
if (colors[i] == null) {
|
||||
DynmapBlockState bs = DynmapBlockState.getStateByGlobalIndex(i); // Get state
|
||||
DynmapBlockState bsbase = bs.baseState;
|
||||
if ((bsbase != null) && (colors[bsbase.globalStateIndex] != null)) {
|
||||
colors[i] = colors[bsbase.globalStateIndex];
|
||||
}
|
||||
}
|
||||
}
|
||||
/* And interpolate any missing rain and temperature colors */
|
||||
interpolateColorTable(tempcolors);
|
||||
interpolateColorTable(raincolors);
|
||||
} catch (RuntimeException e) {
|
||||
Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "').", e);
|
||||
return null;
|
||||
} catch (FileNotFoundException e) {
|
||||
Log.severe("Could not load colors '" + name + "' ('" + colorSchemeFile + "'): File not found.", e);
|
||||
}
|
||||
return new ColorScheme(name, colors, biomecolors, raincolors, tempcolors);
|
||||
}
|
||||
|
||||
public static void interpolateColorTable(Color[][] c) {
|
||||
int idx = -1;
|
||||
for (int k = 0; k < c.length; k++) {
|
||||
if (c[k] == null) { /* Missing? */
|
||||
if ((idx >= 0) && (k == (c.length - 1))) { /* We're last - so fill forward from last color */
|
||||
for (int kk = idx + 1; kk <= k; kk++) {
|
||||
c[kk] = c[idx];
|
||||
}
|
||||
}
|
||||
/* Skip - will backfill when we find next color */
|
||||
} else if (idx == -1) { /* No previous color, just backfill this color */
|
||||
for (int kk = 0; kk < k; kk++) {
|
||||
c[kk] = c[k];
|
||||
}
|
||||
idx = k; /* This is now last defined color */
|
||||
} else { /* Else, interpolate between last idx and this one */
|
||||
int cnt = c[k].length;
|
||||
for (int kk = idx + 1; kk < k; kk++) {
|
||||
double interp = (double) (kk - idx) / (double) (k - idx);
|
||||
Color[] cc = new Color[cnt];
|
||||
for (int jj = 0; jj < cnt; jj++) {
|
||||
cc[jj] = new Color((int) ((1.0 - interp) * c[idx][jj].getRed() + interp * c[k][jj].getRed()),
|
||||
(int) ((1.0 - interp) * c[idx][jj].getGreen() + interp * c[k][jj].getGreen()),
|
||||
(int) ((1.0 - interp) * c[idx][jj].getBlue() + interp * c[k][jj].getBlue()),
|
||||
(int) ((1.0 - interp) * c[idx][jj].getAlpha() + interp * c[k][jj].getAlpha()));
|
||||
}
|
||||
c[kk] = cc;
|
||||
}
|
||||
idx = k;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public Color[] getRainColor(double rain) {
|
||||
int idx = (int) (rain * 63.0);
|
||||
if ((idx >= 0) && (idx < raincolors.length))
|
||||
return raincolors[idx];
|
||||
else
|
||||
return null;
|
||||
}
|
||||
|
||||
public Color[] getTempColor(double temp) {
|
||||
int idx = (int) (temp * 63.0);
|
||||
if ((idx >= 0) && (idx < tempcolors.length))
|
||||
return tempcolors[idx];
|
||||
else
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void reset() {
|
||||
cache.clear();
|
||||
}
|
||||
}
|
||||
|
@ -681,11 +681,16 @@ public class DynmapCore implements DynmapCommonAPI {
|
||||
|
||||
if (configuration.getBoolean("dumpColorMaps", false)) {
|
||||
dumpColorMap("standard.txt", "standard");
|
||||
dumpColorMap("default.txt", "standard");
|
||||
dumpColorMap("dokudark.txt", "dokudark.zip");
|
||||
dumpColorMap("dokulight.txt", "dokulight.zip");
|
||||
dumpColorMap("dokuhigh.txt", "dokuhigh.zip");
|
||||
dumpColorMap("misa.txt", "misa.zip");
|
||||
dumpColorMap("sphax.txt", "sphax.zip");
|
||||
dumpColorMap("ovocean.txt", "ovocean.zip");
|
||||
dumpColorMap("flames.txt", "standard"); // No TP around for this
|
||||
dumpColorMap("sk89q.txt", "standard"); // No TP around for this
|
||||
dumpColorMap("amidst.txt", "standard"); // No TP around for this
|
||||
}
|
||||
|
||||
if (configuration.getBoolean("dumpBlockState", false)) {
|
||||
@ -722,7 +727,7 @@ public class DynmapCore implements DynmapCommonAPI {
|
||||
BlockStep.Y_PLUS.ordinal(), BlockStep.X_MINUS.ordinal(), BlockStep.Z_MINUS.ordinal() };
|
||||
FileWriter fw = null;
|
||||
try {
|
||||
fw = new FileWriter(id);
|
||||
fw = new FileWriter(new File(new File(getDataFolder(), "colorschemes"), id));
|
||||
TexturePack tp = TexturePack.getTexturePack(this, name);
|
||||
if (tp == null) return;
|
||||
tp = tp.resampleTexturePack(1);
|
||||
@ -745,13 +750,13 @@ public class DynmapCore implements DynmapCommonAPI {
|
||||
switch(idx) {
|
||||
case 1: // grass
|
||||
case 18: // grass
|
||||
Log.info("Used grass for " + blk);
|
||||
Log.verboseinfo("Used grass for " + blk);
|
||||
c.blendColor(tp.getTrivialGrassMultiplier() | 0xFF000000);
|
||||
break;
|
||||
case 2: // foliage
|
||||
case 19: // foliage
|
||||
case 22: // foliage
|
||||
Log.info("Used foliage for " + blk);
|
||||
Log.verboseinfo("Used foliage for " + blk);
|
||||
c.blendColor(tp.getTrivialFoliageMultiplier() | 0xFF000000);
|
||||
break;
|
||||
case 13: // pine
|
||||
@ -765,12 +770,12 @@ public class DynmapCore implements DynmapCommonAPI {
|
||||
break;
|
||||
case 3: // water
|
||||
case 20: // water
|
||||
Log.info("Used water for " + blk);
|
||||
Log.verboseinfo("Used water for " + blk);
|
||||
c.blendColor(tp.getTrivialWaterMultiplier() | 0xFF000000);
|
||||
break;
|
||||
case 12: // clear inside
|
||||
if (blk.isWater()) { // special case for water
|
||||
Log.info("Used water for " + blk);
|
||||
Log.verboseinfo("Used water for " + blk);
|
||||
c.blendColor(tp.getTrivialWaterMultiplier() | 0xFF000000);
|
||||
}
|
||||
break;
|
||||
@ -804,6 +809,7 @@ public class DynmapCore implements DynmapCommonAPI {
|
||||
} catch (IOException iox) {
|
||||
} finally {
|
||||
if (fw != null) { try { fw.close(); } catch (IOException x) {} }
|
||||
Log.info("Dumped RP=" + name + " to " + id);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -808,7 +808,12 @@ public class TexturePack {
|
||||
*/
|
||||
private void copySubimageFromImage(int img_id, int from_x, int from_y, int to_x, int to_y, int width, int height, int[] dest_argb, int dest_width) {
|
||||
for(int h = 0; h < height; h++) {
|
||||
System.arraycopy(imgs[img_id].argb, (h+from_y)*imgs[img_id].width + from_x, dest_argb, dest_width*(h+to_y) + to_x, width);
|
||||
try {
|
||||
System.arraycopy(imgs[img_id].argb, (h+from_y)*imgs[img_id].width + from_x, dest_argb, dest_width*(h+to_y) + to_x, width);
|
||||
} catch (ArrayIndexOutOfBoundsException aoobx) {
|
||||
Log.warning(String.format("Error copying subimage: img_id=%s, from=%d,%s, to=%d,%d, size=%d,%d, dest=%d,%d",
|
||||
imgs[img_id].fname, from_x, from_y, to_x, to_y, width, height, dest_width, dest_argb.length / dest_width));
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,108 @@
|
||||
Biome Mapping
|
||||
[OCEAN] 0 0 112 255 0 0 112 255 0 0 112 255 0 0 112 255
|
||||
[PLAINS] 141 179 96 255 141 179 96 255 141 179 96 255 141 179 96 255
|
||||
[DESERT] 250 148 24 255 250 148 24 255 250 148 24 255 250 148 24 255
|
||||
[EXTREME_HILLS] 96 96 96 255 96 96 96 255 96 96 96 255 96 96 96 255
|
||||
[FOREST] 5 102 33 255 5 102 33 255 5 102 33 255 5 102 33 255
|
||||
[TAIGA] 11 102 89 255 11 102 89 255 11 102 89 255 11 102 89 255
|
||||
[SWAMPLAND] 7 249 178 255 7 249 178 255 7 249 178 255 7 249 178 255
|
||||
[RIVER] 0 0 255 255 0 0 255 255 0 0 255 255 0 0 255 255
|
||||
[HELL] 191 59 59 255 191 59 59 255 191 59 59 255 191 59 59 255
|
||||
[SKY] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255
|
||||
[FROZEN_OCEAN] 112 112 214 255 112 112 214 255 112 112 214 255 112 112 214 255
|
||||
[FROZEN_RIVER] 160 160 255 255 160 160 255 255 160 160 255 255 160 160 255 255
|
||||
[ICE_PLAINS] 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255
|
||||
[ICE_MOUNTAINS] 160 160 160 255 160 160 160 255 160 160 160 255 160 160 160 255
|
||||
[MUSHROOM_ISLAND] 255 0 255 255 255 0 255 255 255 0 255 255 255 0 255 255
|
||||
[MUSHROOM_SHORE] 160 0 255 255 160 0 255 255 160 0 255 255 160 0 255 255
|
||||
[BEACH] 250 222 85 255 250 222 85 255 250 222 85 255 250 222 85 255
|
||||
[DESERT_HILLS] 210 95 18 255 210 95 18 255 210 95 18 255 210 95 18 255
|
||||
[FOREST_HILLS] 34 85 28 255 34 85 28 255 34 85 28 255 34 85 28 255
|
||||
[TAIGA_HILLS] 22 57 51 255 22 57 51 255 22 57 51 255 22 57 51 255
|
||||
[SMALL_MOUNTAINS] 114 120 154 255 114 120 154 255 114 120 154 255 114 120 154 255
|
||||
[JUNGLE] 83 123 9 255 83 123 9 255 83 123 9 255 83 123 9 255
|
||||
[JUNGLE_HILLS] 44 66 5 255 44 66 5 255 44 66 5 255 44 66 5 255
|
||||
[JUNGLE_EDGE] 98 139 23 255 98 139 23 255 98 139 23 255 98 139 23 255
|
||||
[DEEP_OCEAN] 0 0 48 255 0 0 48 255 0 0 48 255 0 0 48 255
|
||||
[STONE_BEACH] 162 162 132 255 162 162 132 255 162 162 132 255 162 162 132 255
|
||||
[COLD_BEACH] 250 240 192 255 250 240 192 255 250 240 192 255 250 240 192 255
|
||||
[BIRCH_FOREST] 48 116 68 255 48 116 68 255 48 116 68 255 48 116 68 255
|
||||
[BIRCH_FOREST_HILLS] 31 95 50 255 31 95 50 255 31 95 50 255 31 95 50 255
|
||||
[ROOFED_FOREST] 64 81 26 255 64 81 26 255 64 81 26 255 64 81 26 255
|
||||
[COLD_TAIGA] 49 85 74 255 49 85 74 255 49 85 74 255 49 85 74 255
|
||||
[COLD_TAIGA_HILLS] 36 63 54 255 36 63 54 255 36 63 54 255 36 63 54 255
|
||||
[MEGA_TAIGA] 89 102 81 255 89 102 81 255 89 102 81 255 89 102 81 255
|
||||
[MEGA_TAIGA_HILLS] 69 79 62 255 69 79 62 255 69 79 62 255 69 79 62 255
|
||||
[EXTREME_HILLS_PLUS] 80 112 80 255 80 112 80 255 80 112 80 255 80 112 80 255
|
||||
[SAVANNA] 189 178 95 255 189 178 95 255 189 178 95 255 189 178 95 255
|
||||
[SAVANNA_PLATEAU] 167 157 100 255 167 157 100 255 167 157 100 255 167 157 100 255
|
||||
[MESA] 217 69 21 255 217 69 21 255 217 69 21 255 217 69 21 255
|
||||
[MESA_PLATEAU_FOREST] 176 151 101 255 176 151 101 255 176 151 101 255 176 151 101 255
|
||||
[MESA_PLATEAU] 202 140 101 255 202 140 101 255 202 140 101 255 202 140 101 255
|
||||
[SMALL_END_ISLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255
|
||||
[END_MIDLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255
|
||||
[END_HIGHLANDS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255
|
||||
[END_BARRENS] 128 128 255 255 128 128 255 255 128 128 255 255 128 128 255 255
|
||||
[WARM_OCEAN] 0 0 172 255 0 0 172 255 0 0 172 255 0 0 172 255
|
||||
[LUKEWARM_OCEAN] 0 0 144 255 0 0 144 255 0 0 144 255 0 0 144 255
|
||||
[COLD_OCEAN] 32 32 112 255 32 32 112 255 32 32 112 255 32 32 112 255
|
||||
[DEEP_WARM_OCEAN] 0 0 80 255 0 0 80 255 0 0 80 255 0 0 80 255
|
||||
[DEEP_LUKEWARM_OCEAN] 0 0 64 255 0 0 64 255 0 0 64 255 0 0 64 255
|
||||
[DEEP_COLD_OCEAN] 32 32 56 255 32 32 56 255 32 32 56 255 32 32 56 255
|
||||
[DEEP_FROZEN_OCEAN] 64 64 144 255 64 64 144 255 64 64 144 255 64 64 144 255
|
||||
[THE_VOID] 0 0 0 255 0 0 0 255 0 0 0 255 0 0 0 255
|
||||
[SUNFLOWER_PLAINS] 181 219 136 255 181 219 136 255 181 219 136 255 181 219 136 255
|
||||
[DESERT_MOUNTAINS] 255 188 64 255 255 188 64 255 255 188 64 255 255 188 64 255
|
||||
[EXTREME_HILLS_MOUNTAINS] 136 136 136 255 136 136 136 255 136 136 136 255 136 136 136 255
|
||||
[FLOWER_FOREST] 45 142 73 255 45 142 73 255 45 142 73 255 45 142 73 255
|
||||
[TAIGA_MOUNTAINS] 51 142 129 255 51 142 129 255 51 142 129 255 51 142 129 255
|
||||
[SWAMPLAND_MOUNTAINS] 47 255 218 255 47 255 218 255 47 255 218 255 47 255 218 255
|
||||
[ICE_PLAINS_SPIKES] 180 220 220 255 180 220 220 255 180 220 220 255 180 220 220 255
|
||||
[JUNGLE_MOUNTAINS] 123 163 49 255 123 163 49 255 123 163 49 255 123 163 49 255
|
||||
[JUNGLE_EDGE_MOUNTAINS] 138 179 63 255 138 179 63 255 138 179 63 255 138 179 63 255
|
||||
[BIRCH_FOREST_MOUNTAINS] 88 156 108 255 88 156 108 255 88 156 108 255 88 156 108 255
|
||||
[BIRCH_FOREST_HILLS_MOUNTAINS] 71 135 90 255 71 135 90 255 71 135 90 255 71 135 90 255
|
||||
[ROOFED_FOREST_MOUNTAINS] 104 121 66 255 104 121 66 255 104 121 66 255 104 121 66 255
|
||||
[COLD_TAIGA_MOUNTAINS] 89 125 114 255 89 125 114 255 89 125 114 255 89 125 114 255
|
||||
[MEGA_SPRUCE_TAIGA] 129 142 121 255 129 142 121 255 129 142 121 255 129 142 121 255
|
||||
[MEGA_SPRUCE_TAIGA_HILLS] 109 119 102 255 109 119 102 255 109 119 102 255 109 119 102 255
|
||||
[EXTREME_HILLS_PLUS_MOUNTAINS] 120 152 120 255 120 152 120 255 120 152 120 255 120 152 120 255
|
||||
[SAVANNA_MOUNTAINS] 229 218 135 255 229 218 135 255 229 218 135 255 229 218 135 255
|
||||
[SAVANNA_PLATEAU_MOUNTAINS] 207 197 140 255 207 197 140 255 207 197 140 255 207 197 140 255
|
||||
[MESA_BRYCE] 255 109 61 255 255 109 61 255 255 109 61 255 255 109 61 255
|
||||
[MESA_PLATEAU_FOREST_MOUNTAINS] 216 191 141 255 216 191 141 255 216 191 141 255 216 191 141 255
|
||||
[MESA_PLATEAU_MOUNTAINS] 242 180 141 255 242 180 141 255 242 180 141 255 242 180 141 255
|
||||
[BEACH_MOUNTAINS] 255 255 125 255 255 255 125 255 255 255 125 255 255 255 125 255
|
||||
[COLD_BEACH_MOUNTAINS] 255 255 232 255 255 255 232 255 255 255 232 255 255 255 232 255
|
||||
[COLD_TAIGA_HILLS_MOUNTAINS] 76 103 94 255 76 103 94 255 76 103 94 255 76 103 94 255
|
||||
[DEEP_OCEAN_MOUNTAINS] 40 40 88 255 40 40 88 255 40 40 88 255 40 40 88 255
|
||||
[DESERT_HILLS_MOUNTAINS] 250 135 58 255 250 135 58 255 250 135 58 255 250 135 58 255
|
||||
[EXTREME_HILLS_EDGE_MOUNTAINS] 154 160 194 255 154 160 194 255 154 160 194 255 154 160 194 255
|
||||
[FOREST_HILLS_MOUNTAINS] 74 125 68 255 74 125 68 255 74 125 68 255 74 125 68 255
|
||||
[FROZEN_OCEAN_MOUNTAINS] 184 184 200 255 184 184 200 255 184 184 200 255 184 184 200 255
|
||||
[FROZEN_RIVER_MOUNTAINS] 200 200 255 255 200 200 255 255 200 200 255 255 200 200 255 255
|
||||
[HELL_MOUNTAINS] 255 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255
|
||||
[ICE_MOUNTAINS_MOUNTAINS] 200 200 200 255 200 200 200 255 200 200 200 255 200 200 200 255
|
||||
[JUNGLE_HILLS_MOUNTAINS] 84 106 45 255 84 106 45 255 84 106 45 255 84 106 45 255
|
||||
[MUSHROOM_ISLAND_MOUNTAINS] 255 40 255 255 255 40 255 255 255 40 255 255 255 40 255 255
|
||||
[MUSHROOM_SHORE_MOUNTAINS] 200 40 255 255 200 40 255 255 200 40 255 255 200 40 255 255
|
||||
[OCEAN_MOUNTAINS] 40 40 152 255 40 40 152 255 40 40 152 255 40 40 152 255
|
||||
[RIVER_MOUNTAINS] 40 40 255 255 40 40 255 255 40 40 255 255 40 40 255 255
|
||||
[SKY_MOUNTAINS] 168 168 255 255 168 168 255 255 168 168 255 255 168 168 255 255
|
||||
[STONE_BEACH_MOUNTAINS] 202 202 172 255 202 202 172 255 202 202 172 255 202 202 172 255
|
||||
[TAIGA_HILLS_MOUNTAINS] 62 97 91 255 62 97 91 255 62 97 91 255 62 97 91 255
|
||||
[BAMBOO_JUNGLE] 118 142 20 255 118 142 20 255 118 142 20 255 118 142 20 255
|
||||
[BAMBOO_JUNGLE_HILLS] 59 71 10 255 59 71 10 255 59 71 10 255 59 71 10 255
|
||||
[SOUL_SAND_VALLEY] 82 41 33 255 82 41 33 255 82 41 33 255 82 41 33 255
|
||||
[CRIMSON_FOREST] 221 8 8 255 221 8 8 255 221 8 8 255 221 8 8 255
|
||||
[WARPED_FOREST] 73 144 123 255 73 144 123 255 73 144 123 255 73 144 123 255
|
||||
[BASALT_DELTAS] 64 54 54 255 64 54 54 255 64 54 54 255 64 54 54 255
|
||||
Rainfall/Temperature Mapping
|
||||
[RAINFALL-0.0] 120 120 120 255 96 96 96 255 60 60 60 255 48 48 48 255
|
||||
[RAINFALL-1.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255
|
||||
[TEMPERATURE-0.0] 38 92 255 255 30 73 204 255 19 46 127 255 15 36 102 255
|
||||
[TEMPERATURE-0.5] 91 121 185 255 73 96 147 255 46 61 92 255 36 48 73 255
|
||||
[TEMPERATURE-0.8] 51 165 42 255 41 131 33 255 26 82 21 255 20 65 17 255
|
||||
[TEMPERATURE-0.9] 170 158 24 255 135 126 19 255 85 79 12 255 67 62 10 255
|
||||
[TEMPERATURE-0.95] 204 111 48 255 162 89 38 255 102 56 24 255 81 44 19 255
|
||||
[TEMPERATURE-1.0] 143 39 36 255 114 31 28 255 71 20 18
|
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46
|
||||
minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109
|
||||
minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109
|
||||
minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 12
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:sticky_piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104
|
||||
minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139
|
||||
minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77
|
||||
minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76
|
||||
minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72
|
||||
minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141
|
||||
minecraft:piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255
|
||||
minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255
|
||||
minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255
|
||||
@ -5065,14 +5080,14 @@ minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 1
|
||||
minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155
|
||||
minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155
|
||||
minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255
|
||||
minecraft:end_portal_frame 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255
|
||||
minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255
|
||||
@ -14684,14 +14699,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:lantern 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:soul_lantern 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
@ -15553,15 +15568,15 @@ minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13
|
||||
minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:composter 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=1] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=2] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=3] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=4] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=5] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=6] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=7] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=8] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
|
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 71 71 51 82 56 56 40 82 35 35 25 82 28 28 20 8
|
||||
minecraft:dark_oak_sapling 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121
|
||||
minecraft:dark_oak_sapling[stage=1] 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121
|
||||
minecraft:bedrock 37 36 35 255 29 28 28 255 18 18 17 255 14 14 14 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=1] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=2] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=3] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=4] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=5] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=6] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=7] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=8] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=9] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=10] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=11] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=12] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=13] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=14] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:water[level=15] 77 193 124 144 61 154 99 144 38 96 62 144 30 77 49 144
|
||||
minecraft:lava 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
minecraft:lava[level=1] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
minecraft:lava[level=2] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 76
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 76 76 62 232 60 60 49 232 38 38 31 232 30 30 24 232
|
||||
minecraft:sticky_piston 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:sticky_piston 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:cobweb 191 193 197 76 152 154 157 76 95 96 98 76 76 77 78 76
|
||||
minecraft:grass 64 91 46 72 51 72 36 72 32 45 23 72 25 36 18 72
|
||||
minecraft:fern 43 61 30 126 34 48 24 126 21 30 15 126 17 24 12 126
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 65 61 43 121 52 48 34 121 32 30 21 121 26 24 17 121
|
||||
minecraft:seagrass 20 32 10 16 16 25 8 16 10 16 5 16 8 12 4 16
|
||||
minecraft:tall_seagrass 22 34 10 62 17 27 8 62 11 17 5 62 8 13 4 62
|
||||
minecraft:tall_seagrass[half=lower] 21 33 10 99 16 26 8 99 10 16 5 99 8 13 4 99
|
||||
minecraft:piston 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=true,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=true,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=true,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=true,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=true,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=north] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=east] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=south] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=west] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=up] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston[extended=false,facing=down] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 85 92 82 255 68 73 65 255 42 46 41 255 34 36 32 255
|
||||
minecraft:piston 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=true,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=true,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=true,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=true,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=true,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=north] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=east] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=south] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=west] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=up] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston[extended=false,facing=down] 68 70 58 15 54 56 46 15 34 35 29 15 27 28 23 15
|
||||
minecraft:piston_head 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 63 62 48 47 50 49 38 47 31 31 24 47 25 24 19 47
|
||||
minecraft:white_wool 186 181 172 255 148 144 137 255 93 90 86 255 74 72 68 255
|
||||
minecraft:orange_wool 183 98 80 255 146 78 64 255 91 49 40 255 73 39 32 255
|
||||
minecraft:magenta_wool 129 78 131 255 103 62 104 255 64 39 65 255 51 31 52 255
|
||||
@ -5059,14 +5074,14 @@ minecraft:powder_snow_cauldron 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 1
|
||||
minecraft:powder_snow_cauldron[level=2] 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 111
|
||||
minecraft:powder_snow_cauldron[level=3] 79 83 74 111 63 66 59 111 39 41 37 111 31 33 29 111
|
||||
minecraft:end_portal 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255
|
||||
minecraft:end_portal_frame 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 52 57 46 255 41 45 36 255 26 28 23 255 20 22 18 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 67 76 61 95 53 60 48 95 33 38 30 95 26 30 24 95
|
||||
minecraft:end_portal_frame 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:end_stone 133 127 101 255 106 101 80 255 66 63 50 255 53 50 40 255
|
||||
minecraft:dragon_egg 37 37 41 255 29 29 32 255 18 18 20 255 14 14 16 255
|
||||
minecraft:redstone_lamp 92 118 78 255 73 94 62 255 46 59 39 255 36 47 31 255
|
||||
@ -14678,14 +14693,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 169 143 96 57 13
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 169 143 96 57 135 114 76 57 84 71 48 57 67 57 38 57
|
||||
minecraft:lantern 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 48 58 42 52 38 46 33 52 24 29 21 52 19 23 16 52
|
||||
minecraft:soul_lantern 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 50 39 43 52 40 31 34 52 25 19 21 52 20 15 17 52
|
||||
minecraft:lantern 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 77 111 73 11 61 88 58 11 38 55 36 11 30 44 29 11
|
||||
minecraft:soul_lantern 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 80 51 77 11 64 40 61 11 40 25 38 11 32 20 30 11
|
||||
minecraft:campfire 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 35 34 33 207 28 27 26 207 17 17 16 207 14 13 13 207
|
||||
@ -15547,15 +15562,15 @@ minecraft:jigsaw[orientation=west_up] 62 63 42 255 49 50 33 255 31 31 21 255 24
|
||||
minecraft:jigsaw[orientation=east_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255
|
||||
minecraft:jigsaw[orientation=north_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255
|
||||
minecraft:jigsaw[orientation=south_up] 62 63 42 255 49 50 33 255 31 31 21 255 24 25 16 255
|
||||
minecraft:composter 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=1] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=2] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=3] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=4] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=5] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=6] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=7] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter[level=8] 48 46 35 111 38 36 28 111 24 23 17 111 19 18 14 111
|
||||
minecraft:composter 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=1] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=2] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=3] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=4] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=5] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=6] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=7] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=8] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:target 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255
|
||||
minecraft:target[power=1] 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255
|
||||
minecraft:target[power=2] 130 102 86 255 104 81 68 255 65 51 43 255 52 40 34 255
|
||||
|
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 75 76 25 81 60 60 20 81 37 38 12 81 30 30 10 8
|
||||
minecraft:dark_oak_sapling 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121
|
||||
minecraft:dark_oak_sapling[stage=1] 37 40 30 121 29 32 24 121 18 20 15 121 14 16 12 121
|
||||
minecraft:bedrock 38 39 42 255 30 31 33 255 19 19 21 255 15 15 16 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=1] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=2] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=3] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=4] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=5] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=6] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=7] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=8] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=9] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=10] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=11] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=12] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=13] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=14] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:water[level=15] 118 240 223 144 94 192 178 144 59 120 111 144 47 96 89 144
|
||||
minecraft:lava 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
minecraft:lava[level=1] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
minecraft:lava[level=2] 125 24 10 255 100 19 8 255 62 12 5 255 50 9 4 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 10
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 106 98 83 232 84 78 66 232 53 49 41 232 42 39 33 232
|
||||
minecraft:sticky_piston 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:sticky_piston 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:cobweb 193 201 209 74 154 160 167 74 96 100 104 74 77 80 83 74
|
||||
minecraft:grass 21 60 32 64 16 48 25 64 10 30 16 64 8 24 12 64
|
||||
minecraft:fern 22 63 34 126 17 50 27 126 11 31 17 126 8 25 13 126
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 83 101 87 124 66 80 69 124 41 50 43 124 33 40 34 124
|
||||
minecraft:seagrass 7 52 19 67 5 41 15 67 3 26 9 67 2 20 7 67
|
||||
minecraft:tall_seagrass 7 55 20 62 5 44 16 62 3 27 10 62 2 22 8 62
|
||||
minecraft:tall_seagrass[half=lower] 7 53 19 99 5 42 15 99 3 26 9 99 2 21 7 99
|
||||
minecraft:piston 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=true,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=true,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=true,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=true,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=true,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=north] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=east] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=south] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=west] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=up] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston[extended=false,facing=down] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 152 163 151 255 121 130 120 255 76 81 75 255 60 65 60 255
|
||||
minecraft:piston 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=true,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=true,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=true,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=true,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=true,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=north] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=east] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=south] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=west] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=up] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston[extended=false,facing=down] 90 77 52 15 72 61 41 15 45 38 26 15 36 30 20 15
|
||||
minecraft:piston_head 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 72 62 47 47 57 49 37 47 36 31 23 47 28 24 18 47
|
||||
minecraft:white_wool 222 224 221 255 177 179 176 255 111 112 110 255 88 89 88 255
|
||||
minecraft:orange_wool 225 120 68 255 180 96 54 255 112 60 34 255 90 48 27 255
|
||||
minecraft:magenta_wool 177 100 205 255 141 80 164 255 88 50 102 255 70 40 82 255
|
||||
@ -5059,14 +5074,14 @@ minecraft:powder_snow_cauldron 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 1
|
||||
minecraft:powder_snow_cauldron[level=2] 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 111
|
||||
minecraft:powder_snow_cauldron[level=3] 94 94 72 111 75 75 57 111 47 47 36 111 37 37 28 111
|
||||
minecraft:end_portal 0 0 63 255 0 0 50 255 0 0 31 255 0 0 25 255
|
||||
minecraft:end_portal_frame 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 93 92 75 255 74 73 60 255 46 46 37 255 37 36 30 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 112 116 88 96 89 92 70 96 56 58 44 96 44 46 35 96
|
||||
minecraft:end_portal_frame 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:end_stone 202 200 184 255 161 160 147 255 101 100 92 255 80 80 73 255
|
||||
minecraft:dragon_egg 37 37 41 255 29 29 32 255 18 18 20 255 14 14 16 255
|
||||
minecraft:redstone_lamp 117 133 125 255 93 106 100 255 58 66 62 255 46 53 50 255
|
||||
@ -14678,14 +14693,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 189 159 79 57 15
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 189 159 79 57 151 127 63 57 94 79 39 57 75 63 31 57
|
||||
minecraft:lantern 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 129 116 80 52 103 92 64 52 64 58 40 52 51 46 32 52
|
||||
minecraft:soul_lantern 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 121 88 51 52 96 70 40 52 60 44 25 52 48 35 20 52
|
||||
minecraft:lantern 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 133 148 132 11 106 118 105 11 66 74 66 11 53 59 52 11
|
||||
minecraft:soul_lantern 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 152 92 63 11 121 73 50 11 76 46 31 11 60 36 25 11
|
||||
minecraft:campfire 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 43 42 41 207 34 33 32 207 21 21 20 207 17 16 16 207
|
||||
@ -15547,15 +15562,15 @@ minecraft:jigsaw[orientation=west_up] 106 93 67 255 84 74 53 255 53 46 33 255 42
|
||||
minecraft:jigsaw[orientation=east_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255
|
||||
minecraft:jigsaw[orientation=north_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255
|
||||
minecraft:jigsaw[orientation=south_up] 106 93 67 255 84 74 53 255 53 46 33 255 42 37 26 255
|
||||
minecraft:composter 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=1] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=2] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=3] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=4] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=5] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=6] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=7] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter[level=8] 55 48 42 111 44 38 33 111 27 24 21 111 22 19 16 111
|
||||
minecraft:composter 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=1] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=2] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=3] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=4] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=5] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=6] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=7] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:composter[level=8] 56 51 33 143 44 40 26 143 28 25 16 143 22 20 13 143
|
||||
minecraft:target 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255
|
||||
minecraft:target[power=1] 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255
|
||||
minecraft:target[power=2] 149 118 91 255 119 94 72 255 74 59 45 255 59 47 36 255
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 88 93 51 64 70 74 40 64 44 46 25 64 35 37 20 6
|
||||
minecraft:dark_oak_sapling 40 45 32 110 32 36 25 110 20 22 16 110 16 18 12 110
|
||||
minecraft:dark_oak_sapling[stage=1] 40 45 32 110 32 36 25 110 20 22 16 110 16 18 12 110
|
||||
minecraft:bedrock 65 60 56 255 52 48 44 255 32 30 28 255 26 24 22 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=1] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=2] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=3] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=4] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=5] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=6] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=7] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=8] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=9] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=10] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=11] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=12] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=13] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=14] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:water[level=15] 154 154 154 218 123 123 123 218 77 77 77 218 61 61 61 218
|
||||
minecraft:lava 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255
|
||||
minecraft:lava[level=1] 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255
|
||||
minecraft:lava[level=2] 200 63 39 255 160 50 31 255 100 31 19 255 80 25 15 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 75
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 75 74 73 160 60 59 58 160 37 37 36 160 30 29 29 160
|
||||
minecraft:sticky_piston 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:sticky_piston 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:cobweb 170 162 169 44 136 129 135 44 85 81 84 44 68 64 67 44
|
||||
minecraft:grass 53 72 32 116 42 57 25 116 26 36 16 116 21 28 12 116
|
||||
minecraft:fern 44 64 32 88 35 51 25 88 22 32 16 88 17 25 12 88
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 96 81 66 69 76 64 52 69 48 40 33 69 38 32 26 69
|
||||
minecraft:seagrass 20 37 12 69 16 29 9 69 10 18 6 69 8 14 4 69
|
||||
minecraft:tall_seagrass 11 35 10 41 8 28 8 41 5 17 5 41 4 14 4 41
|
||||
minecraft:tall_seagrass[half=lower] 17 34 11 132 13 27 8 132 8 17 5 132 6 13 4 132
|
||||
minecraft:piston 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=true,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=true,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=true,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=true,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=true,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=north] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=east] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=south] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=west] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=up] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston[extended=false,facing=down] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 77 67 64 255 61 53 51 255 38 33 32 255 30 26 25 255
|
||||
minecraft:piston 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=true,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=true,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=true,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=true,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=true,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=north] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=east] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=south] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=west] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=up] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston[extended=false,facing=down] 95 86 83 15 76 68 66 15 47 43 41 15 38 34 33 15
|
||||
minecraft:piston_head 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 95 86 83 47 76 68 66 47 47 43 41 47 38 34 33 47
|
||||
minecraft:white_wool 215 212 209 255 172 169 167 255 107 106 104 255 86 84 83 255
|
||||
minecraft:orange_wool 175 104 51 255 140 83 40 255 87 52 25 255 70 41 20 255
|
||||
minecraft:magenta_wool 156 87 129 255 124 69 103 255 78 43 64 255 62 34 51 255
|
||||
@ -3665,10 +3680,10 @@ minecraft:acacia_pressure_plate 134 72 49 255 107 57 39 255 67 36 24 255 53 28 1
|
||||
minecraft:acacia_pressure_plate[powered=false] 134 72 49 255 107 57 39 255 67 36 24 255 53 28 19 255
|
||||
minecraft:dark_oak_pressure_plate 54 41 31 255 43 32 24 255 27 20 15 255 21 16 12 255
|
||||
minecraft:dark_oak_pressure_plate[powered=false] 54 41 31 255 43 32 24 255 27 20 15 255 21 16 12 255
|
||||
minecraft:redstone_ore 108 74 75 255 86 59 60 255 54 37 37 255 43 29 30 255
|
||||
minecraft:redstone_ore[lit=false] 108 74 75 255 86 59 60 255 54 37 37 255 43 29 30 255
|
||||
minecraft:deepslate_redstone_ore 77 51 52 255 61 40 41 255 38 25 26 255 30 20 20 255
|
||||
minecraft:deepslate_redstone_ore[lit=false] 77 51 52 255 61 40 41 255 38 25 26 255 30 20 20 255
|
||||
minecraft:redstone_ore 114 75 75 255 91 60 60 255 57 37 37 255 45 30 30 255
|
||||
minecraft:redstone_ore[lit=false] 114 75 75 255 91 60 60 255 57 37 37 255 45 30 30 255
|
||||
minecraft:deepslate_redstone_ore 85 52 52 255 68 41 41 255 42 26 26 255 34 20 20 255
|
||||
minecraft:deepslate_redstone_ore[lit=false] 85 52 52 255 68 41 41 255 42 26 26 255 34 20 20 255
|
||||
minecraft:redstone_torch 111 22 13 24 88 17 10 24 55 11 6 24 44 8 5 24
|
||||
minecraft:redstone_torch[lit=false] 51 22 13 24 40 17 10 24 25 11 6 24 20 8 5 24
|
||||
minecraft:redstone_wall_torch 111 22 13 24 88 17 10 24 55 11 6 24 44 8 5 24
|
||||
@ -5064,14 +5079,14 @@ minecraft:powder_snow_cauldron 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 1
|
||||
minecraft:powder_snow_cauldron[level=2] 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 111
|
||||
minecraft:powder_snow_cauldron[level=3] 39 36 36 111 31 28 28 111 19 18 18 111 15 14 14 111
|
||||
minecraft:end_portal 45 56 50 255 36 44 40 255 22 28 25 255 18 22 20 255
|
||||
minecraft:end_portal_frame 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 45 47 50 255 36 37 40 255 22 23 25 255 18 18 20 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 102 121 109 95 81 96 87 95 51 60 54 95 40 48 43 95
|
||||
minecraft:end_portal_frame 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:end_stone 163 157 141 255 130 125 112 255 81 78 70 255 65 62 56 255
|
||||
minecraft:dragon_egg 69 61 67 255 55 48 53 255 34 30 33 255 27 24 26 255
|
||||
minecraft:redstone_lamp 124 108 72 255 99 86 57 255 62 54 36 255 49 43 28 255
|
||||
@ -14683,14 +14698,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:lantern 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 101 90 64 46 80 72 51 46 50 45 32 46 40 36 25 46
|
||||
minecraft:soul_lantern 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 45 77 135 37 36 61 108 37 22 38 67 37 18 30 54 37
|
||||
minecraft:lantern 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 153 128 84 10 122 102 67 10 76 64 42 10 61 51 33 10
|
||||
minecraft:soul_lantern 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 45 67 118 8 36 53 94 8 22 33 59 8 18 26 47 8
|
||||
minecraft:campfire 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 57 58 62 207 45 46 49 207 28 29 31 207 22 23 24 207
|
||||
@ -15526,15 +15541,15 @@ minecraft:jigsaw[orientation=west_up] 58 58 65 255 46 46 52 255 29 29 32 255 23
|
||||
minecraft:jigsaw[orientation=east_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255
|
||||
minecraft:jigsaw[orientation=north_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255
|
||||
minecraft:jigsaw[orientation=south_up] 58 58 65 255 46 46 52 255 29 29 32 255 23 23 26 255
|
||||
minecraft:composter 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=1] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=2] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=3] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=4] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=5] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=6] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=7] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter[level=8] 123 86 61 111 98 68 48 111 61 43 30 111 49 34 24 111
|
||||
minecraft:composter 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=1] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=2] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=3] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=4] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=5] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=6] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=7] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:composter[level=8] 79 53 35 143 63 42 28 143 39 26 17 143 31 21 14 143
|
||||
minecraft:target 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255
|
||||
minecraft:target[power=1] 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255
|
||||
minecraft:target[power=2] 165 124 106 255 132 99 84 255 82 62 53 255 66 49 42 255
|
||||
@ -17961,27 +17976,27 @@ minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=true] 155 93 70 255 124
|
||||
minecraft:waxed_cut_copper_slab[type=bottom,waterlogged=false] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255
|
||||
minecraft:waxed_cut_copper_slab[type=double,waterlogged=true] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255
|
||||
minecraft:waxed_cut_copper_slab[type=double,waterlogged=false] 155 93 70 255 124 74 56 255 77 46 35 255 62 37 28 255
|
||||
minecraft:pointed_dripstone 136 106 56 73 108 84 44 73 68 53 28 73 54 42 22 73
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 136 106 56 73 108 84 44 73 68 53 28 73 54 42 22 73
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 153 123 76 56 122 98 60 56 76 61 38 56 61 49 30 56
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 153 123 76 56 122 98 60 56 76 61 38 56 61 49 30 56
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 139 108 58 37 111 86 46 37 69 54 29 37 55 43 23 37
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 139 108 58 37 111 86 46 37 69 54 29 37 55 43 23 37
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 152 122 75 31 121 97 60 31 76 61 37 31 60 48 30 31
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 152 122 75 31 121 97 60 31 76 61 37 31 60 48 30 31
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 151 121 71 119 120 96 56 119 75 60 35 119 60 48 28 119
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 151 121 71 119 120 96 56 119 75 60 35 119 60 48 28 119
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 145 115 67 129 116 92 53 129 72 57 33 129 58 46 26 129
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 145 115 67 129 116 92 53 129 72 57 33 129 58 46 26 129
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 147 118 71 158 117 94 56 158 73 59 35 158 58 47 28 158
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 147 118 71 158 117 94 56 158 73 59 35 158 58 47 28 158
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 166 136 87 160 132 108 69 160 83 68 43 160 66 54 34 160
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 166 136 87 160 132 108 69 160 83 68 43 160 66 54 34 160
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 156 127 79 222 124 101 63 222 78 63 39 222 62 50 31 222
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 156 127 79 222 124 101 63 222 78 63 39 222 62 50 31 222
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 166 138 93 206 132 110 74 206 83 69 46 206 66 55 37 206
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 166 138 93 206 132 110 74 206 83 69 46 206 66 55 37 206
|
||||
minecraft:dripstone_block 176 145 89 255 140 116 71 255 88 72 44 255 70 58 35 255
|
||||
minecraft:pointed_dripstone 114 91 60 73 91 72 48 73 57 45 30 73 45 36 24 73
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false] 114 91 60 73 91 72 48 73 57 45 30 73 45 36 24 73
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true] 132 109 78 56 105 87 62 56 66 54 39 56 52 43 31 56
|
||||
minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=false] 132 109 78 56 105 87 62 56 66 54 39 56 52 43 31 56
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=true] 117 94 62 37 93 75 49 37 58 47 31 37 46 37 24 37
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=up,waterlogged=false] 117 94 62 37 93 75 49 37 58 47 31 37 46 37 24 37
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=true] 130 107 77 31 104 85 61 31 65 53 38 31 52 42 30 31
|
||||
minecraft:pointed_dripstone[thickness=tip,vertical_direction=down,waterlogged=false] 130 107 77 31 104 85 61 31 65 53 38 31 52 42 30 31
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=true] 129 106 74 119 103 84 59 119 64 53 37 119 51 42 29 119
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=up,waterlogged=false] 129 106 74 119 103 84 59 119 64 53 37 119 51 42 29 119
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=true] 123 100 70 129 98 80 56 129 61 50 35 129 49 40 28 129
|
||||
minecraft:pointed_dripstone[thickness=frustum,vertical_direction=down,waterlogged=false] 123 100 70 129 98 80 56 129 61 50 35 129 49 40 28 129
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=true] 126 103 73 158 100 82 58 158 63 51 36 158 50 41 29 158
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=up,waterlogged=false] 126 103 73 158 100 82 58 158 63 51 36 158 50 41 29 158
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=true] 145 121 89 160 116 96 71 160 72 60 44 160 58 48 35 160
|
||||
minecraft:pointed_dripstone[thickness=middle,vertical_direction=down,waterlogged=false] 145 121 89 160 116 96 71 160 72 60 44 160 58 48 35 160
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=true] 134 112 81 223 107 89 64 223 67 56 40 223 53 44 32 223
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=up,waterlogged=false] 134 112 81 223 107 89 64 223 67 56 40 223 53 44 32 223
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=true] 146 123 93 206 116 98 74 206 73 61 46 206 58 49 37 206
|
||||
minecraft:pointed_dripstone[thickness=base,vertical_direction=down,waterlogged=false] 146 123 93 206 116 98 74 206 73 61 46 206 58 49 37 206
|
||||
minecraft:dripstone_block 109 89 65 255 87 71 52 255 54 44 32 255 43 35 26 255
|
||||
minecraft:cave_vines 123 116 25 106 98 92 20 106 61 58 12 106 49 46 10 106
|
||||
minecraft:cave_vines[age=0,berries=false] 67 82 29 93 53 65 23 93 33 41 14 93 26 32 11 93
|
||||
minecraft:cave_vines[age=1,berries=true] 123 116 25 106 98 92 20 106 61 58 12 106 49 46 10 106
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 70 79 16 91 56 63 12 91 35 39 8 91 28 31 6 91
|
||||
minecraft:dark_oak_sapling 47 70 18 102 37 56 14 102 23 35 9 102 18 28 7 102
|
||||
minecraft:dark_oak_sapling[stage=1] 47 70 18 102 37 56 14 102 23 35 9 102 18 28 7 102
|
||||
minecraft:bedrock 22 23 24 255 17 18 19 255 11 11 12 255 8 9 9 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=1] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=2] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=3] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=4] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=5] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=6] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=7] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=8] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=9] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=10] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=11] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=12] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=13] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=14] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:water[level=15] 210 210 210 179 168 168 168 179 105 105 105 179 84 84 84 179
|
||||
minecraft:lava 254 129 0 255 203 103 0 255 127 64 0 255 101 51 0 255
|
||||
minecraft:lava[level=1] 254 129 0 255 203 103 0 255 127 64 0 255 101 51 0 255
|
||||
minecraft:lava[level=2] 254 129 0 255 203 103 0 255 127 64 0 255 101 51 0 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 96
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 96 92 89 203 76 73 71 203 48 46 44 203 38 36 35 203
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 96 92 89 203 76 73 71 203 48 46 44 203 38 36 35 203
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 96 92 89 203 76 73 71 203 48 46 44 203 38 36 35 203
|
||||
minecraft:sticky_piston 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:sticky_piston 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:cobweb 255 255 255 80 204 204 204 80 127 127 127 80 102 102 102 80
|
||||
minecraft:grass 38 72 20 102 30 57 16 102 19 36 10 102 15 28 8 102
|
||||
minecraft:fern 32 60 17 81 25 48 13 81 16 30 8 81 12 24 6 81
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 87 67 47 100 69 53 37 100 43 33 23 100 34 26 18 100
|
||||
minecraft:seagrass 25 85 10 99 20 68 8 99 12 42 5 99 10 34 4 99
|
||||
minecraft:tall_seagrass 21 65 9 148 16 52 7 148 10 32 4 148 8 26 3 148
|
||||
minecraft:tall_seagrass[half=lower] 27 76 10 162 21 60 8 162 13 38 5 162 10 30 4 162
|
||||
minecraft:piston 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=true,facing=east] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=true,facing=south] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=true,facing=west] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=true,facing=up] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=true,facing=down] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=north] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=east] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=south] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=west] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=up] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston[extended=false,facing=down] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 101 96 88 255 80 76 70 255 50 48 44 255 40 38 35 255
|
||||
minecraft:piston 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=true,facing=east] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=true,facing=south] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=true,facing=west] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=true,facing=up] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=true,facing=down] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=north] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=east] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=south] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=west] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=up] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston[extended=false,facing=down] 104 98 73 15 83 78 58 15 52 49 36 15 41 39 29 15
|
||||
minecraft:piston_head 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 95 72 42 47 76 57 33 47 47 36 21 47 38 28 16 47
|
||||
minecraft:white_wool 235 235 235 255 188 188 188 255 117 117 117 255 94 94 94 255
|
||||
minecraft:orange_wool 232 120 43 255 185 96 34 255 116 60 21 255 92 48 17 255
|
||||
minecraft:magenta_wool 185 57 196 255 148 45 156 255 92 28 98 255 74 22 78 255
|
||||
@ -5065,14 +5080,14 @@ minecraft:powder_snow_cauldron 38 38 38 111 30 30 30 111 19 19 19 111 15 15 15 1
|
||||
minecraft:powder_snow_cauldron[level=2] 38 38 38 111 30 30 30 111 19 19 19 111 15 15 15 111
|
||||
minecraft:powder_snow_cauldron[level=3] 38 38 38 111 30 30 30 111 19 19 19 111 15 15 15 111
|
||||
minecraft:end_portal 30 0 35 255 24 0 28 255 15 0 17 255 12 0 14 255
|
||||
minecraft:end_portal_frame 92 121 101 255 73 96 80 255 46 60 50 255 36 48 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 92 121 101 255 73 96 80 255 46 60 50 255 36 48 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 92 121 101 255 73 96 80 255 46 60 50 255 36 48 40 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 92 121 101 255 73 96 80 255 46 60 50 255 36 48 40 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 70 119 85 159 56 95 68 159 35 59 42 159 28 47 34 159
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 70 119 85 159 56 95 68 159 35 59 42 159 28 47 34 159
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 70 119 85 159 56 95 68 159 35 59 42 159 28 47 34 159
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 70 119 85 159 56 95 68 159 35 59 42 159 28 47 34 159
|
||||
minecraft:end_portal_frame 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:end_stone 219 220 164 255 175 176 131 255 109 110 82 255 87 88 65 255
|
||||
minecraft:dragon_egg 19 8 23 255 15 6 18 255 9 4 11 255 7 3 9 255
|
||||
minecraft:redstone_lamp 184 171 91 255 147 136 72 255 92 85 45 255 73 68 36 255
|
||||
@ -14684,14 +14699,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:lantern 141 119 90 55 112 95 72 55 70 59 45 55 56 47 36 55
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 141 119 90 55 112 95 72 55 70 59 45 55 56 47 36 55
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 141 119 90 55 112 95 72 55 70 59 45 55 56 47 36 55
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 141 119 90 55 112 95 72 55 70 59 45 55 56 47 36 55
|
||||
minecraft:soul_lantern 77 136 147 55 61 108 117 55 38 68 73 55 30 54 58 55
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 77 136 147 55 61 108 117 55 38 68 73 55 30 54 58 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 77 136 147 55 61 108 117 55 38 68 73 55 30 54 58 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 77 136 147 55 61 108 117 55 38 68 73 55 30 54 58 55
|
||||
minecraft:lantern 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:soul_lantern 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 53 58 73 5 42 46 58 5 26 29 36 5 21 23 29 5
|
||||
minecraft:campfire 62 55 46 223 49 44 36 223 31 27 23 223 24 22 18 223
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 62 55 46 223 49 44 36 223 31 27 23 223 24 22 18 223
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 62 55 46 223 49 44 36 223 31 27 23 223 24 22 18 223
|
||||
@ -15553,15 +15568,15 @@ minecraft:jigsaw[orientation=west_up] 44 37 47 255 35 29 37 255 22 18 23 255 17
|
||||
minecraft:jigsaw[orientation=east_up] 44 37 47 255 35 29 37 255 22 18 23 255 17 14 18 255
|
||||
minecraft:jigsaw[orientation=north_up] 44 37 47 255 35 29 37 255 22 18 23 255 17 14 18 255
|
||||
minecraft:jigsaw[orientation=south_up] 44 37 47 255 35 29 37 255 22 18 23 255 17 14 18 255
|
||||
minecraft:composter 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=1] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=2] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=3] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=4] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=5] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=6] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=7] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=8] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=1] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=2] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=3] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=4] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=5] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=6] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=7] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:composter[level=8] 45 37 24 255 36 29 19 255 22 18 12 255 18 14 9 255
|
||||
minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
|
@ -31,7 +31,22 @@ minecraft:acacia_sapling[stage=1] 118 117 23 110 94 93 18 110 59 58 11 110 47 46
|
||||
minecraft:dark_oak_sapling 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109
|
||||
minecraft:dark_oak_sapling[stage=1] 61 90 30 109 48 72 24 109 30 45 15 109 24 36 12 109
|
||||
minecraft:bedrock 85 85 85 255 68 68 68 255 42 42 42 255 34 34 34 255
|
||||
minecraft:water 47 67 244 179 37 53 195 179 23 33 122 179 18 26 97 179
|
||||
minecraft:water 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=1] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=2] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=3] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=4] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=5] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=6] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=7] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=8] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=9] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=10] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=11] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=12] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=13] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=14] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:water[level=15] 177 177 177 180 141 141 141 180 88 88 88 180 70 70 70 180
|
||||
minecraft:lava 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
minecraft:lava[level=1] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
minecraft:lava[level=2] 216 104 26 255 172 83 20 255 108 52 13 255 86 41 10 255
|
||||
@ -1111,18 +1126,18 @@ minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=true] 12
|
||||
minecraft:detector_rail[powered=false,shape=ascending_north,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=true] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:detector_rail[powered=false,shape=ascending_south,waterlogged=false] 123 104 90 155 98 83 72 155 61 52 45 155 49 41 36 155
|
||||
minecraft:sticky_piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:sticky_piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:sticky_piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:cobweb 228 233 234 104 182 186 187 104 114 116 117 104 91 93 93 104
|
||||
minecraft:grass 68 109 51 139 54 87 40 139 34 54 25 139 27 43 20 139
|
||||
minecraft:fern 58 93 43 88 46 74 34 88 29 46 21 88 23 37 17 88
|
||||
@ -1130,42 +1145,42 @@ minecraft:dead_bush 107 78 40 77 85 62 32 77 53 39 20 77 42 31 16 77
|
||||
minecraft:seagrass 24 94 2 76 19 75 1 76 12 47 1 76 9 37 0 76
|
||||
minecraft:tall_seagrass 27 103 4 72 21 82 3 72 13 51 2 72 10 41 1 72
|
||||
minecraft:tall_seagrass[half=lower] 21 88 1 141 16 70 0 141 10 44 0 141 8 35 0 141
|
||||
minecraft:piston 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=true,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=north] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=east] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=south] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=west] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=up] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston[extended=false,facing=down] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 97 96 96 255 77 76 76 255 48 48 48 255 38 38 38 255
|
||||
minecraft:piston 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=true,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=north] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=east] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=south] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=west] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=up] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston[extended=false,facing=down] 152 137 111 15 121 109 88 15 76 68 55 15 60 54 44 15
|
||||
minecraft:piston_head 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=north,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=east,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=south,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=west,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=up,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=true,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=true,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=false,type=normal] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:piston_head[facing=down,short=false,type=sticky] 157 135 100 47 125 108 80 47 78 67 50 47 62 54 40 47
|
||||
minecraft:white_wool 233 236 236 255 186 188 188 255 116 118 118 255 93 94 94 255
|
||||
minecraft:orange_wool 240 118 19 255 192 94 15 255 120 59 9 255 96 47 7 255
|
||||
minecraft:magenta_wool 189 68 179 255 151 54 143 255 94 34 89 255 75 27 71 255
|
||||
@ -5065,14 +5080,14 @@ minecraft:powder_snow_cauldron 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 1
|
||||
minecraft:powder_snow_cauldron[level=2] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155
|
||||
minecraft:powder_snow_cauldron[level=3] 73 72 74 155 58 57 59 155 36 36 37 155 29 28 29 155
|
||||
minecraft:end_portal 117 90 156 255 93 72 124 255 58 45 78 255 46 36 62 255
|
||||
minecraft:end_portal_frame 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 91 120 97 255 72 96 77 255 45 60 48 255 36 48 38 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 35 70 62 95 28 56 49 95 17 35 31 95 14 28 24 95
|
||||
minecraft:end_portal_frame 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=true,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=north] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=south] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=west] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_portal_frame[eye=false,facing=east] 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:end_stone 219 222 158 255 175 177 126 255 109 111 79 255 87 88 63 255
|
||||
minecraft:dragon_egg 12 9 15 255 9 7 12 255 6 4 7 255 4 3 6 255
|
||||
minecraft:redstone_lamp 142 101 60 255 113 80 48 255 71 50 30 255 56 40 24 255
|
||||
@ -14684,14 +14699,14 @@ minecraft:bell[attachment=double_wall,facing=west,powered=true] 252 229 96 57 20
|
||||
minecraft:bell[attachment=double_wall,facing=west,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=true] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:bell[attachment=double_wall,facing=east,powered=false] 252 229 96 57 201 183 76 57 126 114 48 57 100 91 38 57
|
||||
minecraft:lantern 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 146 113 83 55 116 90 66 55 73 56 41 55 58 45 33 55
|
||||
minecraft:soul_lantern 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 78 125 139 55 62 100 111 55 39 62 69 55 31 50 55 55
|
||||
minecraft:lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=true,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=true] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:soul_lantern[hanging=false,waterlogged=false] 56 62 79 6 44 49 63 6 28 31 39 6 22 24 31 6
|
||||
minecraft:campfire 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=true,waterlogged=false] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
minecraft:campfire[facing=north,lit=true,signal_fire=false,waterlogged=true] 79 74 67 207 63 59 53 207 39 37 33 207 31 29 26 207
|
||||
@ -15553,15 +15568,15 @@ minecraft:jigsaw[orientation=west_up] 34 27 37 255 27 21 29 255 17 13 18 255 13
|
||||
minecraft:jigsaw[orientation=east_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:jigsaw[orientation=north_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:jigsaw[orientation=south_up] 34 27 37 255 27 21 29 255 17 13 18 255 13 10 14 255
|
||||
minecraft:composter 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=1] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=2] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=3] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=4] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=5] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=6] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=7] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter[level=8] 152 98 51 111 121 78 40 111 76 49 25 111 60 39 20 111
|
||||
minecraft:composter 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=1] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=2] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=3] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=4] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=5] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=6] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=7] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:composter[level=8] 88 61 23 143 70 48 18 143 44 30 11 143 35 24 9 143
|
||||
minecraft:target 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=1] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
minecraft:target[power=2] 226 170 157 255 180 136 125 255 113 85 78 255 90 68 62 255
|
||||
|
@ -190,7 +190,7 @@ texture:id=detector_rail_on
|
||||
texture:id=detector_rail
|
||||
texture:id=piston_bottom
|
||||
texture:id=piston_inner
|
||||
texture:id=piston_side,format=CUSTOM,tile0=0:0/16:16/0:0,tile1=0:0/12:4/4:6,tile2=12:0/4:4/0:6
|
||||
texture:id=piston_side,format=CUSTOM,tile0=0:0/16:16/0:0,tile1=0:0/12:4/4:6,tile2=12:0/4:4/0:6,xcount=1,ycount=1
|
||||
texture:id=piston_top
|
||||
texture:id=piston_top_sticky
|
||||
texture:id=dandelion
|
||||
@ -2174,9 +2174,9 @@ block:id=black_banner,id=black_wall_banner,data=*,patch0=0:oak_planks,patch1=0:b
|
||||
[1.14-]texture:id=sweet_berry_bush_stage1
|
||||
[1.14-]texture:id=sweet_berry_bush_stage2
|
||||
[1.14-]texture:id=sweet_berry_bush_stage3
|
||||
[1.14-]texture:id=grindstone_pivot,format=CUSTOM,tile0=0:0/10:6:3:5,tile1=0:0/10:6:4:5
|
||||
[1.14-]texture:id=grindstone_round,format=CUSTOM,tile0=0:0/8:12/4:0,tile1=0:0/8:12/4:2
|
||||
[1.14-]texture:id=grindstone_side,format=CUSTOM,tile0=0:0/12:12/2:0
|
||||
[1.14-]texture:id=grindstone_pivot,format=CUSTOM,tile0=0:0/10:6:3:5,tile1=0:0/10:6:4:5,xcount=1,ycount=1
|
||||
[1.14-]texture:id=grindstone_round,format=CUSTOM,tile0=0:0/8:12/4:0,tile1=0:0/8:12/4:2,xcount=1,ycount=1
|
||||
[1.14-]texture:id=grindstone_side,format=CUSTOM,tile0=0:0/12:12/2:0,xcount=1,ycount=1
|
||||
[1.14-]texture:id=lectern_base
|
||||
[1.14-]texture:id=lectern_front
|
||||
[1.14-]texture:id=lectern_sides
|
||||
@ -2194,9 +2194,9 @@ block:id=black_banner,id=black_wall_banner,data=*,patch0=0:oak_planks,patch1=0:b
|
||||
[1.14-]texture:id=campfire_log
|
||||
[1.14-]texture:id=campfire_log_lit
|
||||
[1.14-]texture:id=campfire_fire
|
||||
[1.14-]texture:id=bell_top,format=CUSTOM,tile0=0:0/8:8/4:4
|
||||
[1.14-]texture:id=bell_side,format=CUSTOM,tile0=0:0/8:9/4:3
|
||||
[1.14-]texture:id=bell_bottom,format=CUSTOM,tile0=0:0/8:8/4:4
|
||||
[1.14-]texture:id=bell_top,format=CUSTOM,tile0=0:0/8:8/4:4,xcount=1,ycount=1
|
||||
[1.14-]texture:id=bell_side,format=CUSTOM,tile0=0:0/8:9/4:3,xcount=1,ycount=1
|
||||
[1.14-]texture:id=bell_bottom,format=CUSTOM,tile0=0:0/8:8/4:4,xcount=1,ycount=1
|
||||
|
||||
# Signpost
|
||||
[1.14-]block:id=oak_sign,patch0=0,patch1=1,patch2=2,patch3=3,patch4=4,patch5=5,patch6=6,patch7=7,patch8=8,patch9=9,transparency=TRANSPARENT,txtid=oak_sign
|
||||
|
Loading…
Reference in New Issue
Block a user