Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.70 KB | None | 0 0
  1.         switch (name) {
  2.             case "stone":
  3.                 return "stone";
  4.             case "grass":
  5.                 return "grass";
  6.             case "dirt":
  7.                 return "dirt";
  8.             case "cobblestone":
  9.                 return "stonebrick";
  10.             case "planks":
  11.                 return "wood";
  12.             case "sapling":
  13.                 return "sapling";
  14.             case "bedrock":
  15.                 return "bedrock";
  16.             case "water":
  17.                 return "water";
  18.             case "flowing_water":
  19.                 return "water";
  20.             case "sand":
  21.                 return "sand";
  22.             case "gravel":
  23.                 return "gravel";
  24.             case "gold_ore":
  25.                 return "oreGold";
  26.             case "iron_ore":
  27.                 return "oreIron";
  28.             case "coal_ore":
  29.                 return "oreCoal";
  30.             case "log":
  31.                 return "log";
  32.             case "leaves":
  33.                 return "leaves";
  34.             case "sponge":
  35.                 return "sponge";
  36.             case "glass":
  37.                 return "glass";
  38.             case "wool":
  39.                 return "cloth";
  40.             case "yellow_flower":
  41.                 return "flower";
  42.             case "red_flower":
  43.                 return "flower";
  44.             case "brown_mushroom":
  45.                 return "mushroom";
  46.             case "red_mushroom":
  47.                 return "mushroom";
  48.             case "gold_block":
  49.                 return "blockGold";
  50.             case "iron_block":
  51.                 return "blockIron";
  52.             case "double_stone_slab":
  53.                 return "stoneSlab";
  54.             case "stone_slab":
  55.                 return "stoneSlab";
  56.             case "brick_block":
  57.                 return "brick";
  58.             case "tnt":
  59.                 return "tnt";
  60.             case "bookshelf":
  61.                 return "bookshelf";
  62.             case "mossy_cobblestone":
  63.                 return "stoneMoss";
  64.             case "obsidian":
  65.                 return "obsidian";
  66.             case "torch":
  67.                 return "torch";
  68.             case "fire":
  69.                 return "fire";
  70.             case "mob_spawner":
  71.                 return "mobSpawner";
  72.             case "oak_stairs":
  73.                 return "stairsWood";
  74.             case "chest":
  75.                 return "chest";
  76.             case "redstone_wire":
  77.                 return "redstoneDust";
  78.             case "diamond_ore":
  79.                 return "oreDiamond";
  80.             case "diamond_block":
  81.                 return "blockDiamond";
  82.             case "crafting_table":
  83.                 return "workbench";
  84.             case "wheat":
  85.                 return "crops";
  86.             case "farmland":
  87.                 return "farmland";
  88.             case "furnace":
  89.                 return "furnace";
  90.             case "lit_furnace":
  91.                 return "furnace";
  92.             case "standing_sign":
  93.                 return "sign";
  94.             case "wall_sign":
  95.                 return "sign";
  96.             case "wooden_door":
  97.                 return "doorWood";
  98.             case "ladder":
  99.                 return "ladder";
  100.             case "rail":
  101.                 return "rail";
  102.             case "stone_stairs":
  103.                 return "stairsStone";
  104.             case "lever":
  105.                 return "lever";
  106.             case "stone_pressure_plate":
  107.                 return "pressurePlate";
  108.             case "iron_door":
  109.                 return "doorIron";
  110.             case "wooden_pressure_plate":
  111.                 return "pressurePlate";
  112.             case "redstone_ore":
  113.                 return "oreRedstone";
  114.             case "lit_redstone_ore":
  115.                 return "oreRedstone";
  116.             case "unlit_redstone_torch":
  117.                 return "notGate";
  118.             case "redstone_torch":
  119.                 return "notGate";
  120.             case "stone_button":
  121.                 return "button";
  122.             case "wooden_button":
  123.                 return "button";
  124.             case "snow_layer":
  125.                 return "snow";
  126.             case "ice":
  127.                 return "ice";
  128.             case "snow":
  129.                 return "snow";
  130.             case "cactus":
  131.                 return "cactus";
  132.             case "clay":
  133.                 return "clay";
  134.             case "reeds":
  135.                 return "reeds";
  136.             case "jukebox":
  137.                 return "jukebox";
  138.             case "fence":
  139.                 return "fence";
  140.             case "pumpkin":
  141.                 return "pumpkin";
  142.             case "netherrack":
  143.                 return "hellrock";
  144.             case "soul_sand":
  145.                 return "hellsand";
  146.             case "glowstone":
  147.                 return "lightgem";
  148.             case "portal":
  149.                 return "portal";
  150.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement