broken-arrow

Untitled

Sep 4th, 2021 (edited)
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 6.64 KB | None | 0 0
  1.     public enum Crafting {
  2.  
  3.  
  4.     PINK_BED("PINK_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  5.     YELLOW_BED("YELLOW_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  6.     PURPLE_BED("PURPLE_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  7.     WHITE_BED("WHITE_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  8.     ORANGE_BED("ORANGE_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  9.     LIGHT_GRAY_BED("LIGHT_GRAY_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  10.     GRAY_BED("GRAY_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  11.     CYAN_BED("CYAN_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  12.     BROWN_BED("BROWN_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  13.     BLACK_BED("BLACK_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  14.     BLUE_BED("BLUE_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  15.     LIGHT_BLUE_BED("LIGHT_BLUE_WOOL", 3, "OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 3, null, 0, null, 0, null, 0, 1),
  16.  
  17.     CYAN_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "CYAN_DYE", 1, null, 0, null, 0, 8),
  18.     PINK_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "PINK_DYE", 1, null, 0, null, 0, 8),
  19.     YELLOW_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "YELLOW_DYE", 1, null, 0, null, 0, 8),
  20.     PURPLE_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "PURPLE_DYE", 1, null, 0, null, 0, 8),
  21.     WHITE_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "WHITE_DYE", 1, null, 0, null, 0, 8),
  22.     LIGHT_GRAY_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "LIGHT_GRAY_DYE", 1, null, 0, null, 0, 8),
  23.     LIGHT_BLUE_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "LIGHT_BLUE_DYE", 1, null, 0, null, 0, 8),
  24.     ORANGE_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "ORANGE_DYE", 1, null, 0, null, 0, 8),
  25.     GRAY_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "GRAY_DYE", 1, null, 0, null, 0, 8),
  26.     BROWN_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "BROWN_DYE", 1, null, 0, null, 0, 8),
  27.     BLUE_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "BLUE_DYE", 1, null, 0, null, 0, 8),
  28.     BLACK_CONCRETE_POWDER("SAND", 4, "GRAVEL", 4, "BLACK_DYE", 1, null, 0, null, 0, 8),
  29.  
  30.    
  31.     CLAY("CLAY_BALL", 4, null, 0, null, 0, null, 0, null, 0, 1),
  32.     FLOWER_POT("BRICK", 3, null, 0, null, 0, null, 0, null, 0, 1),
  33.     BRICKS("BRICK", 4, null, 0, null, 0, null, 0, null, 0, 1),
  34.     BONE_BLOCK("BONE_MEAL", 9, null, 0, null, 0, null, 0, null, 0, 1),
  35.     QUARTZ_BLOCK("QUARTZ", 4, null, 0, null, 0, null, 0, null, 0, 4),
  36.     ANVIL("IRON_BLOCK", 3, "IRON_INGOT", 4, null, 0, null, 0, null, 0, 1),
  37.     ARROW("FLINT", 1, "STICK", 1, "FEATHER", 1, null, 0, null, 0, 1),
  38.     FLINT_AND_STEEL("IRON_INGOT", 1, "FLINT", 1, null, 0, null, 0, null, 0, 1),
  39.     OBSERVER("COBBLESTONE,BLACKSTONE", 6, "REDSTONE", 2, "QUARTZ", 1, null, 0, null, 0, 1),
  40.     REDSTONE_BLOCK("REDSTONE", 9, null, 0, null, 0, null, 0, null, 0, 1),
  41.     COAL_BLOCK("COAL", 9, null, 0, null, 0, null, 0, null, 0, 1),
  42.     POLISHED_ANDESITE("ANDESITE", 1, null, 0, null, 0, null, 0, null, 0, 1),
  43.     ANDESITE("DIORITE", 1, "COBBLESTONE", 1, null, 0, null, 0, null, 0, 2),
  44.     BUCKET("IRON_INGOT", 3, null, 0, null, 0, null, 0, null, 0, 1),
  45.     STICK("OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 4, null, 0, null, 0, null, 0, null, 0, 4),
  46.     FURNACES("COBBLESTONE,BLACKSTONE", 8, null, 0, null, 0, null, 0, null, 0, 1),
  47.     CHEST("OAK_PLANKS,SPRUCE_PLANKS,BIRCH_PLANKS,JUNGLE_PLANKS,ACACIA_PLANKS,DARK_OAK_PLANKS,CRIMSON_PLANKS,WARPED_PLANKS", 8, null, 0, null, 0, null, 0, null, 0, 1),
  48.     TORCH("STICK", 1, "COAL,CHARCOAL", 1, null, 0, null, 0, null, 0, 4),
  49.     STONE_BUTTON("STONE", 1, null, 0, null, 0, null, 0, null, 0, 1),
  50.     STONE_STAIRS("STONE", 1, null, 0, null, 0, null, 0, null, 0, 1),
  51.     STONE_SLAB("STONE", 1, null, 0, null, 0, null, 0, null, 0, 2),
  52.     REPEATER("STONE", 3, "REDSTONE_TORCH", 2, "REDSTONE", 1, null, 0, null, 0, 1),
  53.     COMPARATOR("STONE", 3, "REDSTONE_TORCH", 3, "QUARTZ", 1, null, 0, null, 0, 1);
  54.  
  55.     private final String materialName1;
  56.     private final int amontNeededCrafting1;
  57.     private final String materialNames2;
  58.     private final int amontNeededCrafting2;
  59.     private final String materialName3;
  60.     private final int amontNeededCrafting3;
  61.     private final String materialNames4;
  62.     private final int amontNeededCrafting4;
  63.     private final String materialNames5;
  64.     private final int amontNeededCrafting5;
  65.     private final int numberOutput;
  66.  
  67.     Crafting(String matrialname1, int amontNeededForCraftring1, String materialNames2, int amontNeededForCraftring2, String materialName3, int amontNeededForCraftring3, String materialNames4, int amontNeededCrafting4, String materialNames5, int amontNeededCrafting5, int numberOutput) {
  68.         this.materialName1 = matrialname1;
  69.         this.amontNeededCrafting1 = amontNeededForCraftring1;
  70.         this.materialNames2 = materialNames2;
  71.         this.amontNeededCrafting2 = amontNeededForCraftring2;
  72.         this.materialName3 = materialName3;
  73.         this.amontNeededCrafting3 = amontNeededForCraftring3;
  74.         this.materialNames4 = materialNames4;
  75.         this.amontNeededCrafting4 = amontNeededCrafting4;
  76.         this.materialNames5 = materialNames5;
  77.         this.amontNeededCrafting5 = amontNeededCrafting5;
  78.         this.numberOutput = numberOutput;
  79.     }
  80.  
  81.     public String getmatrialName1() {
  82.         return materialName1;
  83.     }
  84.  
  85.     public int getAmontNeededCrafting1() {
  86.         return amontNeededCrafting1;
  87.     }
  88.  
  89.     public String getmatrialName2() {
  90.         return materialNames2;
  91.     }
  92.  
  93.     public int getAmontNeededCrafting2() {
  94.         return amontNeededCrafting2;
  95.     }
  96.  
  97.     public String getmatrialName3() {
  98.         return materialName3;
  99.     }
  100.  
  101.     public int getAmontNeededCrafting3() {
  102.         return amontNeededCrafting3;
  103.     }
  104.  
  105.     public int getNumberOutput() {
  106.         return numberOutput;
  107.     }
  108. }
Add Comment
Please, Sign In to add comment