forked from mirrors/NBTExplorer
Update block and item info to 1.6
This commit is contained in:
parent
d3954ef5dd
commit
9c6f852a89
2 changed files with 78 additions and 0 deletions
|
@ -176,6 +176,7 @@ namespace Substrate
|
|||
public const int QUARTZ_STAIRS = 156;
|
||||
public const int ACTIVATOR_RAIL = 157;
|
||||
public const int DROPPER = 158;
|
||||
public const int STAINED_CLAY = 159;
|
||||
public const int HAY_BLOCK = 170;
|
||||
public const int CARPET = 171;
|
||||
public const int HARDENED_CLAY = 172;
|
||||
|
@ -709,6 +710,7 @@ namespace Substrate
|
|||
public static BlockInfo QuartzStairs;
|
||||
public static BlockInfo ActivatorRail;
|
||||
public static BlockInfoEx Dropper;
|
||||
public static BlockInfo StainedClay;
|
||||
public static BlockInfo HayBlock;
|
||||
public static BlockInfo Carpet;
|
||||
public static BlockInfo HardenedClay;
|
||||
|
@ -883,6 +885,7 @@ namespace Substrate
|
|||
QuartzStairs = new BlockInfo(156, "Quartz Stairs").SetOpacity(0);
|
||||
ActivatorRail = new BlockInfo(157, "Activator Rail").SetOpacity(0).SetState(BlockState.NONSOLID).SetTick(10);
|
||||
Dropper = (BlockInfoEx)new BlockInfoEx(158, "Dropper").SetTick(10);
|
||||
StainedClay = new BlockInfo(159, "Stained Clay");
|
||||
HayBlock = new BlockInfo(170, "Hay Block");
|
||||
Carpet = new BlockInfo(171, "Carpet").SetOpacity(0);
|
||||
HardenedClay = new BlockInfo(172, "Hardened Clay");
|
||||
|
|
|
@ -143,6 +143,31 @@ namespace Substrate
|
|||
public const int BOOK_AND_QUILL = 386;
|
||||
public const int WRITTEN_BOOK = 387;
|
||||
public const int EMERALD = 388;
|
||||
public const int ITEM_FRAME = 389;
|
||||
public const int FLOWER_POT = 390;
|
||||
public const int CARROT = 391;
|
||||
public const int POTATO = 392;
|
||||
public const int BAKED_POTATO = 393;
|
||||
public const int POISON_POTATO = 394;
|
||||
public const int EMPTY_MAP = 395;
|
||||
public const int GOLDEN_CARROT = 396;
|
||||
public const int MOB_HEAD = 397;
|
||||
public const int CARROT_ON_A_STICK = 398;
|
||||
public const int NETHER_STAR = 399;
|
||||
public const int PUMPKIN_PIE = 400;
|
||||
public const int FIREWORK_ROCKET = 401;
|
||||
public const int FIREWORK_STAR = 402;
|
||||
public const int ENCHANTED_BOOK = 403;
|
||||
public const int REDSTONE_COMPARATOR = 404;
|
||||
public const int NETHER_BRICK = 405;
|
||||
public const int NETHER_QUARTZ = 406;
|
||||
public const int TNT_MINECART = 407;
|
||||
public const int HOPPER_MINECART = 408;
|
||||
public const int IRON_HORSE_ARMOR = 417;
|
||||
public const int GOLD_HORSE_ARMOR = 418;
|
||||
public const int DIAMOND_HORSE_ARMOR = 419;
|
||||
public const int LEAD = 420;
|
||||
public const int NAME_TAG = 421;
|
||||
public const int MUSIC_DISC_13 = 2256;
|
||||
public const int MUSIC_DISC_CAT = 2257;
|
||||
public const int MUSIC_DISC_BLOCKS = 2258;
|
||||
|
@ -405,6 +430,31 @@ namespace Substrate
|
|||
public static ItemInfo BookAndQuill;
|
||||
public static ItemInfo WrittenBook;
|
||||
public static ItemInfo Emerald;
|
||||
public static ItemInfo ItemFrame;
|
||||
public static ItemInfo FlowerPot;
|
||||
public static ItemInfo Carrot;
|
||||
public static ItemInfo Potato;
|
||||
public static ItemInfo BakedPotato;
|
||||
public static ItemInfo PoisonPotato;
|
||||
public static ItemInfo EmptyMap;
|
||||
public static ItemInfo GoldenCarrot;
|
||||
public static ItemInfo MobHead;
|
||||
public static ItemInfo CarrotOnStick;
|
||||
public static ItemInfo NetherStar;
|
||||
public static ItemInfo PumpkinPie;
|
||||
public static ItemInfo FireworkRocket;
|
||||
public static ItemInfo FireworkStar;
|
||||
public static ItemInfo EnchantedBook;
|
||||
public static ItemInfo RedstoneComparator;
|
||||
public static ItemInfo NetherBrick;
|
||||
public static ItemInfo NetherQuartz;
|
||||
public static ItemInfo TntMinecart;
|
||||
public static ItemInfo HopperMinecart;
|
||||
public static ItemInfo IronHorseArmor;
|
||||
public static ItemInfo GoldHorseArmor;
|
||||
public static ItemInfo DiamondHorseArmor;
|
||||
public static ItemInfo Lead;
|
||||
public static ItemInfo NameTag;
|
||||
public static ItemInfo MusicDisc13;
|
||||
public static ItemInfo MusicDiscCat;
|
||||
public static ItemInfo MusicDiscBlocks;
|
||||
|
@ -555,6 +605,31 @@ namespace Substrate
|
|||
BookAndQuill = new ItemInfo(386, "Book and Quill");
|
||||
WrittenBook = new ItemInfo(387, "Written Book");
|
||||
Emerald = new ItemInfo(388, "Emerald").SetStackSize(64);
|
||||
ItemFrame = new ItemInfo(389, "Item Frame").SetStackSize(64);
|
||||
FlowerPot = new ItemInfo(390, "Flower Pot").SetStackSize(64);
|
||||
Carrot = new ItemInfo(391, "Carrot").SetStackSize(64);
|
||||
Potato = new ItemInfo(392, "Potato").SetStackSize(64);
|
||||
BakedPotato = new ItemInfo(393, "Baked Potato").SetStackSize(64);
|
||||
PoisonPotato = new ItemInfo(394, "Poisonous Potato").SetStackSize(64);
|
||||
EmptyMap = new ItemInfo(395, "Empty Map").SetStackSize(64);
|
||||
GoldenCarrot = new ItemInfo(396, "Golden Carrot").SetStackSize(64);
|
||||
MobHead = new ItemInfo(397, "Mob Head").SetStackSize(64);
|
||||
CarrotOnStick = new ItemInfo(398, "Carrot on a Stick");
|
||||
NetherStar = new ItemInfo(399, "Nether Star").SetStackSize(64);
|
||||
PumpkinPie = new ItemInfo(400, "Pumpkin Pie").SetStackSize(64);
|
||||
FireworkRocket = new ItemInfo(401, "Firework Rocket");
|
||||
FireworkStar = new ItemInfo(402, "Firework Star").SetStackSize(64);
|
||||
EnchantedBook = new ItemInfo(403, "Enchanted Book");
|
||||
RedstoneComparator = new ItemInfo(404, "Redstone Comparator").SetStackSize(64);
|
||||
NetherBrick = new ItemInfo(405, "Nether Brick").SetStackSize(64);
|
||||
NetherQuartz = new ItemInfo(406, "Nether Quartz").SetStackSize(64);
|
||||
TntMinecart = new ItemInfo(407, "Minecart with TNT");
|
||||
HopperMinecart = new ItemInfo(408, "Minecart with Hopper");
|
||||
IronHorseArmor = new ItemInfo(417, "Iron Horse Armor");
|
||||
GoldHorseArmor = new ItemInfo(418, "Gold Horse Armor");
|
||||
DiamondHorseArmor = new ItemInfo(419, "Diamond Horse Armor");
|
||||
Lead = new ItemInfo(420, "Lead").SetStackSize(64);
|
||||
NameTag = new ItemInfo(421, "Name Tag").SetStackSize(64);
|
||||
MusicDisc13 = new ItemInfo(2256, "13 Disc");
|
||||
MusicDiscCat = new ItemInfo(2257, "Cat Disc");
|
||||
MusicDiscBlocks = new ItemInfo(2258, "Blocks Disc");
|
||||
|
|
Loading…
Reference in a new issue