anchorCrafting = get(CAT_ANCHORS, "craftable", true, "change to {t}=false to disable World Anchor crafting, they will still be available via Creative");
anchorCraftingPersonal = get(CAT_ANCHORS, "personal.craftable", true, "change to {t}=false to disable Personal Anchor crafting, they will still be available via Creative");
printAnchors = get(CAT_ANCHORS, "print.locations", false, "change to {t}=true to print Anchor locations to the log on startup");
printAnchorDebug = get(CAT_ANCHORS, "print.debug", false, "change to '{t}=true' to log debug info for Anchors");
Property fuelProp = get(CAT_ANCHORS, "world.fuel", "minecraft:ender_pearl=12", "the number of hours that an item will power a World Anchor or World Anchor Cart\n"
+ "this is an approximation only, actual duration is affected by number of chunks loaded and tick rate\n"
+ "if the list is empty, World Anchors will not require fuel, default = 12\n"
+ "Entry Format: <modid>:<itemname>#<metadata>=<value>\n"
+ "Example: personal.fuel= minecraft:ender_pearl=12, minecraft:coal#0=4");
anchorFuelWorldString = fuelProp.getString();
fuelProp = get(CAT_ANCHORS, "personal.fuel", "minecraft:ender_pearl=12", "the number of hours that an item will power a Personal Anchor or Personal Anchor Cart\n"
+ "this is an approximation only, actual duration is affected by number of chunks loaded and tick rate\n"
+ "if the list is empty, World Anchors will not require fuel, default = 12\n"
+ "Entry Format: <modid>:<itemname>#<metadata>=<value>\n"
+ "Example: personal.fuel= minecraft:ender_pearl=12, minecraft:coal#0=4");
anchorFuelPersonalString = fuelProp.getString();
anchorsCanInteractWithPipes = get(CAT_ANCHORS, "interact.with.pipes", true, "change to {t}=false to prevent pipes, tubes, or various other things from interacting with Anchors");
}