Blocks
Appearance
| Block | ID | aliases |
|---|---|---|
| Undefined | 255 |
|
| Air | 0 |
BlockNames["a"] = Block.Air; // common typo
BlockNames["nothing"] = Block.Air;
BlockNames["empty"] = Block.Air;
BlockNames["delete"] = Block.Air;
BlockNames["erase"] = Block.Air;
BlockNames["blank"] = Block.Air;
|
| Stone | 1 |
BlockNames["cement"] = Block.Stone;
BlockNames["concrete"] = Block.Stone;
|
| Grass | 2 |
BlockNames["g"] = Block.Grass;
BlockNames["gras"] = Block.Grass; // common typo
|
| Dirt | 3 | |
| Cobblestone | 4 | |
| Wood | 5 | |
| Plant | 6 | |
| Admincrete | 7 | |
| Water | 8 | |
| Stillwater | 9 | |
| Lava | 10 | |
| StillLava | 11 | |
| Sand | 12 | |
| Gravel | 13 | |
| GoldOre | 14 | |
| IronOre | 15 | |
| Coal | 16 | |
| Log | 17 | |
| Leaves | 18 | |
| Sponge | 19 | |
| Glass | 20 | |
| Red | 21 | |
| Orange | 22 | |
| Yellow | 23 | |
| Lime | 24 | |
| Green | 25 | |
| Teal | 26 | |
| Aqua | 27 | |
| Cyan | 28 | |
| Blue | 29 | |
| Indigo | 30 | |
| Violet | 31 | |
| Magenta | 32 | |
| Pink | 33 | |
| Black | 34 | |
| Gray | 35 | |
| White | 36 | |
| YellowFlower | 37 | |
| RedFlower | 38 | |
| BrownMushroom | 39 | |
| RedMushroom | 40 | |
| Gold | 41 | |
| Iron | 42 | |
| DoubleStair | 43 | |
| Stair | 44 | |
| Brick | 45 | |
| TNT | 46 | |
| Books | 47 | |
| MossyRocks | 48 | |
| Obsidian | 49 |
BlockNames["soil"] = Block.Dirt;
BlockNames["stones"] = Block.Cobblestone;
BlockNames["rocks"] = Block.Cobblestone;
BlockNames["plank"] = Block.Wood;
BlockNames["planks"] = Block.Wood;
BlockNames["board"] = Block.Wood;
BlockNames["boards"] = Block.Wood;
BlockNames["tree"] = Block.Plant;
BlockNames["sappling"] = Block.Plant;
BlockNames["adminium"] = Block.Admincrete;
BlockNames["adminite"] = Block.Admincrete;
BlockNames["opcrete"] = Block.Admincrete;
BlockNames["hardrock"] = Block.Admincrete;
BlockNames["solid"] = Block.Admincrete;
BlockNames["bedrock"] = Block.Admincrete;
BlockNames["w"] = Block.Water;
BlockNames["l"] = Block.Lava;
BlockNames["magma"] = Block.Lava;
BlockNames["gold_ore"] = Block.GoldOre;
BlockNames["iron_ore"] = Block.IronOre;
BlockNames["copper"] = Block.IronOre;
BlockNames["copperore"] = Block.IronOre;
BlockNames["copper_ore"] = Block.IronOre;
BlockNames["ore"] = Block.IronOre;
BlockNames["coals"] = Block.Coal;
BlockNames["coalore"] = Block.Coal;
BlockNames["blackore"] = Block.Coal;
BlockNames["trunk"] = Block.Log;
BlockNames["stump"] = Block.Log;
BlockNames["treestump"] = Block.Log;
BlockNames["treetrunk"] = Block.Log;
BlockNames["leaf"] = Block.Leaves;
BlockNames["foliage"] = Block.Leaves;
BlockNames["cheese"] = Block.Sponge;
BlockNames["redcloth"] = Block.Red;
BlockNames["redwool"] = Block.Red;
BlockNames["orangecloth"] = Block.Orange;
BlockNames["orangewool"] = Block.Orange;
BlockNames["yellowcloth"] = Block.Yellow;
BlockNames["yellowwool"] = Block.Yellow;
BlockNames["limecloth"] = Block.Lime;
BlockNames["limewool"] = Block.Lime;
BlockNames["greenyellow"] = Block.Lime;
BlockNames["yellowgreen"] = Block.Lime;
BlockNames["lightgreen"] = Block.Lime;
BlockNames["lightgreencloth"] = Block.Lime;
BlockNames["lightgreenwool"] = Block.Lime;
BlockNames["greencloth"] = Block.Green;
BlockNames["greenwool"] = Block.Green;
BlockNames["springgreen"] = Block.Teal;
BlockNames["emerald"] = Block.Teal;
BlockNames["tealwool"] = Block.Teal;
BlockNames["tealcloth"] = Block.Teal;
BlockNames["aquawool"] = Block.Aqua;
BlockNames["aquacloth"] = Block.Aqua;
BlockNames["cyanwool"] = Block.Cyan;
BlockNames["cyancloth"] = Block.Cyan;
BlockNames["bluewool"] = Block.Blue;
BlockNames["bluecloth"] = Block.Blue;
BlockNames["indigowool"] = Block.Indigo;
BlockNames["indigocloth"] = Block.Indigo;
BlockNames["violetwool"] = Block.Violet;
BlockNames["violetcloth"] = Block.Violet;
BlockNames["lightpurple"] = Block.Violet;
BlockNames["purple"] = Block.Violet;
BlockNames["purplewool"] = Block.Violet;
BlockNames["purplecloth"] = Block.Violet;
BlockNames["fuchsia"] = Block.Magenta;
BlockNames["magentawool"] = Block.Magenta;
BlockNames["magentacloth"] = Block.Magenta;
BlockNames["darkpink"] = Block.Pink;
BlockNames["pinkwool"] = Block.Pink;
BlockNames["pinkcloth"] = Block.Pink;
BlockNames["cloth"] = Block.White;
BlockNames["cotton"] = Block.White;
BlockNames["grey"] = Block.Gray;
BlockNames["lightgray"] = Block.Gray;
BlockNames["lightgrey"] = Block.Gray;
BlockNames["darkgray"] = Block.Black;
BlockNames["darkgrey"] = Block.Black;
BlockNames["yellow_flower"] = Block.YellowFlower;
BlockNames["flower"] = Block.YellowFlower;
BlockNames["rose"] = Block.RedFlower;
BlockNames["redrose"] = Block.RedFlower;
BlockNames["red_flower"] = Block.RedFlower;
BlockNames["mushroom"] = Block.BrownMushroom;
BlockNames["shroom"] = Block.BrownMushroom;
BlockNames["brown_shroom"] = Block.BrownMushroom;
BlockNames["red_shroom"] = Block.RedMushroom;
BlockNames["goldblock"] = Block.Gold;
BlockNames["goldsolid"] = Block.Gold;
BlockNames["golden"] = Block.Gold;
BlockNames["copper"] = Block.Gold;
BlockNames["brass"] = Block.Gold;
BlockNames["ironblock"] = Block.Iron;
BlockNames["steel"] = Block.Iron;
BlockNames["metal"] = Block.Iron;
BlockNames["silver"] = Block.Iron;
BlockNames["slab"] = Block.Stair;
BlockNames["slabs"] = Block.DoubleStair;
BlockNames["steps"] = Block.DoubleStair;
BlockNames["stairs"] = Block.DoubleStair;
BlockNames["doublestep"] = Block.DoubleStair;
BlockNames["double_step"] = Block.DoubleStair;
BlockNames["double_stair"] = Block.DoubleStair;
BlockNames["staircasefull"] = Block.DoubleStair;
BlockNames["step"] = Block.Stair;
BlockNames["halfstep"] = Block.Stair;
BlockNames["halfblock"] = Block.Stair;
BlockNames["staircasestep"] = Block.Stair;
BlockNames["bricks"] = Block.Brick;
BlockNames["explosive"] = Block.TNT;
BlockNames["dynamite"] = Block.TNT;
BlockNames["book"] = Block.Books;
BlockNames["shelf"] = Block.Books;
BlockNames["shelves"] = Block.Books;
BlockNames["bookcase"] = Block.Books;
BlockNames["bookshelf"] = Block.Books;
BlockNames["bookshelves"] = Block.Books;
BlockNames["moss"] = Block.MossyRocks;
BlockNames["mossy"] = Block.MossyRocks;
BlockNames["stonevine"] = Block.MossyRocks;
BlockNames["mossyrock"] = Block.MossyRocks;
BlockNames["mossystone"] = Block.MossyRocks;
BlockNames["mossystones"] = Block.MossyRocks;
BlockNames["greencobblestone"] = Block.MossyRocks;
BlockNames["mossycobblestone"] = Block.MossyRocks;
BlockNames["mossy_cobblestone"] = Block.MossyRocks;
BlockNames["blockthathasgreypixelsonitmostlybutsomeareactuallygreen"] = Block.MossyRocks;