Advertisement
Rukes

Untitled

Mar 7th, 2019 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 KB | None | 0 0
  1. String[] list = {"_ORE",
  2.     "_LOG",
  3.     "_WOOD",
  4.     "_PLANKS",
  5.     "_BUTTON",
  6.     "_DOOR",
  7.     "_BOAT",
  8.     "_WOOL",
  9.     "_SANDSTONE",//original
  10.     "_SLAB",
  11.     "_BRICKS",
  12.     "_TERRACOTTA",//original
  13.     "_STAINED_GLASS",
  14.     "_CONCRETE",
  15.     "_CONCRETE_POWDER",
  16.     "_CORAL_BLOCK",
  17.     "_SAPLING",
  18.     "_LEAVES",
  19.     "_FENCE",
  20.     "_CARPET",
  21.     "_GLASS_PANE",
  22.     "_SHULKER_BOX",//???//original
  23.     "_GLAZED_TERRACOTTA",
  24.     "_CORAL",
  25.     "_CORAL_FAN",
  26.     "_BED",
  27.     "_BANNER",
  28.     "_PRESSURE_PLATE",
  29.     "_TRAPDOOR",
  30.     "_FENCE_GATE",
  31.     "_BUCKET",//original
  32. };
  33. for(String suffix : list){
  34.     String id = suffix.replace("_", "").toLowerCase();
  35.     System.out.println("  " + id);
  36.     System.out.println("    suffix: " + suffix);
  37.     System.out.println("    name: '&f"+id+"'");
  38.     System.out.println("    category: blocky");
  39.     System.out.println("    include-original: false");
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement