1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 11:45:51 +00:00
This commit is contained in:
Panda.com 2020-10-18 14:31:54 +02:00
parent 3d364ee331
commit dc025c7b28
3 changed files with 35 additions and 37 deletions

View File

@ -121,6 +121,11 @@ public enum SlimefunTag implements Tag<Material> {
*/ */
CONCRETE_POWDERS, CONCRETE_POWDERS,
/**
* All the types of pressure plates.
*/
PRESSURE_PLATES,
/** /**
* Materials which are sensitive to break. * Materials which are sensitive to break.
* Things like Saplings or Pressure plates which break as well when you break * Things like Saplings or Pressure plates which break as well when you break
@ -193,12 +198,7 @@ public enum SlimefunTag implements Tag<Material> {
/** /**
* All materials (ores) which trigger the Talisman of the Caveman. * All materials (ores) which trigger the Talisman of the Caveman.
*/ */
CAVEMAN_TALISMAN_TRIGGERS, CAVEMAN_TALISMAN_TRIGGERS;
/**
* All the types of pressure plates.
*/
PRESSURE_PLATES;
private static final Map<String, SlimefunTag> nameLookup = new HashMap<>(); private static final Map<String, SlimefunTag> nameLookup = new HashMap<>();
public static final SlimefunTag[] valuesCache = values(); public static final SlimefunTag[] valuesCache = values();

View File

@ -1,10 +1,34 @@
{ {
"values" : [ "values" : [
"#slimefun:sensitive_materials", "#slimefun:sensitive_materials",
"#slimefun:pressure_plates",
"#minecraft:beds", "#minecraft:beds",
"minecraft:cake", "#minecraft:buttons",
"#minecraft:signs",
"#slimefun:mushrooms",
"#minecraft:doors",
"minecraft:bamboo",
"#minecraft:rails",
"#minecraft:small_flowers",
"#minecraft:coral_blocks",
"#minecraft:coral_plants",
"#minecraft:small_flowers",
"#minecraft:banners",
"minecraft:sugar_cane",
"minecraft:ladder",
"minecraft:snow",
"minecraft:lever",
"minecraft:repeater",
"minecraft:tripwire_hook",
"minecraft:tall_grass",
"minecraft:large_fern",
"minecraft:lily_pad",
"minecraft:dead_bush",
"minecraft:fern",
"minecraft:grass",
"minecraft:seagrass",
"minecraft:tall_seagrass",
"minecraft:cactus",
"minecraft:kelp",
{ {
"id" : "minecraft:nether_sprouts", "id" : "minecraft:nether_sprouts",
"required" : false "required" : false
@ -25,6 +49,5 @@
"id" : "minecraft:weeping_vines", "id" : "minecraft:weeping_vines",
"required" : false "required" : false
} }
] ]
} }

View File

@ -2,32 +2,7 @@
"values" : [ "values" : [
"#minecraft:saplings", "#minecraft:saplings",
"#slimefun:torches", "#slimefun:torches",
"#minecraft:buttons", "minecraft:cake",
"#minecraft:signs", "#slimefun:pressure_plates"
"#slimefun:mushrooms",
"#minecraft:doors",
"minecraft:bamboo",
"#minecraft:rails",
"#minecraft:small_flowers",
"#minecraft:coral_blocks",
"#minecraft:coral_plants",
"#minecraft:small_flowers",
"#minecraft:banners",
"minecraft:sugar_cane",
"minecraft:ladder",
"minecraft:snow",
"minecraft:lever",
"minecraft:repeater",
"minecraft:tripwire_hook",
"minecraft:tall_grass",
"minecraft:large_fern",
"minecraft:lily_pad",
"minecraft:dead_bush",
"minecraft:fern",
"minecraft:grass",
"minecraft:seagrass",
"minecraft:tall_seagrass",
"minecraft:cactus",
"minecraft:kelp"
] ]
} }