Added 1.2 Beta items except colored wool and all dye colors.

They can be added with the Wool block and then set the wanted damage value
same for dye.
See here http://www.minecraftwiki.net/wiki/Dye for the right values.
For the colored wool the opposite values apply!
This commit is contained in:
Nick Loose
2011-01-14 14:41:17 +01:00
parent 43277ae339
commit dc0fbfc1f0
4 changed files with 41 additions and 13 deletions

View File

@@ -67,17 +67,17 @@
int index = 0;
if (itemId <= 91)
if (itemId <= 92)
{
if (itemId <= 20)
if (itemId <= 25)
index = itemId - 1; // first item is 1
else if (itemId == 35)
index = itemId - (35 - 20);
index = itemId - (35 - 25);
else if (itemId >= 37)
index = itemId - (37 - 21);
index = itemId - (37 - 26);
atlasOffset = NSMakePoint(36, 75);
}
else if (itemId >= 256 && itemId <= 350)
else if (itemId >= 256 && itemId <= 355)
{
index = itemId - 256;
atlasOffset = NSMakePoint(445, 23+52);
@@ -85,12 +85,12 @@
else if (itemId == 2256)
{
index = 0;
atlasOffset = NSMakePoint(445+pixelsPerColumn + 147, 23+52 + 10 * pixelsPerRow);
atlasOffset = NSMakePoint(445, pixelsPerRow*12+17);
}
else if (itemId == 2257)
{
index = 0;
atlasOffset = NSMakePoint(445+pixelsPerColumn + 192, 23+52 + 10 * pixelsPerRow);
atlasOffset = NSMakePoint(445+pixelsPerColumn, pixelsPerRow*12+17);
}
else
{